/*
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: #000;
    color: #fff;
	overflow-x: hidden;
}

html {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 36px;
	font-weight: bold;
	color: #ccc;
	margin-bottom: 20px;
}

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

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

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

p {
	font-size: 16px;
	line-height: 1.6;
	color: #ccc;
	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: #000;
    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: 90px;
	max-width: 90px;
}

.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: white;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
}

.main-menu ul li a:hover {
    color: #ccc;
}


.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: #fff;
    margin: 2px 0;
    transition: 0.3s;
}
/*End of Header*/

/*Footer*/
.main-footer {
    background: #000;
    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;
}

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

.footer-copyright {
    font-size: 14px;
}

.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-title {
  width: 100%;
  background-color: #030303;
  padding: 50px 20px 30px;
  text-align: right;
  color: #fff;
}

.first-title h1 {
  max-width: 900px;
  margin: 0 auto 20px;
}

.first-title p {
  max-width: 800px;
  margin: 0 auto;
  color: #ccc;
}

.first-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #030303;
}

.text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    margin-right: 20px;
}

.text-block h2 {
    margin-bottom: 20px;
}

.text-block span {
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 20px;
}

.image-block1 {
    width: 500px;
}

.image-block1 img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
}
.contact-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    font-size: 20px;
    color: #fff;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}
.contact-block .contact-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to top, transparent, #cccccc, transparent);;
}


.second-section {
    background-color: transparent;
}

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

.content-wrapper2 {
    display: flex;
    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: right;
    padding: 0 20px;
}

}
.third-section {
      background-color: #111 !important;
      padding: 50px 0;
      text-align: center;
    }

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

    .text-content-block3 {
      background-color: rgba(17, 17, 17, 0.5);
      padding: 50px;
      border-radius: 10px;
      text-align: right;
		align-items: center;
      color: #fff;
      display: flex;
      
      justify-content: space-between;
      box-sizing: border-box;
	  border: 1px #ccc solid;
    }

    .text-content {
      width: 50%;
    }

    .text-content h2 {
      text-align: right;
      font-size: 2em;
      margin-bottom: 20px;
      position: relative;
    }

    .company-name {
      position: absolute;
      top: -40px;
      right: -10px;
	  text-align: right;
      font-size: 45px;
     color: rgba(17, 17, 17, 1); /* Цвет текста */
     -webkit-text-stroke: 0.5px #fff; /* Толщина и цвет обводки */
	  z-index: -1;
    }

    .divider {
      border: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, #cccccc, transparent);
      margin: 20px 0;
    }

    .image-placeholder {
      width: 50%;
      border-radius: 10px;
      box-sizing: border-box;
    }

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

    @media (max-width: 768px) {
      .text-content-block3 {
        flex-direction: column;
      }
      .text-content {
        width: 100%;
      }
      .image-placeholder {
        width: 100%;
        height: 300px;
        margin-top: 20px;
      }
    }

.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; /* Выравниваем элементы по верхнему краю */
}

.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 {
      padding: 50px 0;
      text-align: center;
    }

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

.text-content-block5 {
      background-color: rgba(17, 17, 17, 0.5);
      padding: 50px;
      border-radius: 10px;
      text-align: right;
      color: #fff;
      flex: 1;
      min-width: 50%;
	  border: 1px #ccc solid;
    }

    .text-content-block5 h2 {
      text-align: right;
      font-size: 2em;
      margin-bottom: 50px;
      position: relative;
    }

.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;
}
.block7 h2 {
	text-align: right;
	font-size: 2em;
}
.block7 p {
	text-align: right;
}
.pros-and-cons-title {
	position: absolute;
    top: 0px;
    left: 110px;
    font-size: 75px;
    color: rgba(17, 17, 17, 1); /* Цвет текста */
    -webkit-text-stroke: 0.5px #7a7a7a; /* Толщина и цвет обводки */
	z-index: -1;
}
.advantages {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
	margin-top: 20px;
}

.advantages div {
    background-color: rgba(204, 204, 204, 1);
    color: #000;
    padding: 40px;
    border-radius: 10px;
    flex: 1 0 calc(50% - 15px);
    text-align: right;
    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: rgba(204, 204, 204, 1);
    color: #000;
    padding: 40px;
    border-radius: 10px;
    flex: 1 0 calc(33.33% - 15px);
    text-align: right;
    min-width: 200px;
    margin-bottom: 10px; /* Отступ между рядами */
}

