/* RTL */

body {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: "Arimo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-style: normal;
}

body h1, body h2, body h3, body h4, body h5, body h6,
.hero-home .hero-home__container .hero-home__title {
	font-family: "Arimo", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 2rem;
}

body p {
	font-style: normal;
	line-height: 2rem;
	opacity: 0.9;
	font-size: 1.1rem;
}

body a {
	font-style: normal;
}

.grayscale {
	  filter: grayscale(100%); 
}

[dir="rtl"] .slick-next {
	right: 0;
	left: auto;
}

[dir="rtl"] .slick-prev {
	right: auto;
	left: 0;
}

.title-section__dark h2,
.title-section__light h2 {
	text-transform: none;
}



/* HEADER */

nav a {
	font-style: normal;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.1px;
}

.logo img {
	vertical-align: text-bottom;
}

header .phone a {
	/* font-family: "Oswald", sans-serif; */
	font-size: 1rem;
}

.language-select {
  font-size: 2rem;
  padding: 0;
  border-radius: 5px;
  background: none;
  cursor: pointer;
  color: #fff;
  border: none;
}

  .language-selector {
	gap: 10px;
  }

  .language-icon {
	font-size: 24px;
	text-decoration: none;
  }

  .language-icon:hover {
	opacity: 0.7;
  }




/* FOOTER */

.logo {
	width: 70px;
}

footer {
	padding: 1.5rem 0 5rem 0;
}

.footer-mob {
  display: none;
}




/* FORM */

.ModalCalculator .modal-header {
  color: #fff;
  text-align: center;
}

.ModalCalculator .form-group h4 {
  color: #fff;
  font-weight: bold;
}

.ModalCalculator .btn-outline-secondary {
  margin: 5px;
}

/* Стиль для блока с выбранными предметами */
.selected-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px; /* Отступ между строками */
	padding: 5px 10px;
	background-color: #f5f5f5;
	border: 1px solid #dddddd;
	border-radius: 4px;
	color: #000;
}

/* Кнопки внутри строки предметов */
.selected-item button {
	padding: 5px 10px;
	margin: 0 5px; /* Отступы между кнопками */
	border-radius: 4px;
	font-size: 14px;
}

.selected-item .item-decrease,
.selected-item .item-increase {
	background-color: #6c757d;
	color: white;
	border: none;
	transition: background-color 0.3s ease;
}

.selected-item .item-decrease:hover,
.selected-item .item-increase:hover {
	background-color: #5a6268;
}

.selected-item .item-remove {
	background-color: #dc3545;
	color: white;
	border: none;
	transition: background-color 0.3s ease;
}

.selected-item .item-remove:hover {
	background-color: #c82333;
}

/* Поля ввода количества */
.selected-item .item-quantity {
	width: 50px;
	text-align: center;
	border: 1px solid #cccccc;
	border-radius: 4px;
	font-size: 16px;
	padding: 4px;
	margin: 0 5px; /* Отступ между полем ввода и кнопками */
}

/* Общий блок для отступов */
#selected-items {
	margin-top: 20px;
	padding: 15px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 8px;
}

.add-item {
	color: #fff;
	padding: 13px;
}

.modal .modal-content {
	color: #000;
}

.form-group label {
  color: #fff;
}

.form-check-label {
	margin-right: 18px;
	font-size: 1.1rem;
}

label {
  font-size: 1.1rem;
  font-style: normal;
  font-family: "Arimo", sans-serif;
}

.modal .modal-body ul li {
	color: #fff;
}








/* MAIN PAGE - 1 */

.hero-home {
	background-image: url(../images/main-photo-bw.jpg);
	position: relative;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .btn {
	font-size: 1.7rem;
	font-weight: 700;
}

.contact .contact__location i {
	font-size: 3.44rem;
}

.btn {
	background-color: #44a6dd;
	border: color(display-p3 0.146 0.556 0.869)  
}

.more-btn {
  color: color(display-p3 0.842 0.759 0.388) !important;
}

.whatsapp-button {
	position: fixed;
	bottom: 20px;
	left: 25px;
	background-color: #25d366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	text-decoration: none;
	transition: transform 0.3s;
	color: #fff;
}



/* MEDIA */

@media (max-width: 575.98px) {
	.hero-home .hero-home__container .hero-home__text-biger {
		font-size: 4rem;
	}
}


@media (max-width: 767.98px) {
	.selected-item {
		flex-direction: row;
		align-items: flex-start;
	}

	.selected-item .item-name {
		margin-bottom: 10px;
	}
	
	.title-section__dark h2 {
		font-size: 4rem;
	}
	
	.footer-content {
	  display: none;
	}
	
	.footer-mob {
	  display: block;
	  text-align: right;
	  padding: 10px 25px;
	}
	
	footer {
		padding: 1.5rem 0 1.5rem 0;
	}
}


@media (max-width: 991.98px) {
	nav {
		text-align: right;
	}
}



