/*
* Mate - Bootstrap 4 Template
* Build Date: December 2017
* Last updated: December 2017
* Version: 1.0
* Author: UIdeck
* Copyright (C) 2018 UIdeck
*/
/* ------------------------------------- */
/* TABLE OF CONTENTS
/* -------------------------------------
  1. IMPORT GOOGLE FONTS
  2. GENERAL
    -2.1 SECTION TITLE
    -2.2 BUTTONS
    -2.3 SOCIAL ICON
    -2.4 PRE LOADER
    -2.5 SCROLL TO UP
  3. HERO AREA 
  4. NAVBAR
  5. SERVICES SECTION
  6. FEATURES SECTION
  7. VIDEO PROMO SECTION
  8. PORTFOLIO SECTION
  9. PRICING TABLE 
  10. COUNTER SECTION
  11. TESTIMONIAL AREA
  12. TEAM SECTION
  13. BLOG SECTION
  14. CONTACT SECTION
  15. FOOTER SECTION
    -15.1 COMING SOON PAGE
  ------------------------------------- */
/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url("https://fonts.googleapis.com/css?family=Poppins:400,700");
/* ==========================================================================
   2. GENERAL
   ========================================================================== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

a, p, span {
  font-size: 16px !important;
}
.table {
  display: none;
}
.container {
  margin-top: 20px;
}
p {
  font-size: 14px;
  line-height: 26px;
}

a:hover, a:focus {
  color: #FF8F3D;
}

a {
  color: #7C94BF;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

a:not([href]):not([tabindex]) {
  color: #fff;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: #61D2B4;
}

/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 30px 0;
}

.section-header1 h3 {
  font-size: 22px !important
}

.section-header {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.section-header .section-title {
  font-size: 42px;
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  position: relative;
}

.section-header .section-title span {
  color: #FF8F3D;
}

.section-header .section-subtitle {
  margin-top: 25px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #FF8F3D;
  margin-top: 15px;
}

/* ==========================================================================
   2.2 Buttons
   ========================================================================== */


/* Основной уровень */
.menu {
        margin: 40px auto;
        width: fit-content;
        margin-left: 13px;
        margin-left: 34%;
        z-index: 100;
}

.menu > li {
        background: #34495e;
        float: left;
        position: relative;
        transform: skewX(25deg);
}

.menu a {
        display: block;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        font-family: Arial, Helvetica;
        font-size: 14px !important;
        font-weight: 600;
}               

.menu li:hover {
        background: #FF8F3D;
}               

.menu > li > a {
        transform: skewX(-25deg);
        padding: 1em 2em;
}
.menu > li > span {
        transform: skewX(-25deg);
        padding: 1em 2em;
}

/* Выпадающий уровень */
.submenu {
        position: absolute;
        width: 200px;
        left: 50%; margin-left: -100px;
        transform: skewX(-25deg);
        transform-origin: left top;
}

.submenu li {
        background-color: #34495e;
        position: relative;
        overflow: hidden;
}                                               

.submenu > li > a {
        padding: 1em 2em;
}

.submenu > li > span {
        padding: 1em 2em;
    display: block;
    cursor: default;
}

.submenu > li::after {
        content: '';
        position: absolute;
        top: -125%;
        height: 100%;
        width: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, .9);
}               

/* Свойства нечетных подпунктов */
.submenu > li:nth-child(odd){
        transform: skewX(-25deg) translateX(0);
}

.submenu > li:nth-child(odd) > a {
        transform: skewX(25deg);
}

.submenu > li:nth-child(odd) > span {
        transform: skewX(25deg);
}

.submenu > li:nth-child(odd)::after {
        right: -50%;
        transform: skewX(-25deg) rotate(3deg);
}                               

/* Свойства четных подпунктов */
.submenu > li:nth-child(even){
        transform: skewX(25deg) translateX(0);
}

.submenu > li:nth-child(even) > a {
        transform: skewX(-25deg);
}

