@charset "utf-8";

@font-face {
    font-family: 'Bella Script Cyr';
    src: url('../fonts/bellascriptcyr.woff2') format('woff2'), /* Лучший вариант */
         url('../fonts/bellascriptcyr.woff') format('woff'); /* Запасной вариант */
}
/*************************
*******  гугл переводчик    *********
**************************/

.goog-logo-link, 
.goog-te-gadget img {
  display: none !important;
}

@keyframes gradient-animation {
  0% { background-position: 0% 100%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 100%; }
}

.gradient-animated-text {
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 10s infinite linear;
}

/*************************
*******  Main    *********
**************************/

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  
  width: 100vw; /* 100% ширины экрана */
  min-width: 100%; /* Если вдруг что-то ограничивает */
  margin: 0; /* Убираем отступы по краям */
  padding: 0; /* Если были внутренние отступы */
  overflow-x: hidden; /* Запрещаем горизонтальный скролл */
}


h6 { /*****8 установки шрифта и размера для заголовка разделов *****/
  font-family: 'Bella Script Cyr';	
  font-size: 140px !important;
  /* text-transform: lowercase;  */
}

h5 { /*****8 установки шрифта и размера для заголовка сайта*****/
  font-family: 'Bella Script Cyr';	
  font-size: 140px !important;
  /* text-transform: lowercase; */
  font-weight: 500;
  margin-top: 3vh;
  margin-bottom: 1px;
}

#footer .footer-logo h5 { /***** установки шрифта и размера для названия сайта в футере*****/
  font-family: 'Bella Script Cyr';	
  font-size: 140px !important;
  text-transform: lowercase;
  font-weight: 500;
  margin-top: 3vh;
  margin-bottom: 1px;
  padding-top: 1vh;
  padding-bottom: 10vh;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
}

.parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.parallax input,
.parallax input:hover,
.parallax textarea,
.parallax textarea:hover {
  font-weight: 300;
}

.btn-submit {
  border:1px solid;  
  border-radius: 10px;
  display: block;
  padding: 12px;
  width: 100%;
  margin-top: 40px;
}


.btn {
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out; /* Анимируем только transform */
}

.btn:hover {
  transform: scale(1.03);
}



/*************************
*******   Navbar    ******
**************************/

.navbar-header {
  height: 90px; /* Высота навбара */
  line-height: 90px; /* Совпадает с высотой */
}

.navbar-brand {
  margin-left: 35px;
}

.navbar-header img {
  margin-top: 2vh;
  margin-left: 4vh;
  opacity: 100%
}

.navbar-collapse li.scroll:not(.hover-enabled):hover,
.navbar-collapse li.dropdown:not(.hover-enabled):hover {
    pointer-events: none;
}


.navbar-nav li a:hover,
.navbar-nav li.active a, 
.navbar-nav li a:focus {
  border-radius: 20px;
  border:0px solid;  
  transition: all 0.1s ease-in-out; /* Плавное изменение */
  
}


.navbar-right li a  {
  transition: background 0.3s;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 2vh;
  margin-bottom: 2vh;

}

.dropdown-menu {
  border: none; /* Убираем границу, если она есть */
}

.dropdown-menu li a {
  padding: 10px 30px; /* Отступы внутри пунктов меню */
}

a {
  text-decoration: none;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}

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

section {
  padding: 20px 0;
}

.heading {
  padding-bottom:30px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
}

.preloader > i {
  position: absolute;
  font-size: 36px;
  line-height: 36px;
  top: 50%;
  left: 50%;
  height: 36px;
  width: 36px;
  margin-top: -15px;
  margin-left: -15px;
  display: inline-block;
}


/*************************
******** Social Icons ****
**************************/


.social-icons {
  margin-top:30px;
  text-align: center;
}

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

.social-icons ul li {

  float: left;
  margin-right: 8px;
}

.social-icons ul li:last-child {
  margin-right: 0;
}

.social-icons ul li a {
  border-radius: 25%;
  border:1px solid;  
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: block;
  font-size: 20px;
  opacity: .8;
}

.social-icons a {
  border-radius: 25%;
  border:1px solid;  
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: block;
  font-size: 20px;
  opacity: 1;
}

.social-icons a:hover {
  opacity: 1;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}


.social-icons ul li a:hover {
  opacity: 1;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}


