@font-face {
    font-family: normal;
    src: url(normal.ttf) format('truetype');
    font-weight: 400;
    font-display: fallback;
    font-style: normal
}

@font-face {
    font-family: GolosText;
    src: url(normal-Bold.ttf) format('truetype');
    font-weight: 400;
    font-display: fallback;
    font-style: normal
}

:root {
    --primary-color: #3a6ea5;
    --secondary-color: #4a90e2;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-bg: #f5f7fa;
    --dark-bg: #2c3e50;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0,0,0,0.1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'normal',Tahoma,Geneva,Verdana,sans-serif
}

button {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
  user-select: none;       
}

a {
  -webkit-tap-highlight-color: transparent; 
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;    
  user-select: none;         
}


body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: #1d5f74;
    transition: var(--transition)
}

a:hover {
    color: var(--accent-color)
}

header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 5px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    width: 50px
}

.logo svg {
    margin-right: 10px;
    fill: var(--primary-color)
}

.top-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 21px
}

.top-menu a {
    padding: 8px 15px;
    background: aliceblue;
    border-radius: 20px;
	box-shadow: 0 2px 1px rgba(0,0,0,0.1);
    transition: var(--transition)
}

.top-menu a:hover {
    box-shadow: none;
    background-color: var(--light-bg)
}

.search-btn {
    background-color: #3ab2e5;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
	box-shadow: 0 2px 1px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px
}

.search-btn:hover {
	box-shadow: none;
	color: white;
    background-color: var(--secondary-color)
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color)
}

.sidebar {
    position: fixed;
    margin-bottom: 100px;
    left: 0;
    width: 220px;
    height: calc(100vh - 70px);
    background-color: white;
    box-shadow: var(--shadow);
    padding: 10px;
    overflow-y: auto;
    transition: var(--transition)
}

.sidebar h3 {
    color: #000000;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #eee
}

.close-menu {
    display: none
}

.side-menu {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px
}

.side-menu a {
    display: block;
    font-size: 19px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    border-radius: 40px;
    transition: var(--transition)
}

.side-menu a:hover {
    background-color: var(--light-bg);
    transform: translateX(1px);
    box-shadow: 0 2px 1px rgba(0,0,0,0.1)
}

#bread-crumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 17px;
    flex-wrap: wrap;
}

#bread-crumbs li {
    display: flex;
    align-items: center;
}

#bread-crumbs a {
    color: #6489b0e8;
    text-decoration: none;
    transition: color 0.2s;
}

#bread-crumbs a:hover {
    color: #de6964b3;
}

#bread-crumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: #999;
}

.main-content {
    margin-left: 250px;
    margin-top: 70px;
    padding: 30px
}

.content-header {
    margin-bottom: 30px
}

.content-header img {
    width: 100%;
    margin-top: 30px;
    border-radius: 30px
}

.content-header h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px
}

h2 {
    color: #299abe;
    font-size: 2.0rem;
    margin-bottom: 25px;
    margin-top: 25px;
	margin-left: 1%;
    line-height: 1.4;
    font-family: GolosText;
}

.content-header p {
    font-size: 20px;
    margin-right: 5%;
    padding: 10px;
}

.content-header h1 {
    color: #299abe;
    font-size: 2.0rem;
    margin-bottom: 10px;
    margin-top: 25px;
	line-height: 1.4;
    font-family: GolosText
}

.nomerstr {
    font-size: 20px;
	margin-top: 10px;
}

.quick-links {
margin-top: 10px;
margin-bottom: 35px;
}

.quick-links a {
    height: 40px;
    color: #333;
    font-size: 18px;
    line-height: 20px;
	margin-top: 10px;
    padding: 10px 20px;
    background: #ffffff;
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    display: inline-block;
    border: 1px solid #3d8be24d;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.quick-links a:hover {
	box-shadow: none;
	background: #bedffc6e;
}

.section-nav {
    background: #dde7ef;
    padding-top: 10px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 20px;
    width: fit-content;
	margin-top: 30px;
}

.section-nav > a {
    height: 40px;
    font-size: 18px;
    line-height: 20px;
    margin-left: 5px;
    margin-top: 10px;
    padding: 10px 20px;
    background: #52b5df;
    color: #fff;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
    display: inline-block;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.section-nav > a:nth-child(n+3) {
    display: none;
    order: 2
}

.section-nav > a:hover {
    color: #fff;
    background: #3a95bb;
}

.nav-tog {
    display: none
}

.show-all {
    padding: 7px 15px;
    background: #6a8aa7;
    color: #fff;
    border-radius: 20px;
    display: none;
    cursor: pointer;
    margin-left: 2px;
	margin-top: 10px;
    transition: all 0.8s ease;
}

.show-all:hover {
    background: #4d7598;
    color: #fff;
}

.section-nav > a:nth-child(2) ~ .show-all {
    display: inline-block
}

.nav-tog:checked ~ a {
    display: inline-block !important;
    order: 1
}

.nav-tog:checked ~ .show-all {
    display: none !important
}



.content-bottom h2 {
    color: #299abe;
    font-size: 2.0rem;
    margin-bottom: 30px;
    font-family: GolosText
}

.content-bottom {
    margin-bottom: 20px;
    margin-top: 50px;
    overflow: hidden
}

.content-bottom p {
    font-size: 20px;
    padding: 10px;
}

.content-bottom img {
    float: right;
    width: 40%;
    margin: 0 0 20px 50px;
    border-radius: 30px;
    shape-outside: margin-box
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow)
}