.submenu > li:nth-child(even) > span {
        transform: skewX(-25deg);
}

.submenu > li:nth-child(even)::after {
        left: -50%;
        transform: skewX(25deg) rotate(3deg);
}

/* Показ выпадающего меню */
.submenu,
.submenu li {
        opacity: 0;
        visibility: hidden;
}

.submenu li {
        transition: .2s ease-out transform;
}

.menu > li:hover .submenu,
.menu > li:hover .submenu li {
        opacity: 1;
        visibility: visible;
}               

.menu > li:hover .submenu li:nth-child(even){
        transform: skewX(25deg) translateX(15px);
}
.menu > li:hover .submenu li:nth-child(odd){
        transform: skewX(-25deg) translateX(-15px);
}



/* ==========================================================================
   2.3 Social Iocns
   ========================================================================== */
.social-icons {
  margin-top: 40px;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline;
}

.social-icons ul li a {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 15px;
  border-radius: 50%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ddd;
  font-size: 16px;
}

.social-icons ul li a:hover {
  color: #fff;
}

.facebook a {
  color: #4867AA;
}

.facebook a:hover {
  background: #4867AA;
}

.instagram a {
  color: #d6295d;
}

.instagram a:hover {
  background: #d6295d;
}
.maps a {
  color: #2ea11f;
}

.maps a:hover {
  background: #2ea11f;
}


/* ==========================================================================
	 2.4  Pre Loader
	 ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  z-index: 9999999999;
}

.spinner {
  width: 40px;
  height: 40px;
  top: 45%;
  position: relative;
  margin: 0px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FF8F3D;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color: #7C94BF;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.back-to-top i:hover {
  background-color: #FF8F3D;
}
/* ==========================================================================
   3. Hero Area
   ========================================================================== */
#hero-area {
  background: url(../img/hero-area.jpg) fixed no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

#hero-area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #FF8F3D;
  opacity: 0.9;
}

#hero-area .contents {
  padding: 190px 0 270px;
}

#hero-area .contents h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 35px;
   text-transform: uppercase;
}

#hero-area .contents h4 {
  color: #fff;
  font-size: 23px;
  font-weight: 300;
  margin-bottom: 30px;
   text-transform: uppercase;
}

#hero-area .contents p {
  font-size: 17px;
  color: #fff;
  font-weight: 400;
  line-height: 65px;
  letter-spacing: 0.5px;
}

#hero-area .contents .btn {
  margin: 25px 25px 0px 0px;
  text-transform: uppercase;
}

#hero-area .banner_bottom_btn {
  margin-top: 40px;
}

#hero-area .banner_bottom_btn i {
  color: #fff;
  font-size: 48px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#hero-area .banner_bottom_btn i:hover {
  color: #FF8F3D;
}

/* ==========================================================================
   4. Navbar Style
   ========================================================================== */
.navbar-brand {
  position: relative;
  padding: 0px;
}

.top-nav-collapse {
  background: #fff;
  z-index: 999999;
  top: 0px !important;
  padding: 0;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.06);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: #fff !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: #333 !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: #FF8F3D !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: #fff !important;
}

