@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(0.75, 0.75);
    }
    100% {
      transform: scale(1, 1);
    }
}

body, html {
    background-color: #252122;
}

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    background-color: #212121;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#preloader img {
    max-width: 120px;
    animation: zoom-in-zoom-out 1.5s ease infinite;
}


#preloader.active {
    opacity: 1;
    visibility: visible;
}

#preloader.active.half {
    opacity: 0.75;
}

.main-header {
    display: none;
}



.section, .full, .main-content {
    display: block;
    width: 100%;
    clear: both;
    float: left;
}

.section  {
    background: linear-gradient(75deg,  rgba(2,2,2,1) 0%,rgba(62,62,62,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    position: relative;
    overflow: hidden;
}

.relative {
    position: relative;
}

.main-content .section:first-child {
    margin-top: 90px;
}

.wrapper, .wrapper-fhd {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1316px;
}

.wrapper-fhd {
    max-width: 1956px;
}



.row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 18px;
    padding-bottom: 18px;
}

.col {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 18px;
}

.col-1-2 {
    max-width: 50%;
}

.col-1-3 {
    max-width: 33.333%;
}

.col-2-3 {
    max-width: 66.666%;
}

.col-1-4 {
    max-width: 25%;
}

.col-2-4 {
    max-width: 50%;
}

.col-3-4 {
    max-width: 75%;
}

.col-4-4 {
    max-width: 100%;
}

.section:nth-child(odd) {
    background-color: #2b2628;
}

.section:nth-child(even) {
    background-color: #282425;
}

.breadcrumb {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 20px;
}

.breadcrumb li {
    margin-right: 18px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    padding: 0;
    margin-right: 12px;
}

.breadcrumb li:last-child {
    margin-right: 0;
}

.breadcrumb li a {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow:hidden;
    text-decoration: none;
    font-size: 14px;
    font-family: 400;
    color: #666;

}



label.error {
    padding: 6px;
    background-color: red;
    font-size: 14px;
    display: inline-block;
    color: white;
    border-radius: 1px;
    font-weight: 700;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-left: 12px;
    margin-right: 12px;
}

.pagination ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
}

.pagination a.next, .pagination a.prev {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    min-height: 36px;
    line-height: 36px;
    color: white;

}

.section.paralax {
    padding-top: 90px;
    padding-bottom: 90px;
    background: url(../../img/paralax2.jpg);
    background-position: center center !important; 
    background-attachment: fixed !important;
    background-size: cover !important;
    position: relative;
}

.section.paralax::before, .section.paralax::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    background: linear-gradient(75deg, rgba(2,2,2,1) 0%,rgba(62,62,62,1) 100%);
    

}

.section.paralax::after {
    z-index: 0;
    opacity: 0.05;
}

