

/* Основные стили
==================================================*/

html,
body {
    height: 100%;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.8;
    color: #999;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.no-padding [class^="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.main-container {
    padding: 100px 0;
}

.center {
    text-align: center;
}

a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.uppercase {
    text-transform: uppercase;
}

.h-30 {
    height: 30px;
}

.h-10 {
    height: 10px;
}

.color {
    color: #ffffff;
    font-size: 11px;
}

/* Типография
==================================================*/


h2 {
    color: #393939;
    font-size: 50px;
}
h3 {
    color: #393939;
    font-size: 40px;
}

.section h3 {
    font-size: 26px;
}



.text-center ul {
    font-size: 20px;
}

.section p {
    font-size: 19px;
    /*font-family: 'Open sans';*/
}

.section b {

    font-family: 'Open sans';
}

.container p {
    font-size: 19px;
    /*font-family: 'Open sans';*/
}

.section ul {
    font-size: 19px;
    font-family: 'Open sans';
}



/* Предзагрузчик
==================================================*/

.pre-container {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
}

/* Основные контейнеры
==================================================*/

.main .categories-grid span {
    font-size: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.main .categories-grid .categories ul li {
    list-style: none;
    margin: 20px 0;
}

.main .categories-grid .categories ul li a {
    display: inline-block;
    color: #60606e;
    padding: 0 10px;
    margin: 0 10px;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
}

.main .categories-grid .categories ul li a:hover,
.main .categories-grid .categories ul li a:focus {
    text-decoration: none;
}

.main .categories-grid .categories ul li a.active {
    margin-left: 0;
    background-color: #838382;
    padding: 0 20px;
    color: white;
    border-radius: 25px;
    text-decoration: none;
}
.container th, td, table {
    border: 2px solid #000000;
    color: black;
    background-color: #f9f9f9;
}
.main_filter {
    padding-left: 0;
}

.main_item {
    position: relative;
    overflow: hidden;
    display: block;
    border: 15px solid #fff; /* Белая рамка */
    border-radius: 50px;
}

.main_item .main_item_hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(-100%);
    opacity: 0;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
    will-change: transform, opacity;
}

.main_item .main_item_hover .item_info {
    text-align: center;
    font-family: "Cormorant Garamond";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    width: 100%;
    font-weight: bold;
}

.main_item .main_item_hover .item_info span {
    display: block;
    color: #fff;
    font-size: 30px;
    transform: translateX(-100px);
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    opacity: 0;
}

.main_item .main_item_hover .item_info em {
    transform: translateX(-30px);
    opacity: 0;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
    will-change: transform, opacity;
}

/* Десктопный и мобильный эффекты */
.main_item:hover .main_item_hover,
.main_item.touched .main_item_hover {
    opacity: 1;
    transform: translateX(0);
}

.main_item:hover .item_info span,
.main_item.touched .item_info span,
.main_item:hover .item_info em,
.main_item.touched .item_info em {
    opacity: 1;
    transform: translateX(0);
}

.main .categories-grid .categories ul li {
    float: left;
}

.main .categories-grid .categories ul li a {
    padding: 0 0;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    transition: all 0.2s ease-in-out 0.2s;
}

.main_filter {
    padding-left: 0;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

.main-inner {
    padding-bottom: 0 !important;
    padding-top: 55px;
}

.container .section ul {
        font-family: "Cormorant Garamond", serif;
    }

/* Копирайт
==================================================*/

footer {
    padding: 30px 0;
    text-align: center;
    background: #f5f5f5;
}

.copyright {
    color: #ccc;
    margin-bottom: 0;
}

footer img {
    margin: 0 auto;
}

/* Кнопка вверх
==================================================*/

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 20px;
    line-height: 40px;
    font-size: 20px;
    right: 10px;
    text-align: center;
    color: #fff;
    background: rgba(125, 125, 125, 0.8);
    visibility: hidden;
    opacity: 0;
    -webkit-transition:
        opacity 0.3s 0s,
        visibility 0s 0.3s;
    transition:
        opacity 0.3s 0s,
        visibility 0s 0.3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition:
        opacity 0.3s 0s,
        visibility 0s 0s;
    transition:
        opacity 0.3s 0s,
        visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 0.5;
}

.no-touch .cd-top:hover,
.no-touch .cd-top:focus {
    background-color: #8a8a8a;
    opacity: 1;
    color: #fff;
}

/* Изображения разделов
==================================================*/

.top-bar1 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner2.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner2.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar2 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner4.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner4.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar3 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner3.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner3.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar4 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner5.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner5.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar5 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner6.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner6.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar6 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner7.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner7.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar7 {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner8.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner8.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar {
    color: #333;
    padding: 80px 0 80px;
    background: -webkit-linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner.webp);
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/banner.webp);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    text-align: center;
}

.top-bar h1 {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: #999;
    line-height: 50px;
}

.top-bar p {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #777;
}

.top-bar p a {
    color: #777;
}

.top-bar p a:hover,
.top-bar p a:focus {
    color: #555;
    text-decoration: none;
}

.parent {
    position: center;
    overflow: auto;
}

.block {
    position: center;
    margin: auto;
}
.img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: none;
}

.fake-link {
      color: #f74848;
      text-decoration: underline;
      cursor: pointer;
      position: relative;
      display: inline-block;
    }

    .tooltip {
      display: none;
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 8px;
      background: #f0f0f0;
      color: #333;
      border: 1px solid #ccc;
      padding: 6px 10px;
      border-radius: 5px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      white-space: nowrap;
      z-index: 10;
    }