.indigo {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav li a:hover,
.navbar-expand-lg .navbar-nav li .active > a,
.navbar-expand-lg .navbar-nav li a:focus {
  color: #FF8F3D;
}

.navbar .nav-link.active {
  color: #fff !important;
  background: #34495e;
  font-weight: 600;
  /*background: #61D2B4;*/
}

.dropdown-toggle::after {
  display: none;
}

.slicknav_btn {
  border-color: #FF8F3D;
}

.slicknav_menu .slicknav_icon-bar {
  background: #FF8F3D;
}

.row1 {

    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;

}

.row1 h3 {
  font-size: 22px !important; 
  text-align: center !important;
}

.row1 img {

    width: 20%;
    height: 10%;
    margin-right: 81px;
    margin-top: -10px;
    margin-left: 30px;

}
.row2 span {
    font-size: 16px;
    font-weight: 300;
    font-family: Arial;
    margin-top: 20px;
    color: #fff;
    display: inline-block;
    margin-right: 25px;
    margin-bottom: 40px;
    float: left;
    margin-left: 45px;
}
.row2 svg {
  margin-right: 10px;
  width: 45px;
  float: left;
  margin-top: -13px;
}

/* only small tablets */
@media (min-width: 768px) and (max-width: 991px) {
  #nav-main li a.nav-link {
    padding-top: 18px;
  }
}

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-header {
    width: 100%;
  }
  .navbar-brand {
    position: absolute;
    padding: 15px;
    top: 0;
  }
  .navbar-brand img {
    width: 70%;
  }
  #mobile-menu {
    display: none;
  }
  .slicknav_menu {
    display: block;
  }
  .slicknav_nav .active a {
    background: #FF8F3D;
    color: #fff;
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: #FF8F3D;
    background: #f8f9fa;
  }
  .slicknav_nav .dropdown li a.active {
    background: #f8f9fa;
    color: #FF8F3D;
  }
}

/* ==========================================================================
  5. Services section
   ========================================================================== */
.item-boxes {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-boxes .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid #f1f1f1;
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-boxes .icon i {
  font-size: 26px;
  line-height: 60px;
  color: #FF8F3D;
}

.item-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.item-boxes:hover .icon {
  background: #FF8F3D;
}

.item-boxes:hover .icon i {
  color: #fff;
}

/* ==========================================================================
  6. Features Section Style
   ========================================================================== */
#features {
  background: url(../img/bg1.jpg) fixed no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}

#features .section-title {
  color: #fff;
}

#features .section-subtitle {
  color: #fff;
}

#features .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#features .box-item {
  padding: 15px 0;
}

#features .box-item .icon {
  border: 1px solid #fff;
  text-align: center;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 60px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .text {
    padding-left: 74px;
    width: 95%;
    margin-bottom: 25px;
    margin-top: 10px;
}
#features .box-item .text h4 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 22px;
}

#features .box-item .text p {
  font-size: 14px;
  line-height: 26px;
}

#features .box-item:hover .icon {
  background: #FF8F3D;
}

#features .box-item:hover .icon i {
  color: #ffffff;
}

#features .show-box img {
  position: absolute;
  bottom: 0;
  width: 200px;
  margin-left: 154px;
}


#portfolios .mix {
  padding: 10px;
}

#portfolios .portfolio-item .shot-item {
  margin: 0px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  color: #61D2B4 !important;
  border-color: #FF8F3D;
  background: transparent;
}

.controls .btn {
  text-transform: uppercase;
  margin: 2px;
}

.portfolio-img {
  overflow: hidden;
  display: block;
  position: relative;
}

.portfolio-img img {
  width: 100%;
}

.shot-item {
  margin-right: 15px;
  border-radius: 4px;
  background: #fff;
  position: relative;
}

.shot-item span {
  width: 250px;
  display: inline-block;
  padding-left: 10px;
}

.shot-item img {
  width: 100px;
  display: inline-block;
  margin-bottom: 10px;
  margin-left: 11px;

}

.row4 {

    width: 137%;
    margin-left: -200px;
    text-align: center;

}
.row4 li {
  display: inline-block;
}
.row4 img {
  width: 360px;
  padding: 10px;
}
/* ==========================================================================
  14. Contact Us
  ========================================================================== */
.contact-us h3 {
  font-size: 36px;
  margin-bottom: 45px;
}

.contact-us p span {
  color: #FF8F3D;
  padding-left: 10px;
}

#contact {
  background: url(../img/Cinema.jpg) fixed no-repeat;
  /*background: #343a40;*/
  color: #fff;
  position: relative;
}

.form-control {
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border-color: #fff;
  border-radius: 0px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  box-shadow: none;
  color: #fff;
  border-color: #FF8F3D;
  background: transparent;
  outline: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
  border-radius: 1.25rem;
}

