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

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

body {
  font-family: 'font-txt', Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}


  h1,h2,h3,h4,h5,h6 {
	 font-family: 'font-h', Arial, sans-serif;
   
    }

header {
    background-color: #eafaff;
    border-bottom: 3px solid #cccccc2b;
    position: relative;
    width: 100%;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 60px;
  box-shadow: #6b9cab45 2px 2px 9px 1px;
}

header nav ul li {
 margin-top: 8px;
 margin-bottom: 8px;
 padding: 7px;
 border-radius: 10px;
 cursor: pointer;
}

header nav ul li:hover {
  text-decoration: revert;
  background: #d8efe9;
}


header nav ul li a {
	text-decoration: none;
	font-size: 20px;
	color: #1b6581;
	}


main {
  padding: 5px;
  background: #f0f0f0;
}

main section {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 36px;
  line-height: 52px;
  color: #358f9a;
  padding-bottom: 10px;
  padding-top: 20px;
  font-weight: 600;
  text-align: center;
  position: relative;
}

 h2 {
  font-size: 30px;
  color: #358f9a;
  padding-bottom: 10px;
  padding-top: 20px;
  font-weight: 600;
  text-align: left;
  position: relative;
}


 h3 {
  font-size: 25px;
  color: #358f9a;
  padding-bottom: 10px;
  padding-top: 20px;
  font-weight: 600;
  text-align: left;
  position: relative;
}


main section p {
  font-size: 23px;
  line-height: 1.5;
}

footer {
       background-color: #ffffff;
       border-top: 5px solid #ffffff;
       padding: 10px;
       font-size: 18px;
       line-height: 1.4;
       text-align: center;
       font-weight: bold;
       color: #000000;
       box-shadow: inset #00000021 0px 5px 8px;
}

footer a {
    padding: 10px;
    font-size: 20px;
    line-height: 1.5;
    color: #114352;
}


.blockcontainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
}

.blockimage-link {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%; 
}

.blockimage-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(93%);
    transition: filter 0.5s ease;
    border-radius: 20px;
}

.blockimage-link:hover img {
    filter: brightness(100%);
}

.blockoverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.blocktext {
    z-index: 1;
    bottom: 0px;
    pointer-events: none;
    position: absolute;
    background-color: #c8f2ffe6;
    width: 100%;
    color: #358f9a;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 24px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.nayti {
    position: absolute;
    width: 25px;
    transition: transform 0.3s ease-in-out;
    top: 20px;
    right: 50px;
}

.nayti:hover {
    transform: scale(1.3); 
}

.logo {
    position: absolute;
    width: 200px;
    transition: transform 0.3s ease-in-out;
    top: 20px;
    left: 60px;
}

.logo:hover {
    transform: scale(1.1); 
}


.image-container {
    position: relative;
    display: inline-block;
	width: 100%; 
}

.styled-image {
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.2); 
    filter: brightness(93%); 
    transition: all 0.3s ease-in-out;
}

.styled-image:hover {
    filter: brightness(100%);
}

.vvodtxt {
   font-size: 21px;
   line-height: 1.5;
   margin-top: 15px;
   padding:30px;
   font-weight: bold;
   color: #709598;
   background: #ffffff;
   border-radius: 10px;
}





.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #73b0ad; 
    color: white;
    font-size: 24px;
    text-decoration: none;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	z-index:9999;
}

.back-to-top:hover {
    background-color: #add8e6; 
}
	  .text-block {
    background-color: #f9f9f9;
    border: 2px solid #73b0ad;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: #00000030 2px 3px 3px;
}

.copy-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: linear-gradient(to right, #62b2ae 10%, #55c5c0 100%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-family: 'font-txt', Arial, sans-serif;
}