/*************************
********Home CSS**********
**************************/
#home-slider {
  max-width: 100%; /* Ограничиваем по ширине */
  max-height: 100%; /* Ограничиваем высоту */
  height: 400px;

  overflow: hidden;
  position: relative;
    display: flex;
  align-items: center;
  justify-content: center;
}

#home-slider .caption {
  position: absolute;
  top: 50%;
  margin-top: -200px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 15;
  font-size: 18px;
  font-weight: 400;

}

#home-slider img {
  margin-top: 40px;
  border-radius: 0%;
  border:0px solid; 
  object-fit: fill;
}

#home-slider .caption h1 {

  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.caption .btn-start {

  font-size: 14px;
  font-weight: 600;
  padding:14px 40px;
  border: 1px solid;
  border-radius: 4px;
  margin-top: 40px;
}


.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.carousel-inner .item p {
  padding-left: 10%; 
  padding-right: 10%;
  font-size: 16px;

}
.container p {
  padding-left: 2%; 
  padding-right: 2%
}

.carousel-fade .carousel-inner .item:after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

.left-control, .right-control {
  position: absolute;
  top: 50%;
  height: 51px;
  width: 51px;
  line-height: 48px;
  border-radius: 50%;
  border:2px solid;  
  z-index: 20;
  font-size: 24px;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.left-control {
  left: -51px
} 

.right-control {
  right: -51px;
}

#home-slider:hover .left-control {
  left:30px
} 

#home-slider:hover .right-control {
  right:30px
}

#home-slider .fa-angle-down {
  position: absolute;
  left: 50%;
  bottom: 50px;
  display: inline-block;
  width: 24px;
  margin-left: -12px;
  font-size: 24px;
  line-height: 24px;
  z-index: 999;
  -webkit-animation: bounce 3000ms infinite;
  animation: bounce 3000ms infinite;
}


/*************************
********Service CSS*******
**************************/
.service-icon {
  border-radius: 44px;
  display: inline-block;
  font-size: 36px;
  height: 90px;
  line-height: 90px;
  width: 90px;  
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

#about-single-wrap {
  padding-top: 60px;
}

/**Зачернение при наведении***   
.our-services .col-sm-4:hover .service-icon {
  background-color: #333; 
}*****/

.our-services .col-sm-4 {
  border-right:1px solid #f2f2f2;
  border-bottom:1px solid #f2f2f2;
  padding-bottom: 50px;
}

.our-services .col-sm-4:nth-child(4), 
.our-services .col-sm-4:nth-child(5), 
.our-services .col-sm-4:nth-child(6) {
  border-bottom:0;
  padding-top: 60px;
}

.our-services .col-sm-4:nth-child(3), 
.our-services .col-sm-4:nth-child(6) {
  border-right:0;
}

.service-info h3 {
  margin-top: 35px;
}

#services .overlay {
  left: 0;
  right:0;
  bottom:-100%;
  height: 0;
  position: absolute;
  text-align: center;
  opacity:0;  
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#single-services {
  padding: 90px 0;
  position: relative;
}

#single-services img {
  width: 100%;
  margin-bottom: 10px;
}

#single-services .close-services-item {
  position: absolute;
  top: 30px;
  font-size: 34px;
  width: 34px;
  height: 34px;
  left: 50%;
  color: #999;
  margin-left: -17px;
}



.services-overview a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 20px;
  margin-right: 5px;
}

.services-overview a:hover {
  color: #f5f5f5;
}

.services-overview .services-expand {
  margin-top: -500px;
  margin-left: -500px;
}


/*************************
********About CSS*******
**************************/
#about-us {
  background-image: url(../images/about-bg.jpg);
  padding: 60px 0;
}

#about-us h2 {
  margin-top: 0;
}

#about-us .lead {
  font-size: 16px;
  margin-bottom: 10px;
}

#about-us h1 {
  margin-bottom: 30px;
}

.progress{
  height: 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
  margin-bottom: 25px;
}

.progress-bar{
  box-shadow: none;
  -webkit-box-shadow: none;
  text-align: right;
  padding-right: 12px;
  font-size: 12px;
  font-weight: 600;
}


.progress .progress-bar.six-sec-ease-in-out {
  -webkit-transition: width 2s ease-in-out;
  transition:  width 2s ease-in-out;
}

/*************************
********portfolio CSS*****
**************************/

#portfolio .container-fluid, 
#portfolio .col-sm-3  {
  overflow: hidden;
  padding: 0;
}