#submit:hover {
  background-color: #FF8F3D;
  color: #fff;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: #d9534f;
}

/* ==========================================================================
15. Footer Style
 ========================================================================== */
footer {
  background: #0C0501;
  padding: 20px 0;
}

.footer-links {
  line-height: 48px;
}

.footer-links li {
  float: left;
}

.footer-links li a {
  color: #fff;
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: #FF8F3D;
}

.copyright {
  margin-top: 10px;
  float: right;
}

.copyright p {
  color: #fff;
}

.copyright p a {
  color: #fff;
}

.copyright p a:hover {
  color: #FF8F3D;
}
a, p, span {
  font-size: 15.3px;
  cursor: pointer;
}

.container {
  margin-top: 20px;
}
#hero-area .contents h4 > a {
    font-family: Arial;
    font-size: 22px !important;
    color: #fff;
    display: inline-block;
}
.photo:hover::after {

    content: attr(data-title);
    position: absolute;
    left: 15%;
    top: 66%;
    z-index: 1;
    background: rgba(255,255,255,1);
    font-family: Arial, sans-serif;
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid #333;
    color: #000;
    line-height: 15px;
    width: 100%;
        padding-top: 1%;
        padding-right: 3%;
        padding-bottom: 5%;
        padding-left: 3%;

}
.photo1:hover::after {
    content: attr(data-title);
    position: absolute;
    left: 12%;
    top: -32%;
    z-index: 1;
    background: rgba(255,255,255,1);
    font-family: Arial, sans-serif;
    font-size: 13px;
    border: 1px solid #333;
    color: #000;
    line-height: 15px;
    width: 100%;
    padding-top: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
    padding-left: 1%;
}


.modalbox {
    color: #FFFFFF;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 2px;
    text-decoration: none;
    text-align: center;
    float: right;
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}
.modalbox img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 768px) {
    .modalbox {
        opacity: .7;
    }
    .modalbox:hover {
        opacity: 1;
    }
}
@media (min-width: 1100px) {
    .modalbox {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
}
@media (max-width: 960px) {
    .modalbox {
        font-size: 0.9em;
    }
}
@media (max-width: 860px) {
    .modalbox {
        font-size: 0.8em;
        margin-top: -3px;
        margin-bottom: 1%;
    }
}
@media (max-width: 750px) {
    .modalbox {
        font-size: 0.8em;
        margin-top: -13px;
        margin-bottom: 1.4%;
        float: left;
        margin-left: 37%;
    }
    .txtarea {
        width: 100%;
    }
}

#popup {
    display:none;
    padding: 10px 20px;
    background: #fff;
    margin: 0 auto;
    max-width: 90%;
    width: 400px;
}
#popup h4{
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.fancybox-container {
    z-index: 10065114 !important;
}
#popup input{
    width: 100%;
    max-width: 100%;
}
#popup textarea{
    width: 100%;
    max-width: 100%;
}

.txt {
    display: inline-block;
    color: #676767;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 5px 9px;
    font-size: 15px!important;
    line-height: 1.4em;
    margin-right: 4px;
}
.txtarea {
    display: inline-block;
    color: #676767;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 5px 9px;
    font-size: 15px!important;
    line-height: 1.4em;
    height: 80px;
}
.txt:focus, .txtarea:focus {
    border-style: solid;
    border-color: #bababa;
    color: #444;
}
input.error, textarea.error {
    border-color: #973d3d;
    border-style: solid;
    background: #f0bebe;
    color: #a35959;
}
input.error:focus, textarea.error:focus {
    border-color: #973d3d;
    color: #a35959;
}
#send {
    color: #FFFFFF;
    display: block;
    cursor: pointer;
    padding: 5px 11px;
    font-size: 1.2em;
    border: solid 1px #F9F9F9;
    border-radius: 2px;
    background: #34495e;
    width: 210px;
    margin-bottom: 20px;
    transition: all .3s ease;
}
#send:hover {
    background: #979797;
}
/* Форма обратной связи */