.text-blocks {
    margin-top: 50px
}

.text-block {
    background-color: white;
    border-radius: 35px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-bottom: 25px;
    margin-right: 2%;
    margin-left: 1%;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition)
}

.text-block:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1)
}

.text-block p {
    padding-left: 10px;
    padding-right: 33px;
    font-size: 19px
}

.copy-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    background-color: #3ab2e5;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition)
}

.copy-btn:hover {
    background-color: var(--accent-color)
}

.copy-notification {
    position: fixed;
    bottom: 50%;
    right: 50%;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1100;
    pointer-events: none
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0)
}

.navig-niz {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.navig-niz p {
    margin-bottom: 5px;
    border: 1px solid #3ab2e5;
    border-radius: 20px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 23px;
}


.navig-niz a {
    background: #3ab2e5;
    border-radius: 10px;
    color: #fff !important;
    padding: 10px;
    margin-left: 25px;
    margin-right: 22px;
    font-size: 20px;
    line-height: 35px;
}

.navig-niz a:hover {
    background: #2b97c5;
}

.nomer-str{
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 30px;
margin-bottom: 30px;
}

.nomer-str a {
    width: 50px;
    display: flex;
    padding-left: 5px;
    padding-right: 5px;
    background: #ffffff;
    border-radius: 10px;
    font-size: 25px;
    margin-left: 5px;
	border: 1px solid #1d5f7424;
    margin-right: 5px;
    justify-content: center;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1);
}


.nomer-str a:hover {
    box-shadow: none;
}

footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 40px 30px;
    margin-left: 220px
	
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 20px
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ddd
}

.footer-section a {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    width: fit-content
}

.footer-section a:hover {
    color: white
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1)
}

.footer-heading {
font-size: 20px;
    margin-bottom: 10px;
}

.footer-section p{
color: #fff;
}

#scrollTopBtn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background: #e5e5e5;
    font-size: 22px;
    color: #525252;
    outline: none;
    cursor: pointer;
    border: 2px solid #95989938;
    box-shadow: 0 2px 1px rgb(0 0 0 / 13%);
    border-radius: 50%;
    transition: opacity 0.3s ease;
    z-index: 100;
}

#scrollTopBtn:hover {
  background-color: #d5d5d5;
}

.navig-niz a {
    padding: 10px;
    margin-left: 15px;
    margin-right: 15px;
    font-size: 19px;
}


@media (min-width: 769px) {
    .sidebar::-webkit-scrollbar {
        width:0;
        background: transparent;
        transition: all 0.3s ease
    }

    .sidebar:hover::-webkit-scrollbar {
        width: 5px
    }

    .sidebar::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 3px
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: var(--primary-color);
        border-radius: 3px
    }

    .sidebar::-webkit-scrollbar-thumb:hover {
        background-color: var(--secondary-color)
    }

    .sidebar {
        scrollbar-width: none;
        transition: scrollbar-width 0.3s ease
    }

    .sidebar:hover {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0,0,0,0.05)
    }
}

@media (max-width: 768px) {
    .sidebar::-webkit-scrollbar {
        width:3px
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: var(--primary-color)
    }

    .sidebar {
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0,0,0,0.05)
    }
	
	.text-block {
    margin-right: 0%;
    margin-left: 0%;
}

.text-block p {
    padding-left: 0px;
    padding-right: 10px;
    font-size: 18px;
}	


.nomer-str a {
    font-size: 30px;
    margin-top: 10px;
}

.copy-btn {
    top: -6px;
    right: -6px;
    width: 40px;
    height: 40px;
}

.content-bottom img {
    width: 100%;
}

	
}

@media (max-width: 768px) {
    header {
        padding:10px 15px
    }

    .top-menu {
        display: none
    }

    .mobile-toggle {
        display: block;
        margin-right: 15px
    }

    .sidebar {
        transform: translateX(-100%);
        top: 80px;
        height: calc(100vh - 60px);
        z-index: 999
    }

    .sidebar.active {
        transform: translateX(0)
    }

    .main-content {
        margin-left: 0;
        margin-top: 80px;
        padding: 20px
    }

    .text-blocks {
        display: flex;
        flex-direction: column
    }

    footer {
		z-index: 101;
        position: absolute;
        margin-left: 0
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 1.5rem;
        cursor: pointer
    }

    .footer-content {
        flex-direction: column
    }
}
