/*
Theme Name: ArnamentTheme
Theme URI: https://enothost.com.ua/ArnamentTheme
Author: Enothost
Author URI: https://enothost.com.ua
Description: Special Theme for site Arnament
Version: 1.0
*/

/*Basic styles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
	overflow-x: hidden;
}

html {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 36px;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin-bottom: 20px;
}

h2 {
	font-size: 30px;
	font-weight: bold;
	color: #444;
	margin-bottom: 15px;
}

h3 {
	font-size: 24px;
	font-weight: bold;
	color: #555;
	margin-bottom: 10px;
}

h4, h5, h6 {
	font-size: 18px;
	font-weight: normal;
	color: #666;
	margin-bottom: 8px;
}

p {
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	margin-bottom: 15px;
}

.field-content {
	max-width: 1500px;
	width: 100%;
}

a {
	color: #007bff;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

a:hover {
	color: #0056b3;
	text-decoration: underline;
}

.show-more-button {
    color: #0073aa;
    cursor: pointer;
}

.show-more-button:hover {
    text-decoration: underline;
}

/*End of Basic Styles*/

/*Header*/
.main-header {
    width: 100%; 
    background: #fbf9f7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0; 
	position: sticky;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}


.header-content {
    display: flex;
    width: 100%;
    align-items: center;
	justify-content: space-between;
}

.logo img {
    max-height: 80px;
	max-width: 80px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.main-menu ul li {
    margin: 0;
}

.main-menu ul li a {
    text-decoration: none;
    color: #0b2047;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

.main-menu ul li a:hover {
    color: #a5e300;
	text-decoration: underline;
}


.header-button .btn {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
	align-content: right;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 2px 0;
    transition: 0.3s;
}
/*End of Header*/

/*Footer*/
.main-footer {
    background: #fbf9f7;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-footer {
    width: 100%;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-email {
    font-size: 16px;
	color: #0b2047;
}

.footer-info {
    text-align: center;
    font-size: 18px;
}

.footer-copyright p {
    font-size: 14px;
	color: #0b2047;
}

.protect {
    text-align: center;
}

.image-protect {
    max-height: 100px;
    max-width: 100px;
    margin: 0 auto;
}

/*End of Footer*/

/*FAQ*/

.question {
	background-color: #ccc;
	color: #fff;
	padding: 15px 50px;
	cursor: pointer;
	border-radius: 12px 12px 0 0;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.question + .answer {
	margin-top: -25px;
}

.arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
	transform: rotate(270deg);
}

.question.active .arrow {
	transform: rotate(180deg);
}

.answer {
	display: none;
	background-color: white;
	padding: 30px 50px;
	border-radius: 0 0 12px 12px;
	margin-bottom: 20px;
}

/* FAQ of end */

/* Home page */
.first-section {
    display: flex;
    flex-direction: column; /* Элементы теперь идут в колонку */
    align-items: center; /* Центрируем содержимое */
    padding: 50px;
}

.first-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #555;
    margin-bottom: 20px; /* Отступ от заголовка до блока */
    max-width: 1200px;
    padding: 0 20px;
}


.block1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
	background-color: rgb(11, 32, 71, 0.5);
	border-radius: 18px;
	padding: 20px;
}

.inner-block1 {
    max-width: 50%;
}
span {
	text-align: left;
	font-size: 36px;
	font-weight: bold;
	color: #333;
	text-align: center;
	margin-bottom: 20px;
}

.image-block1 img {
    width: 350px;
	height: auto;
}

.second-section {
  background-color: #f0f0f0; /* Пример фона */
  padding: 50px 0;
  text-align: center;
}

.block2 {
  max-width: 1200px; /* Увеличим для большего пространства */
  margin: 0 auto;
  padding: 20px;
}

.content-wrapper2 {
  display: flex; /* Используем Flexbox */
  align-items: center; /* Выравниваем элементы по верхнему краю */
flex-direction: row;
}

.content-wrapper2 img {
  max-width: 40%;
  height: auto;
  margin-right: 20px;
border-radius: 18px;
}

.text-content-block2 {
  flex-grow: 1;
  text-align: left;
	padding: 0 20px;
}

}
.third-section {
  background-color: #fff; /* Белый фон */
  padding: 50px 0;
  text-align: center;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.text-content-block3 {
  background-color: rgb(11, 32, 71, 0.5); /* Полупрозрачный зеленый фон */
  padding: 50px;
  border-radius: 10px; /* Скругленные углы */
  text-align: left;
}
.text-content-block3 h2{
	text-align: center;
}

.fourth-section {
  background-color: #f0f0f0;
  padding: 50px 0;
  text-align: center;
}

.block4 {
  max-width: 1200px; /* Увеличим для большего пространства */
  margin: 0 auto;
  padding: 20px;
}

.content-wrapper4 {
  display: flex; /* Используем Flexbox */
  align-items: center; /* Выравниваем элементы по верхнему краю */
	flex-direction: row-reverse;
}

.content-wrapper4 img {
  max-width: 40%;
  height: auto;
  margin-right: 20px;
border-radius: 18px;
}

.text-content-block4 {
  flex-grow: 1;
  text-align: right;
	padding: 0 20px;
}
.text-content-block4 li {
	margin: 10px 0;
}

.fifth-section {
  background-color: #fff; /* Белый фон */
  padding: 50px 0;
  text-align: center;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.text-content-block5 {
  background-color: rgb(11, 32, 71, 0.5); /* Полупрозрачный зеленый фон */
  padding: 50px;
  border-radius: 10px; /* Скругленные углы */
  text-align: left;
}
.text-content-block5 h2{
	text-align: center;
}

.sixth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
	padding: 30px;
}
.block6 {
	width:100%;
	max-width: 1200px;
	text-align: center;
}
.seventh-section {
    padding: 50px;
    text-align: center;
}

.block7 {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
	margin-top: 20px;
}

.advantages div {
    background-color: rgb(11, 32, 71, 0.5);
    color: #000;
    padding: 40px;
    border-radius: 10px;
    flex: 1 0 calc(33.33% - 15px);
    text-align: center;
    min-width: 200px;
    margin-bottom: 10px; /* Отступ между рядами */
}
.cons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
	margin-top: 20px;
}