#portfolio .folio-item {
  position: relative;
}

#portfolio .overlay {
  left: 0;
  top: 0;
  bottom:-100%;
  width: 100%; 
  height: 100%;
  position: absolute;
  text-align: center;
  opacity:0;  
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.overlay .overlay-content {
  display: table;
  height: 100%;
  width: 100%;
}
.overlay .overlay-text {
  vertical-align: center;
  position: absolute;
  color: var(--doc_back1_color);
  padding: 10px;
  text-align: center;
  width: 100%;
}

.overlay-text2 {
  display: table-cell;
  vertical-align: left;
  position: relative;
  top: 0%; 
  left: 1%;
  color: var(--doc_text_color);
  padding: 15px;
  text-align: left;
  line-height: 1.5em;
  width: 90%;
  border-radius: 10px;
}

.overlay .folio-info {
  opacity: 0;
  margin-bottom: 7500px;
  margin-top: -75px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.overlay .folio-info h3 {
  margin-top: 0;
  color: #f5f5f5;
}

.img-responsive2 {
  display: block;
  height: auto;
  max-width: 100%;
  margin-top: 15px;
  }



.folio-overview a {
  font-size: 18px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0px;
  margin-right: 5px;
}


.folio-overview .folio-expand {
  margin-top: -500px;
  margin-left: -500px;
}

.folio-image, .folio-overview .folio-expand {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

#portfolio .folio-item:hover .folio-image {
  -webkit-transform: scale(1.5) rotate(-15deg);
  transform: scale(1.5) rotate(-15deg);
}

  .folio-image {
    position: relative;
    display: inline-block;
}

#portfolio .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.5em;
}

.folio-image img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

#portfolio .folio-item:hover .overlay {
  opacity: 0.8;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

#portfolio .folio-item:hover .folio-overview .folio-expand {
  margin-top: 0;
  margin-left:0;
}

#portfolio .folio-item:hover .overlay .folio-info {
  opacity: 1;  
  margin-bottom:0;
  margin-top:0;
}


#single-portfolio {
  padding: 90px 0;
  position: relative;
}

#single-portfolio img {
  width: 100%;
  margin-bottom: 10px;
}

#single-portfolio .close-folio-item {
  position: absolute;
  top: 30px;
  font-size: 34px;
  width: 34px;
  height: 34px;
  left: 50%;
  margin-left: -17px;
}

/*************************
*********Team CSS*********
**************************/
#team {
  padding-top: 0;
}

.team-members {
  margin-bottom: 25px;
}

.team-member {
  text-align: center;
  font-size: 14px;
}


#team .img-responsive {
  width: 100%;
}



.member-info h3 {
  margin-top: 35px;
}

.member-info h4 {
  font-size: 14px;
  margin-bottom: 15px;
}


/*************************
*******Features CSS*******
**************************/
#features {
  text-align: center;
  background-image: url(../images/features-bg.jpg);
}

#features i {
  font-size: 48px;
}

#features h3 {
  margin-top: 15px;
  font-size: 30px;
  margin-bottom: 7px;
}

#features .slider-overlay {
  opacity: 0.8;
}


/*************************
*****Pricing Table CSS****
**************************/
.pricing-table {
  text-align: center;
}

.price {
  font-size: 36px;
  line-height: 36px;
}

.price span {
  font-size: 14px;
  line-height: 14px;
}


.single-table ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.single-table ul li {
  line-height: 30px;
}

.single-table {
  padding: 20px 20px 20px;
  border: 1px solid;
  position: relative; /* Делаем родительский блок точкой отсчёта */  
  overflow: visible; /* Чтобы картинка могла выходить за границы */
}