.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;
  gap: 10px;
  
}


.slide {
  flex: 0 0 50%;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 10px; /* Отступы между слайдами */
}

.review-card {
  background-color: rgba(204, 204, 204, 1);
  padding: 30px;
  border-radius: 10px;
}
.review-card p {
  color: #000;
 text-align:right;
}
.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;
}
.title-heading {
  position: relative;
}
/*End of Home page*/

/*Blog page*/

.blog-section {
  width: 80%; /* Уменьшаем ширину секции */
  margin: 0 auto; /* Центрируем секцию */
	padding: 50px 50px 100px 50px;
}

.blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Интервал между карточками */
  justify-content: center; /* Центрируем карточки */
}

.blog-card-block {
  position: relative;
  width: calc(33.333% - 20px); /* 3 карточки в строке, вычитая интервал */
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.blog-image-wrapper {
  display: block;
  position: relative;
  text-decoration: none;
}

.blog-image {
  width: 100%;
  height: 200px; /* Уменьшаем высоту изображения */
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.blog-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 18px;
  text-align: center;
}

.blog-image-wrapper:hover .blog-title {
  opacity: 1;
}

/*End of Blog page*/

/*FAQ Page*/

.inner-faq-block {
  display: flex;
  flex-direction: column; /* Изменяем направление на колонку */
  background-color: rgb(127, 163, 127, 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;
  position: relative; /* Обязательно для псевдоэлемента */
}

.question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, #cccccc, transparent);
}

.question h3 {
	color: #fff;
}
.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: 767px) {
    .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; /* Скрываем кнопку */
    }
}
@media (max-width: 768px) {
  .blog-card-block {
    width: calc(50% - 20px); /* 2 карточки в строке на экранах меньше 768px */
  }

  .blog-image {
    height: 150px; /* Уменьшаем размер изображений для мобильных */
  }
}