.cons div {
	background-color: rgb(11, 32, 71, 0.5);
    color: #000;
    padding: 40px;
    border-radius: 10px;
    flex: 1 0 calc(33.33% - 15px);
    text-align: center;
    min-width: 200px;
    margin-bottom: 10px; /* Отступ между рядами */
}
.eighth-section {
  background-color: #f0f0f0; /* Пример фона */
  padding: 50px 0;
  text-align: center;
}

.block8 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.inner-block8 {
  display: flex;
  align-items: flex-start; /* Выравнивание по верхнему краю */
background-color: rgb(11, 32, 71, 0.5);
	border-radius: 18px;
}

.image-block8 {
  flex: 1; /* Изображение занимает 1/2 ширины */
  padding-right: 20px; /* Отступ справа от изображения */

}

.image-block8 img {
  max-width: 400px;
  height: auto;
  display: block; /* Убираем лишнее пространство под изображением */
align-items: center;
}

.text-block8 {
  flex: 1; /* Текст занимает 1/2 ширины */
  text-align: left;
}

.reviews-slider {
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.slider-container {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  flex: 0 0 calc(33.33% - 20px); /* Три слайда в ряд */
  padding: 20px;
  box-sizing: border-box;
  margin: 0 10px; /* Отступы между слайдами */
}

.review-card {
  background-color: rgb(11, 32, 71, 0.5);
  padding: 30px;
  border-radius: 10px;
}

.author {
  margin-top: 20px;
  font-weight: bold;
color: #444;
}

.stars {
  margin-top: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}
/*End of Home page*/

/* About Us page */

.about-section {
  background-color: #f0f0f0; /* Пример фона */
  padding: 50px 0;
  text-align: center;
}

.about-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.inner-about-block {
  display: flex;
  align-items: center; /* Выравнивание по верхнему краю */
background-color: rgb(11, 32, 71, 0.5);
	border-radius: 18px;
	padding: 20px 20px 20px 0;
}

.about-image {
  flex: 1; /* Изображение занимает 1/2 ширины */
  padding: 0 20px; /* Отступ справа от изображения */
align-self: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  display: block; /* Убираем лишнее пространство под изображением */
border-radius: 12px;
}

.about-text {
  flex: 1; /* Текст занимает 1/2 ширины */
  text-align: left;
}

.about-text h1 {
  flex: 1; /* Текст занимает 1/2 ширины */
  text-align: left;
}

/* End of About Us page */

/*Contact Page*/
.contact-section {
  background-color: #f0f0f0; /* Пример фона */
  padding: 50px 0;
  text-align: center;
}

.contact-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.inner-contact-block {
  display: flex;
  align-items: flex-start; /* Выравнивание по верхнему краю */
background-color: rgb(11, 32, 71, 0.5);
	border-radius: 18px;
	padding: 20px 20px 20px 0;
}

.contact-image {
  flex: 1; /* Изображение занимает 1/2 ширины */
  padding: 0 20px; /* Отступ справа от изображения */
align-self: center;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  display: block; /* Убираем лишнее пространство под изображением */
border-radius: 12px;
}

.contact-text {
  flex: 1; /* Текст занимает 1/2 ширины */
  text-align: left;
}

.contact-text h1 {
  flex: 1; /* Текст занимает 1/2 ширины */
  text-align: left;
}
/*End ofContact Page*/

/*Blog page*/

.blog-section {
    padding: 50px 0;
    text-align: center;
    background-color: #e7e7e7;
    color: #14110e;
}

.blog-page {
    max-width: 1200px;
	width: 100%;
    margin: 0 auto;
}

.blog {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.blog-card-block {
background-color: rgb(11, 32, 71, 0.5);
    border-radius: 10px;
    padding: 5px 5px 15px 5px;
    text-align: center;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-title {
    margin-top: 10px;
}

.blog-title a {
    color: #000;
    text-decoration: none;
	font-size: 20px;
}

.blog-title a:hover {
    text-decoration: underline;
}

/*End of Blog page*/

/*FAQ Page*/

.faq-section {
  background-color: #f0f0f0;
  padding: 50px 0;
  text-align: center;
}

.faq-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.inner-faq-block {
  display: flex;
  flex-direction: column; /* Изменяем направление на колонку */
  background-color: rgb(11, 32, 71, 0.5);
  border-radius: 18px;
  padding: 20px; /* Убираем правый отступ */
}

.faq-item {
  margin-bottom: 20px; /* Отступ между элементами FAQ */
}

.question {
background-color: rgba(127, 163, 127, 0.0);
  padding: 15px 50px;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
	border-bottom: 1px solid black;
}

.arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  transform: rotate(270deg);
}

.question.active .arrow {
  transform: rotate(180deg);
}

.answer {
  display: none;
background-color: rgb(127, 163, 127, 0.0);
  padding: 30px 50px;
border-bottom: 1px solid black;
}
/*End of FAQ Page*/

/*Sigle*/
 .article-header {
        text-align: center;
        margin: 50px 0;
	 padding: 0 100px;
    }

    .articles-category {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: bold;
        color: #fff;
        background: #333;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .articles-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .article-image {
        text-align: center;
        margin: 20px 0;
    }

    .article-thumbnail {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .article-info {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
/*End of Single*/
/*Adaptation*/
@media (max-width: 1023px) {
    .header-container,
    .block1,
    .block2,
    .content-wrapper,
    .block4,
    .text-content-block5,
    .block6,
    .block7,
    .block8,
    .slider-container,
    .about-block,
    .contact-block,
    .blog-page,
    .faq-block {
        padding: 10px; /* Уменьшаем отступы */
    }

    .first-section,
    .second-section,
    .third-section,
    .fourth-section,
    .fifth-section,
    .sixth-section,
    .seventh-section,
    .eighth-section,
    .reviews-slider,
    .about-section,
    .contact-section,
    .blog-section,
    .faq-section {
        padding: 30px 0; /* Уменьшаем отступы */
    }

    .inner-block1,
    .content-wrapper2,
    .content-wrapper4,
    .inner-block8,
    .inner-about-block,
    .inner-contact-block {
        flex-direction: column; /* Перестраиваем в колонку */
        align-items: stretch; /* Растягиваем элементы */
    }

    .image-block1 img,
    .content-wrapper2 img,
    .content-wrapper4 img,
    .image-block8 img,
    .about-image img,
    .contact-image img {
        max-width: 100%; /* Изображения на всю ширину */
        margin: 0 0 20px 0; /* Отступ снизу */
    }

    .inner-block1,
    .text-content-block2,
    .text-content-block4,
    .text-block8,
    .about-text,
    .contact-text {
        max-width: 100%; /* Текст на всю ширину */
    }

    .advantages,
    .cons {
        justify-content: center; /* Центрируем элементы */
    }

    .slide {
        flex: 0 0 calc(50% - 20px); /* Два слайда в ряд */
    }

.article-header {
        padding: 0 50px;
        margin: 40px 0;
    }

    .articles-content {
        max-width: 90%;
    }

    .article-info {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .header-container,
    .block2,
    .content-wrapper,
    .block4,
    .text-content-block5,
    .block6,
    .block7,
    .block8,
    .slider-container,
    .about-block,
    .contact-block,
    .blog-page,
    .faq-block {
        padding: 10px; /* Уменьшаем отступы */
    }

    .second-section,
    .third-section,
    .fourth-section,
    .fifth-section,
    .sixth-section,
    .seventh-section,
    .eighth-section,
    .reviews-slider,
    .about-section,
    .contact-section,
    .blog-section,
    .faq-section {
        padding: 20px 0; /* Уменьшаем отступы */
    }

	.first-section {
		padding: 20px;
	}
	.block1 {
		flex-direction: column;
		text-align: center;
}
	.text-content-block2 {
	text-align: center;
	}
	
	.inner-block1,
    .content-wrapper2,
    .content-wrapper4,
    .inner-block8,
    .inner-about-block,
    .inner-contact-block {
        flex-direction: column;
        align-items: stretch;
    }

    .image-block1 img,
    .content-wrapper2 img,
    .content-wrapper4 img,
    .image-block8 img,
    .about-image img,
    .contact-image img {
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .inner-block1,
    .text-content-block2,
    .text-content-block4,
    .text-block8,
    .about-text,
    .contact-text {
        max-width: 100%;
    }

    .advantages,
    .cons {
        flex-direction: column; /* Элементы в колонку */
        align-items: center; /* Центрируем элементы */
		margin: 0 auto;
		width: 80%;
    }

    .advantages div,
    .cons div {
        width: 80%; /* Элементы на 80% ширины */
    }

    .slide {
        flex: 0 0 100%; /* Один слайд в ряд */
    }

    .main-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	background-color: rgb(127,163,127, 1);
	padding: 10px 0;
}

.main-menu.open {
	display: flex;
}

    .main-menu ul {
        flex-direction: column;
    }

    .hamburger-menu {
        display: flex; /* Показываем гамбургер-меню */
    }

    .header-content {
        justify-content: space-between;
    }

    .header-button {
        display: none; /* Скрываем кнопку */
    }
.article-header {
        padding: 0 20px;
        margin: 30px 0;
    }

    .articles-category {
        font-size: 12px;
        padding: 4px 8px;
    }

    h1 {
        font-size: 28px;
    }

    .articles-content {
        max-width: 95%;
    }

    .article-info {
        font-size: 16px;
        line-height: 1.5;
    }

    .article-thumbnail {
        border-radius: 5px;
    }
	.text-block8 {
		padding: 0 15px;
		text-align: center;
}
	.text-content-block5 {
		padding: 15px;
		text-align: center;
	}
	.tetx-content-block5 ol {
		text-align: center;
	}
}
.dis {
  width: 800px;
  margin: 0 auto; /* центрирование по горизонтали */
  padding: 20px;
  box-sizing: border-box;
}

.dis h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

.dis p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .dis {
    width: 100%; /* Full width for smaller screens */
    padding: 15px; /* Slightly reduced padding */
  }

  .dis h2 {
    font-size: 14px; /* Slightly smaller heading */
    margin-bottom: 8px; /* Adjusted margin */
  }

  .dis p {
    font-size: 11px; /* Slightly smaller text */
    line-height: 1.4; /* Tighter line height for compactness */
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 480px) {
  .dis {
    width: 100%;
    padding: 10px; /* Further reduced padding */
  }

  .dis h2 {
    font-size: 12px; /* Smaller heading for mobile */
    margin-bottom: 6px;
  }

  .dis p {
    font-size: 10px; /* Smaller text for mobile */
    line-height: 1.3; /* Even tighter line height */
    margin-bottom: 6px;
  }
}

