/*
  Theme Name: tech
  Version: 1.0.0
  Template: Divi
  Author: Divi Pixel
  Author URI: https://www.divi-pixel.com
  Text Domain: tech
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/* SCROLL Y OFF START */

	div#page-container {
		overflow-x: hidden;
	}

/* SCROLL Y OFF END */

/* VARIBLES START */

:root {
	--color-accent: #8B1D1F;
}

/* VARIBLES EDN */

/* BODY TEXT START */


blockquote {
	border-color: var(--color-accent);
}

/* BODY TEXT END */

/* IMG TITLE OFF START */

img[title] { pointer-events: none; }

/* IMG TITLE OFF END */

/* ACCENT COLOR START */

.accent-color, em {
	color: var(--color-accent);
}

/* ACCENT COLOR END */

/* COOCKIE START */

.cky-btn-revisit-wrapper {
	background-color: transparent !important;
}

/* COOCKIE END */

/* ROW FLEX START */

.row-flex {
	display: flex;
	align-items: center;
}
.row-flex::after {
	display: none;
}

@media(max-width: 980px) {
	.row-flex {
		flex-direction: column;
	}
	
	.row-flex.row-flex_reverse > div:first-child {
		order: 2;
		margin-bottom: 0 !important;
	}
	.row-flex.row-flex_reverse > div:nth-child(2) {
		order: 1;
		margin-bottom: 40px !important;
	}
}

/* ROW FLEX END */

/* TEXT BORDER START */

.text-border, .text-border p {
	color: transparent !important;
	-webkit-text-stroke: .5px var(--color-accent);
  	text-stroke: .5px var(--color-accent);
}

.text-border_dark {
	color: transparent;
	-webkit-text-stroke: .5px var(--color-dark);
  	text-stroke: .5px var(--color-dark);
}

/* TEXT BORDER END */

/* SECTION TITLE START */

h1, h2, h5, h3, h6, h4 {
	padding-bottom: 0 !important;
}

.section-title {
	max-width: max-content;
	padding-left: 60px;
	padding-right: 60px;
	margin-left: auto;
    margin-right: auto;
}

.section-title::before,
.section-title::after {
	content: '';
	width: 40px;
	height: 2px;
	border-radius: 2px;
	background: rgba(255,255,255,.3);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.section-title::after {
	left: auto;
	right: 0;
}

@media(min-width: 981px) {
	.section-title.section-title_left::before,
	.section-title.section-title_left::after {
		left: 0;
		transform: none;
	}
}

/* SECTION TITLE END */

/* LIST STYLES START */

.custom-list ul {
	padding: 0;
	margin: 0;
}
.custom-list ul li {
	list-style: none;
	position: relative;
	padding-left: 30px;
}

.custom-list ul li:not(:last-child) {
	margin-bottom: 8px;
}

.custom-list ul li::before {
	content: '\5a';
	font-family: ETmodules!important;
    font-weight: 400!important;
	color: var(--color-accent);
	font-size: 16px;
	position: absolute;
	left: 0;
	top: 0px;
}

footer .custom-list ul li::before {
	color: #fff;
}

@media(max-width: 980px) {
	.custom-list.custom-list_centered ul li {
		padding-left: 0;
	}
	.custom-list.custom-list_centered ul li::before {
		display: none;
	}
}

/* LIST STYLES END */

/* HIDDEN ON MOBILE START */

@media(max-width: 425px) {
	.hidden-on-mobile {
		display: none;
	}
}

/* HIDDEN ON MOBILE END */

/* NUMERETIC LIST START */

ol.numeretic{
  counter-reset: myCounter;
}

ol.numeretic li{
  list-style: none;
}

ol.numeretic li:before {
  counter-increment: myCounter;
  content:counter(myCounter);
  color: var(--color-accent);
	display: inline-block;
	padding-right: 5px;
	font-size: 105%;
}

/* NUMERETIC LIST END */