@media (max-width: 480px) {
  .blog-card-block {
    width: 100%; /* 1 карточка в строке на экранах меньше 480px */
  }

  .blog-image {
    height: 120px; /* Уменьшаем размер изображений для маленьких экранов */
  }
}
/* Tablet: 1024px */
@media (max-width: 1024px) {
    .header-container {
        max-width: 960px;
        padding: 10px 15px;
    }

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

    .main-menu ul {
        gap: 15px;
    }

    .main-menu ul li a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .header-button .btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .first-section {
        padding: 40px 20px;
        flex-direction: column-reverse;
        align-items: center;
    }

    .text-block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .image-block1 {
        width: 100%;
        max-width: 400px;
    }

    .contact-block {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .contact-item {
        align-items: center;
        text-align: center;
    }

    .contact-divider {
        display: none;
    }

    .content-wrapper2 {
        flex-direction: column;
        align-items: center;
    }

    .content-wrapper2 img {
        max-width: 80%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .text-content-block2 {
        padding: 0;
        text-align: center;
    }

    .text-content-block3 {
        flex-direction: column;
        padding: 30px;
    }

    .text-content,
    .image-placeholder {
        width: 100%;
    }

    .image-placeholder {
        margin-top: 20px;
    }

    .content-wrapper4 {
        flex-direction: column;
    }

    .content-wrapper4 img {
        max-width: 80%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .text-content-block4 {
        padding: 0;
        text-align: center;
    }

    .advantages div,
    .cons div {
        flex: 1 0 calc(50% - 10px);
        padding: 30px;
    }

    .blog-card-block {
        width: calc(50% - 20px);
    }

    .blog-image {
        height: 180px;
    }

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

    .articles-content {
        max-width: 90%;
    }
    .company-name {
      top: -40px;
      left: -10px;
      font-size: 55px;
    }
.pros-and-cons-title {
    top: 20px;
    left: -10px;
    font-size: 55px;
}
}
/* Tablet: 768px */
@media (max-width: 768px) {
    .header-container {
        max-width: 720px;
        padding: 10px;
    }

    .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 10px 0;
    }

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

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

    .main-menu ul li a {
        padding: 10px;
        font-size: 16px;
        text-align: center;
		color: #000;
    }

    .hamburger-menu {
        display: flex;
    }

    .header-button {
        display: none;
    }

    .first-section {
        padding: 30px 15px;
    }

    .text-block h2 {
        font-size: 24px;
    }

    .image-block1 {
        max-width: 300px;
    }

    .contact-block {
        font-size: 16px;
    }

    .content-wrapper2 img {
        max-width: 100%;
    }

    .text-content-block3 {
        padding: 20px;
    }

    .text-content h2 {
        font-size: 1.8em;
    }

    .company-name {
        font-size: 50px;
        top: -40px;
        left: -10px;
    }

    .content-wrapper4 img {
        max-width: 100%;
    }

    .text-content-block4 {
        padding: 0 10px;
    }

    .advantages,
    .cons {
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    .advantages div,
    .cons div {
        flex: 1 0 100%;
        padding: 20px;
        min-width: 0;
    }

    .slider-container {
        max-width: 90%;
    }

    .slide {
        padding: 10px;
    }

    .review-card {
        padding: 20px;
    }

    .blog-section {
        width: 90%;
        padding: 30px 15px 60px;
    }

    .blog-card-block {
        width: calc(50% - 20px);
    }

    .blog-image {
        height: 150px;
    }

    .inner-faq-block {
        padding: 15px;
    }

    .question,
    .answer {
        padding: 15px 30px;
    }

    .article-header {
        margin: 30px 0;
        padding: 0 20px;
    }

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

    .article-info {
        font-size: 16px;
    }
    .company-name {
      top: -20px;
      left: 0px;
      font-size: 35px;
    }
.pros-and-cons-title {
    top: 20px;
    left: 0px;
    font-size: 35px;
	}
}
/* Mobile: 480px */
@media (max-width: 480px) {
    .header-container {
        padding: 8px;
    }

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

    .hamburger-menu .bar {
        width: 20px;
        height: 2px;
    }

    .main-menu {
        top: 50px;
    }

    .main-menu ul li a {
        font-size: 14px;
    }

    .main-footer {
        padding: 15px 0;
    }

    .footer-container {
        padding: 0 10px;
    }

    .footer-email,
    .footer-info {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .image-protect {
        max-height: 80px;
        max-width: 80px;
    }

    .first-section {
        padding: 20px 10px;
    }

    .text-block h2 {
        font-size: 20px;
    }

    .text-block p {
        font-size: 14px;
    }

    .image-block1 {
        max-width: 100%;
    }

    .contact-block {
        font-size: 14px;
        gap: 10px;
    }

    .content-wrapper2 img {
        max-width: 100%;
    }

    .text-content-block2 {
        padding: 0 10px;
    }

    .third-section {
        padding: 30px 0;
    }

    .text-content-block3 {
        padding: 15px;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .company-name {
        font-size: 40px;
        top: -30px;
    }

    .fourth-section {
        padding: 30px 0;
    }

    .content-wrapper4 img {
        max-width: 100%;
    }

    .text-content-block4 {
        padding: 0 10px;
    }

    .fifth-section {
        padding: 30px 0;
    }

    .text-content-block5 {
        padding: 20px;
    }

    .text-content-block5 h2 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .sixth-section {
        padding: 20px;
    }

    .seventh-section {
        padding: 30px 10px;
    }

    .block7 h2 {
        font-size: 1.5em;
    }

    .pros-and-cons-title {
        font-size: 50px;
        left: 50px;
    }

    .advantages div,
    .cons div {
        padding: 15px;
    }

    .reviews-slider {
        padding: 30px 0;
    }

    .review-card {
        padding: 15px;
    }

    .review-card p {
        font-size: 14px;
    }

    .author {
        font-size: 14px;
    }

    .slider-arrow {
        padding: 8px 12px;
    }

    .blog-section {
        width: 100%;
        padding: 20px 10px 40px;
    }

    .blog-card-block {
        width: 100%;
    }

    .blog-image {
        height: 120px;
    }

    .blog-title {
        font-size: 16px;
        padding: 10px;
    }

    .inner-faq-block {
        padding: 10px;
    }

    .question,
    .answer {
        padding: 10px 20px;
        font-size: 14px;
    }

    .article-header {
        margin: 20px 0;
        padding: 0 10px;
    }

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

    .article-thumbnail {
        border-radius: 8px;
    }

    .article-info {
        font-size: 14px;
    }
    .company-name {
      top: -10px;
      left: 0px;
      font-size: 30px;
    }
.pros-and-cons-title {
    top: 20px;
    left: 0px;
    font-size: 30px;
}
}