.single-table h3 {
  height: 2.8em; /* Высота = 2 строки */
  line-height: 1.4em; /* Межстрочный интервал */
  overflow: hidden; /* Обрезает лишний текст */
  display: block; /* Гарантирует, что работает с `height` */
  margin-top: 0;
  padding: 0;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Стили для метки прайса*/
.corner-label {
  position: absolute;
  top: -10px; /* Выносит вверх */
  right: -10px; /* Центрируем по горизонтали */
  background-color: #ff5733; /* Красно-оранжевый фон */
  color: white; /* Белый текст */
  font-weight: bold;
  padding: 1%;
  height: 35px; 
  width: 40%; 
  border-radius: 10px; /* Закругленные углы */
  z-index: 10; /* Поверх остальных элементов */
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Стили для простой метки*/
.simple-label {
  position: absolute;
  top: -10px; /* Выносит вверх */
  right: 5px; /* Центрируем  */
  background-color: #ff5733; /* Красно-оранжевый фон */
  color: white; /* Белый текст */
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 10px; /* Закругленные углы */
  z-index: 10; /* Поверх остальных элементов */
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}


/* Эффект при наведении */
.corner-label:hover,
.simple-label:hover {
  transform: scale(1.2);  
  color: white; /* Белый текст */
}

/* Эффект при активации */
.corner-label:active,
.corner-label:visited,
.simple-label:active,
.simple-label:visited {
  color: white; /* Белый текст */
}


.fixed-height-list {
  height: 320px; /* Фиксированная высота */
  overflow-y: auto; /* Включение вертикальной прокрутки */
  border: 1px solid; /* Для наглядности можно добавить границу */
  padding: 1px;
  list-style-type: none;
  text-align: left;
  counter-reset: list-counter;
  border-radius: 10px; /* Закругленные углы */

}

.fixed-height-list li {
  counter-increment: list-counter;
  list-style: none;
  margin-left: 20px;
  line-height: 2em !important;
}



.fixed-height-list li::before {
  content: counter(list-counter) ". ";
  font-weight: bold;
}

   /* Стили для вложенных списков */
   .fixed-height-list ul {
    list-style-type: disc; /* Точки для вложенного списка */
    margin-left: 20px !important; /* Отступ слева для вложенного списка */
    padding-left: 0; /* Убираем дополнительный отступ */
    counter-reset: none; /* Отключаем сброс счетчика для вложенных списков */
}
.fixed-height-list ul li {
    counter-increment: none; /* Отключаем увеличение счетчика для вложенных списков */
    list-style: disc; /* Маркеры в виде точек для вложенных списков */
    margin-left: 10px !important; /* Отступ слева для вложенного списка */
		line-height: 1.2em !important;

}
.fixed-height-list ul li::before {
    content: none; /* Убираем нумерацию перед элементами вложенных списков */
}



.pricing-table .col-sm-6:not(:last-child) {
  margin-bottom: 20px;
}

/*************************
**********Blog CSS********
**************************/

.post-thumb {
  position: relative;
}

.post-icon {
  position: absolute;
  top:10px;
  right:10px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius:4px;
  text-align: center;
  font-size: 12px;
}

.post-meta {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.post-meta span {
  margin-right: 16px;
}

#post-carousel .carousel-indicators {
  bottom: 3px;
  left: 90%;
}

.blog-left-control, .blog-right-control {
  position: absolute;
  top: 45%;
  width: 30px;
  text-align: center;
  font-size: 36px;
}

.blog-left-control {
  left: 0;
}

.blog-right-control {
  right: 0;
}


.entry-header h3 a {
  line-height: 30px;
}

.entry-header .date, 
.entry-header .cetagory {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
}

.entry-header .date:after {
  content: "";
  position: absolute;
  left: 0;
  bottom:-22px;
  width: 20px;
  height: 3px;
}

.entry-content {
  font-size: 14px;
}

.load-more {
  display:block;
  text-align: center;
  margin-top: 70px;
}

.btn-loadmore {
  border: 1px solid;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 125px;
  text-transform: uppercase;
}


/*************************
**********Contact CSS*****
**************************/

#contact {
  padding-top: 45px;
  padding-bottom: 0;
}

#google-map {
  height: 350px;
}

#contact-us {
  background-image:url(../images/contact-bg.jpg);
  padding-bottom: 90px; 
}

#contact-us .heading {
  padding-top: 95px;
}

.form-control {
  background-color: transparent;
  height: 50px;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
  box-shadow: none;
}

.textarea.form-control {
  min-height: 180px;
  resize:none;
}

.form-group {
  margin-bottom: 30px;
}

.contact-info {
  padding-left:70px;
  font-weight: 300;
}

ul.address {
  margin-top: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info ul li {
  margin-bottom: 8px;
}



.footer {
  width: 100vw;
  position: absolute;
  left: 0;
  right: 0;
}

#footer .footer-top {
  position: relative;
  padding: 20px 0;
}

#footer .footer-bottom {
  position: relative;
  padding: 20px 0;
}

#footer .footer-bottom a:hover {
  text-decoration: underline;
}

#footer .footer-logo {
  display: inline-block;
}

