

h2 {
  margin-top: 1.8rem;
}

body  {
  color: #444;
}

div.box a {
  color: #686868;
}


.site-name {
  color: #d3b274; 
  font-weight: 300;
  font-size: 26px; 
  line-height: 0; 
  padding-top: 5px;
  font-family: "Lora",Georgia,Times,serif;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.header-color {
  color: #686868;
  font-family: "Lora"; 
  font-weight: 300;
} 

.borded-top-bottom {
  border-top: 2px dotted lightgrey;
  border-bottom: 2px dotted lightgrey;
  padding: 3px 0px 3px 0px;
}


.borded-top-bottom-section {
  border-top: 3px solid rgba(0, 0, 0, 0.03);
  border-bottom: 2px solid rgba(0, 0, 0, 0.03);
  padding: 15px 0px 15px 0px;
  background: whitesmoke;
  color: #686868;
  font-family: "Lora",Georgia,Times,serif;
}

.content .title {
  color: #444;
  font-weight: 200;
  font-family: "Lora",Georgia,Times,serif;

}


/*  начало заголовок 1 с линиями по сторонам */
/* https://frontblog.ru/verstka-zagolovoka-s-liniyami-po-bokam-na-css.html */

h1.title_wings {


    text-transform: uppercase;
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
    /* Чтобы спрятать часть линий, которые 
    /* будут вылазить за пределы блока */
    overflow: hidden;
    /* Выравнивание заголовка по центру, 
    /** можно использовать left, right */
    text-align: center;
    /* Тут можно добавить другие стили для заголовка */
    /*font-size: 30px; */
    font-family: "Lora";
}

h1.title_wings span {
    /* Стили тега обертки для заголовков 
    /* в несколько строк */
    display: inline-block;
    vertical-align: middle;
}

h1.title_wings:before, h1.title_wings:after {
    /* Обязательно указываем пустое свойство content, 
    /* иначе псевдоэлементы не появятся на сайте */
    content: "";
    /* Указываем что наши линии будут строчно-блочные и 
    /* выравнивание по высоте - по центру */
    display: inline-block;
    vertical-align: middle;
    /* Задаем ширину 100% и выбираем высоту линии, 
    /* в нашем примере она равна 4 пикселям */
    width: 100%;
    height: 1px;
    /* Добавляем цвет для линии */
    background-color: rgba(0, 0, 0, 0.08);
    /* Добавляем пседоэлемантам возможность изменить 
    /* позицию линии, для создания отступов от текста */
    position: relative;
}

h1.title_wings:before {
    /* Смещаем левую линию на 100% влево, чтобы линия 
    /* встала рядом с текстом слева */
    margin-left: -100%;
    /* Указываем в пикселях отступ линии от текста заголовка */
    left: -44px;
}

h1.title_wings:after {
    /* Смещаем правую линию на 100% вправо, чтобы 
    /* линия встала рядом с текстом справа */
    margin-right: -100%;
    /* Указываем в пикселях отступ линии от текста заголовка */
    right: -44px;
}
/*конец заголовок 1 с линиями по сторонам  */



/*// галерея */
/*// https://codepen.io/marcosdg-com/pen/XPMpxv */
.item-slide {
  box-sizing: border-box;
}


/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: rgba(0,0,0,0);
  width: 90%;
  max-width: 1200px;
  max-height: 700px;
  overflow: hidden;
  text-align: center;
}

.modal img {
  height: 100vh;
}


.item-slide {
  display: none;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


/* Number text (1/3 etc) */
.numbertext {}
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  right: 0;
  top: 0;
}

.item-slide img {
  max-width: 1200px;
}


.caption-container {
  color: white;
}


.column img {
  margin-top: 20px;
}


h1.title_wings {
    color: #444;
    font-size: 25px; 
    font-weight: 200;
    font-family: "Lora",Georgia,Times,serif;
}