.section.paralax.paralax1::before {
    background: linear-gradient(90deg, #956f4a, #ffffbd, #95714b);
    opacity: 0.85;
}

.section.paralax.paralax1 .text-description p {
    background: none;
    -webkit-text-fill-color: unset;
    color: #1e1e1e;
}

.section.paralax.paralax2::before {
    background-color: #ee232a;
    opacity: 0.5;
}

.section.paralax.paralax3::before {
    background-color: #3a3a3a;
    opacity: 0.75;
}

.section.paralax.paralax4::before {
    background-color: #5597aa;
    opacity: 0.25;
}

.section.paralax.paralax5::before {
    background-color: #4da3a3;
    opacity: 0.25;
}

.section.paralax.paralax6::before {
    background-color: #40b09f;
    opacity: 0.25;
}

.section.paralax.paralax-gradient::before {
    background-color: transparent;
    background: linear-gradient(to right, rgba(255,180,0,1) 0%,rgba(238,35,42,1) 100%);
    opacity: 0.15;
}

.section.paralax.paralax-gradient::after {
    opacity: 0.25;
}

.section.paralax.fliped::before {
    transform: rotate(180deg) !important;
}

.section.paralax .wrapper {
    position: relative;
    z-index: 2;
}



.pagination a.prev {
    margin-right: 12px;
}

.pagination a.next {
    margin-left: 12px;
}

.pagination a.prev i {
    margin-right: 6px;
    font-size: 65%;
}

.pagination a.next i {
    margin-left: 6px;
    font-size: 65%;
}

.pagination ul li.hidde {
    display: none;
}

.pagination ul li a, .pagination ul li span {
    display: block;
    padding: 6px;
    min-width: 24px;
    text-align: center;
    padding: 0;
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    text-decoration: none;
    border-radius: 0px;
    background-color: rgba(0, 0, 0, 0.2 );
    color: white;
    border-radius: 10px;
}

.pagination ul li span {
    color: rgba(0, 0, 0, 0.75 );
    background-color: transparent;
    margin-left: -12px;
    margin-right: -12px;
}

.pagination ul li.active a {
    background-color: #f3ae33;
}

.section.plain iframe {
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    float: left;
    clear: both;
}

.section.pagination .row .col {
    flex-wrap: wrap;
}

.accordion .wrapper {
}

.accordion-action {
    display: block;
    float: left;
    width: 100%;
    padding: 18px;
    text-decoration: none;
    background-color: #3a3a3a;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid transparent;
    border-bottom: none;
}

.active .accordion-action {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.85);
    border-color: rgba(0, 0, 0, 0.2 );
}


.accordion-wrapper {
    float: left;
    width: 100%;
    
}

.acordion-child {
    background-color: #f7f7f7;
    float: left;
    width: 100%;
    margin-bottom: 24px;
}

.section:nth-child(odd) .acordion-child  {
    background-color: white;
}

.acordion-child:last-child {
    margin-bottom: 0;
}

.accordion-content {
    max-height: 0;
    float: left;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.active .accordion-content {
    max-height: 2000px;
    overflow: visible;
}

.accordion-content .text-description {
    display: block;
    float: left;
    width: 100%;
    border: 1px solid transparent;
    border-color: rgba(0, 0, 0, 0.2 );
    border-top: none;
    padding: 18px;
    margin-top: -2px;
}

.section.nav, .section.nav .row {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.section.nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.section.nav ul li {
    margin-left: 9px;
    margin-right: 9px;
    padding: 0;
}

.section.nav ul li .button {
    background-color: white;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #262626;
}

.section.nav ul li.active .button {
    background-color: #ed1c24;
    color: white;
}

.gallery-movies .col.full {
    width: calc(100% + 18px);
    margin-left: -9px;
}

.gridm {
    width: 100%;
    margin: 0 auto;
  }
  
  .gridm-sizer,
  .gridm-item {
    width: 33.333%;
  }
  
  .gridm-item {
    float: left;
    padding: 9px;
    box-sizing: border-box;
  }
  
  .gridm-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
  }

  .gridm-item a {
    overflow: hidden;
    float: left;
    border-radius: 15px;
    width: 100%;
  }

  .gridm-item a:hover img {
    transform: scale(1.25);
  }

/* mobial */
@media screen and (max-width: 890px) {

    .main-content .section:first-child {
        margin-top: 70px;
    }

    .section.pagination .row, .section.pagination .row .col {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section.pagination .row .col {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .pagination ul li a, .pagination ul li span {
        padding: 3px;
        width: 32px;
        height: 32px;
        line-height: 25px;
        font-size: 14px;
    }

    .pagination a.next, .pagination a.prev {
        font-size: 16px;
        min-height: 32px;
        line-height: 32px;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        width: 12px;
    }

    .pagination a.next i, .pagination a.prev i {
        margin: 0 !important;
        font-size: 100%;
    }

    .pagination a.next span span, .pagination a.prev span span {
        display: none;
    }

}

@media screen and (max-width: 540px) {


.gridm-sizer,
.gridm-item {
  width: 50%;
}

}