.copy-btn:hover {
   background: linear-gradient(to right, #70dcd6 10%, #7ce5e1 100%);
    color: #191818;
}

.verh {
    display: flex;
    justify-content: space-between;
}


.verh a{
   text-decoration: none;
   color: #618b89;
}

.breadcrumbs {
    padding-left: 3%;
    padding-bottom: 20px;
}

.vnim {
    padding-right: 3%;
    padding-bottom: 20px;
}

.vm {
 width: 17px;
    top: 2px;
    position: relative;
}

.img-image
{
 width: 17px;
    top: 2px;
    position: relative;
}


.opisanie {
	font-size: 18px;
	line-height: 1.4;
	padding: 20px;
	margin-top: -5px;
	color: #646e70;
	background: #e8e8e8;
}


.img-image {
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}


.save-img {
    background: linear-gradient(to right, #62b2ae 20%, #55c5c0 80%);
    width: 100%;
    display: block;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    margin-top: -20px;
    text-decoration: none;
    color: #e8e8e8;
    font-weight: bold;
    font-size: 22px;
	transition: all 0.5s ease-in-out;
}

.save-img:hover{
background: linear-gradient(to right, #4cbeb8 35%, #62d2cd 80%);
color: #fff;
}


.nav-block {
	margin-top: 40px;
    font-size: 20px;
    display: flex;
    background: #e9e9e9;
    color: #5f5f5f;
    transition: all 0.3s ease-in-out;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: baseline;
}

.nav-block a {
    text-decoration: none;
    background: #dedede;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}



.nav-block p {
    font-size: 20px;
    line-height: 1.5;
}



.nav-block-dalee {
    margin-top: 40px;
    font-size: 25px;
    display: flex;
    transition: all 0.3s ease-in-out;
    justify-content: space-around;
}



.nav-block-dalee a {
    text-decoration: none;
    background: linear-gradient(to right, #66c4bf 10%, #2eb6b0 100%);
    color: #ffffff;
    font-weight: bolder;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}


.nav-block-dalee p {
    font-size: 20px;
    line-height: 1.5;
}


        .pagesnav {
            display: flex;
            justify-content: center;
            padding: 20px;
        }

        .pageblock {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pageblock a {
            display: inline-block;
            padding: 10px 20px;
            text-decoration: none;
            color: #fff;
            background-color: #ADD8E6; 
            border-radius: 5px;
            font-size: 14px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .pageblock a:hover {
            background-color: #87CEFA; 
        }

        .pageblock a:active {
            background-color: #4682B4;
        }

        .pageblock a:focus {
            outline: 2px solid #87CEFA;
        }

@media screen and (max-width: 1025px) {

header nav ul {
    margin: 0px 10% 0px 0px;
    justify-content: right;
}
.nayti {
    width: 35px;
    top: 15px;
    right: 20px;
}

.logo {
    left: 20px;
	top: 19px;
}

    #footer a {
        line-height: 35px;
        font-weight: 900;
        font-size: 26px
    }

    #content {
        height: 500px
    }

main {
    padding: 2%;
}
main section p {
    font-size: 26px;
    line-height: 1.6;
}

 }
 
 @media (max-width: 768px) {
	 
    header nav ul li {
        margin-right: 1%;
        margin-top: 6px;
        margin-left: 1%;
        margin-bottom: 6px;
        background: #ffffff;
        padding: 6px;
    }
   
   header nav ul li a {
    text-decoration: none;
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

header nav ul {
        position: relative;
        top: 50px;
        margin: 0%;
		box-shadow: none;
        justify-content: center;
    }

h1 {
   font-size: 27px;
    color: #358f9a;
    padding-bottom: 10px;
    padding-top: 35px;
    font-weight: 600;
    text-align: left;
    position: relative;
	line-height: 1.5;
    margin: 20px 4% 20px 4%;
    }
	
	h2 {
   font-size: 26px;
    color: #499098;
    padding-bottom: 10px;
    padding-top: 35px;
    font-weight: 600;
    text-align: left;
    position: relative;
	line-height: 1.5;
    margin: 20px 3% 20px 3%;
    }
	
		h3 {
   font-size: 24px;
    color: #499098;
    padding-bottom: 10px;
    padding-top: 35px;
    font-weight: 600;
    text-align: left;
    position: relative;
	line-height: 1.5;
    margin: 20px 3% 20px 3%;
    }

    .logo {
        width: 210px;
        top: -35px;
        left: 5%
    }

.nayti {
width: 30px;
top: -40px;
right: 5%;
}

.vvodtxt {
    font-size: 20px;
        line-height: 1.5;
}

.styled-image {
    width: 92%;
    margin: auto;
    display: block;
   
}

    main section p {
        font-size: 21px;
        line-height: 1.4;
        margin: 20px 3% 20px 3%;
    }
	
    .blockcontainer {
        grid-template-columns: 1fr;
    }
	
	
    .nav-block {
        margin-top: 30px;
        font-size: 22px;
        display: flex;
        background: #f0f0f0;
        color: #5f5f5f;
        transition: all 0.3s ease-in-out;
        justify-content: space-around;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: column-reverse;
        align-content: center;
    }
		
	header nav {
    height: 40px;
    padding-top: 10px;
}

.verh {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}
	.vnim {
    padding-left: 3%; 
}
	.breadcrumbs {
    padding-left: 3%;
    padding-right: 3%;
}
	
	
}



@media (max-width: 345px) {
	
	    header nav ul li {
        margin-right: 0%;
        padding: 5px;
    }
	
	    h1 {
        font-size: 18px;
        line-height: 1.4;
        margin: 20px 3% 20px 3%;
    }
	
	.vvodtxt {
        font-size: 18px;
        line-height: 1.4;
    }
	
}