
@font-face {
	src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
	font-family: 'Open Sans';
	font-weight: 700;
	font-style: normal;
}
@font-face {
	src: url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
	font-family: 'Open Sans';
	font-weight: 800;
	font-style: normal;
}

@font-face {
	src: url('../fonts/OpenSans-Italic.ttf') format('truetype');
	font-family: 'Open Sans';
	font-weight: 400;
	font-style: italic;
}
@font-face {
	src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
	font-family: 'Open Sans';
	font-weight: 400;
	font-style: normal;
}
@font-face {
	src: url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
	font-family: 'Open Sans';
	font-weight: 600;
	font-style: normal;
}

body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: #444444;
  font-size: 18px;
}

a {
  color: #e3ded4;
  text-decoration: none;
}

a:hover {
  color: rgb(73, 72, 72);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #999183;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: rgba(214, 209, 210, 0.8);
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: white;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(38, 38, 38, 0.8);
}





@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}






/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 10px;
  
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
 
  color:rgba(158, 158, 158, 0.9);
}
.navbar .active {
  color:  rgb(229, 229, 229);

}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: rgb(228, 211, 220);
  font-weight: 400;
  background: #626262;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: rgb(192, 190, 190);
  color:rgb(229, 0, 28, 0.8);
 
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
  
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 76, 76, 0.8);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;

  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: rgb(251, 250, 250);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3c3c3c;
  background-color: rgba(251, 250, 250, 0.7);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(251, 250, 250, 0.8);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: rgb(229, 0, 28, 0.8);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {

  background: url("../img/hero-bg.jpg") ;
  background-repeat: no-repeat;
  background-size: cover;

}


#hero:before {
  content: "";
 
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}
@media (min-width: 1200px) {
  #hero .container {
    position: relative;
    margin-top: 10px;
    padding-top: 50px;
    text-align: center;
  }
}

@media (max-width: 770px) {
  #hero .container {
    
    position: relative;
    margin-top: 10px;
    padding-top: 74px;
    text-align: center;
  }
}



#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}



#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}



@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 15px 60px 30px;
  overflow: hidden;
}

.section-title {
  padding: 10px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7f7e7e;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #FDD9B5;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}
@media screen and (max-width: 600px) {
  .section-title p {
    font-size: 20px;
    font-weight: 700;
  }
  
}

.container {
  padding-left: 24px;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(156, 154, 154);
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/

.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.cta h3 {
  color: rgb(251, 250, 250, 0.8);
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
  font-size: 0.95em;
}
@media (max-width: 600px) {
  .cta p {
    font-size: 0.7em;
    padding: 20px;
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #FDD9B5;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}


.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}


.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}




.ab_us {
 
  width: 100%;
   background: url("../img/ab_us.JPG") center center no-repeat; 
  /*background-color: rgb(168 164 152);*/
  background-size: cover;
  position: relative;
  }
  @media (max-width: 667px) {
    .ab_us {
      max-width: 100%;
      font-size: 0.7em;
      padding: 30px 0px;
    
    }
  }
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(44, 44, 44, 0.73);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: red;
  opacity: 1;
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;

}

.contact .info i {
  font-size: 20px;
  background: rgba(247, 230, 209, 0.779);
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #FDD9B5;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs админки
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(60, 60, 60);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: rgb(60, 60, 60);
  border-bottom: 1px solid rgb(60, 60, 60);
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: rgb(86, 81, 81, 0.7);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #FDD9B5;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgb(160, 140, 151, 0.7);
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: black;
  color: white;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}



#catnews {
  color: rgb(228, 211, 220, 0.9);
  
}
#catnews_1 {
  color: rgb(251, 251, 251, 0.9);
  font-size: 18px;
  font-weight: 100;
  
}

.form_add_dog{
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  text-align: left;

  margin:40px 0;
  padding: 20px;

}


.form_add_dog_1 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 6vw;
  display: inline-block;
  border: 1px solid rgb(228, 211, 220, 0.7);
  width: 90%;
  margin:40px 10px;
  padding: 40px 30px;
  
}

.form_reg {
  background: none;
  color: rgba(255, 255, 255, 0.9);
 
  text-align: center;

 
  display: block;

  width: 90%;
  margin:40px 10px;
  padding: 40px 30px;
  
}

/*--------------------------------------------------------------
# кнопки готовые 
--------------------------------------------------------------*/

.get-started-btn_fgoods1 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  text-align: center;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.9);
  width: 90%;
  margin: 15px 0px 60px 15px;
  
}
.get-started-btn_fgoods1 :hover {
  background: rgb(196, 183, 183);
  color:rgba(7, 7, 7, 0.9);
}
.get-started-btn_fgoods2 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  padding: 2px 5px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  width: 150px;
  margin: 15px;
}
.get-started-btn_fgoods2:hover {
  background: rgb(230, 226, 226);
  color:rgba(7, 7, 7, 0.9);
}
.get-started-btn_fgoods3 {
  color: #fff;
  border-radius: 2px;
  width: 100px;
  margin: 15px;
  background: none;
  white-space: nowrap;
  transition: 0.3s;

  text-align: center;
  display: inline;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.get-started-btn_fgoods3:hover {
  background: rgb(230, 226, 226);
  color:rgba(7, 7, 7, 0.9);
}

.get-started-btn_fgoods4 {
  color: #fff;
  border-radius: 2px;
  width: 100px;
  margin: 15px;
  background: none;
  white-space: nowrap;
  transition: 0.3s;

  text-align: center;
  display: inline;
  border: 1px solid rgba(255, 255, 255, 0.6);
}


.get-started-btn_adgo {
  color: #fff;
  border-radius: 4px;
  width: 200px;
  margin: 50px 0 10px 40px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  padding: 8px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  
}

.get-started-btn_adgo:hover {
  background: #999183;
  color: #f3a322;
}

.get-started-btn_showgo {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.get-started-btn_showgo:hover {
  background: rgb(165, 164, 162);
  color: rgb(58, 58, 58);
}

@media screen and (max-width: 568px) {
  .get-started-btn_showgo {
    color: #fff;
    border-radius: 4px;
    padding: 7px 10px 8px 10px;
   
    font-size: 12px;

  }
}



.get-started-btn_ss {
  color: #fff;
  border: none;
  color:rgba(255, 255, 255, 0.9);
  margin: -3px -10px 10px 0;
 
  padding: 8px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1em;
  text-align: right;
  display: inline-block;
  
}

.get-started-btn_ss:hover {
  
  color: #ec8484;
}



.get-started-btn {
  color: #fff;
  border-radius: 4px;
  width: 300px;
  
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  border: 1px solid #FDD9B5;
}

.get-started-btn:hover {
  background: rgb(165, 164, 162);
  color: rgb(58, 58, 58);
}

.get-started-btn_p {
  background: none;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: block;
  margin:  10px 20px 30px 20px;
  width: 40%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  
}

.get-started-btn_p:hover {
  background: #999183;
  color: #343a40;
}

.get-started-btn_11l {
  background: none;
  color:rgba(255, 255, 255);
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 1.1em;
  text-align: center;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.9);
  width: 95%;
  margin: 15px 0px 60px 15px;
  
}
.get-started-btn_11l:hover {
  background: rgb(196, 183, 183);
  color:rgba(7, 7, 7, 0.9);
}


.get-started-btn_4 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 2px 5px;
  
  font-size: 18px;
  font-weight: 400;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 80%;
  margin: 15px;
}
.get-started-btn_4:hover {
  background: rgb(196, 183, 183);
  color:rgba(7, 7, 7, 0.9);
}

@media (max-width: 850px) {
.get-started-btn_4 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 2px 5px;
  
  font-size: 16px;
  font-weight: 150;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 95%;
  margin: 15px;
}

.get-started-btn_p {
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: block;
  margin: 15px;
  width: 80%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin-top: 30px;
}
}


.get-started-btn_40 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 2px 5px;
  margin:15px auto;
  font-size: 16px;
  font-weight: 150;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 70%;
  
}
.get-started-btn_40:hover {
  background: rgb(196, 183, 183);
  color:rgba(7, 7, 7, 0.9);
}

.get-started-btn_41 {
  background: none;
  color:rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  padding: 2px 5px;
  margin:15px auto;
  font-size: 16px;
  font-weight: 300;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.9);
  width: 100%;
  
}
.get-started-btn_41:hover {
  background: rgb(196, 183, 183);
  color:rgba(7, 7, 7, 0.9);
}


.get-info {
  color: #fff;
  width: 350px;
  margin: 10px 0  20px auto;
  font-size: 14px;
  text-align: center;
 
}



#app {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

.filtered-list__input {
  padding: 4px 8px;
  border: 1px solid;
  border-radius: 4px;
}

.filtered-list__list {
  margin-top: 8px;
}

.filtered-list__item {
  margin-top: 4px;
}


.bt_ken {
  font-size: 0.3em;
  margin-right: 20px;
  font-weight: 500;
  color: black;
  
}



#cookie_note{
  display: none;
  position: fixed;
  bottom: 15px;
  left: 50%;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 20px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}

#cookie_note p{
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: black;
}

.cookie_accept{
  width:20%;
}
@media (min-width: 576px){
  #cookie_note.show{
      display: flex;
  }
}

@media (max-width: 575px){
  #cookie_note.show{
      display: block;
      text-align: left;
  }
}
#cook {
  
  position: fixed;
  margin: auto;
  bottom: 0;
  background-color: rgb(69, 63, 72);
  width: 100%;

  border-radius: 4px;
  transition: all 0.9s;
}



#cook_btn {
  text-align: center;
  padding: 5px 30px;
  font-size: 0.7em;
  color: rgb(245, 221, 203);
  border: 1px solid rgb(245, 221, 203);
  border-radius: 4px;
  margin: 2px;
  background: none;
}

.show {
  display: block;
}

.non_show {
  display: none;
  
}


 
/* Стили для скролла */
::-webkit-scrollbar {
	width: 6px;
} 
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}


/* Three columns side by side */
.column {
  float: left;
  width: 33.3%;
  margin-bottom: 16px;
  padding: 0 8px;
}

/* Display the columns below each other instead of side by side on small screens */
@media screen and (max-width: 650px) {
  .column {
      width: 100%;
      display: block;
  }
}




@media screen and (max-width: 1400px) {
  .search {
  display: block;
  
  padding: 0;
  margin: 0;
    
  }
}

.btn_search {
  background: none;
  border: none;
  color: rgb(250, 250, 250, 0.7);
  width: 250px;
  
}
.btn_search:hover {
  background: rgb(250, 250, 250, 0.7);
  color: rgba(27, 27, 27, 0.9);
  margin-left: 4px;
 
}

.col_sh {
    background: rgb(189, 188, 188);

    }

.card_all {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-around; 
    }

.card_full {
  width: 500px; 
  background: grey;
  color: black;
  background-size: cover;
  position: relative;
 
  padding: 30px 0;
  margin: 20px auto;

}   
@media screen and (max-width:1200px) {
  .card_full {
  width: 450px; 
  } 
}
@media screen and (max-width:1000px) {
  .card_full {
  width: 330px; 
  } 
}
@media screen and (max-width: 600px) {
  .card_full {
    width: 280px;
    display: block;
    text-align: center;
    margin: 10px auto;
  }
}
 
@media screen and (max-width: 330px) {
  .card_full {
    width: 280px;
  }
}
.card_full h6 {
  text-align: right;
  margin-right: 10px;

}
.card_i {
  color: rgb(223 223 223);
  font-size: 15px;
}



.card_ser {
  max-width: 100%; 
  padding: 40px;
  margin: 0;
  background: rgb(147, 146, 146, 0.8);
  box-shadow: 2px 0 30px rgba(21, 21, 21, 0.9);
  
}
.tel {
  padding: 0 0 0 20px;
  font-size: 14px;
  color: #484848;
}
.fs {
  font-size: 20px;
  background: #f7e6d1;
  color: #151515;
  text-align: center;
  float: left;
  width: 300px;
  height: 44px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border-color: #cdbba5;
  transition: all 0.3s;
}

.kn_let {
  margin: 10px;
  width: 200px;
  background: rgba(247, 230, 209, 0.9);
}

.contact .fr input:focus,
.contact .fr textarea:focus {
  border: 4px solid #f6b574;
  
}
.gal_ti {
  font-weight: 600;
}
@media  (max-width: 700px) {
  .gal_ti {
    font-weight: 600;
    font-size: 1.4em;
    
  }
}

@media screen and (max-width: 600px) {
  .gal_ti {
    font-weight: 600;
    font-size: 1.2em;
    
  }
}

.gal_ph {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
 
 
}

.gal_phmain {
  
  margin-left: 1px;
}

.gph {
  width: 70px;
  transition: 1s;
  
}
.gph:hover {
  transform: scale(2);
}


@media screen and (max-width: 800px) {
  .gph {
    width: 50px;
  }
}

.gph_1 {
  max-width: 400px;
 
  margin: 10px auto;

}


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

  .gph_1 {
    max-width: 300px;
    
    
  }
}



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

  .gph_1 {
    max-width: 250px; 
  }
  .gph {
    max-width: 80px; 
    margin: 5px;
  }
}

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

  .gph_1 {
    max-width: 180px; 
  }
  .gph {
    max-width: 50px; 
    margin: 5px;
  }
  .gph:hover {
    transform: scale(1.5);
  }
 
}

.gal_phother {
  text-align: center;
  margin-left: 1px;
}
.gal_te {
  margin: 0 auto;
  text-align: center; 
}

.tb {
  border: 0.5px solid #f7e6e1;
  width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
  overflow: auto;

}
@media screen and (max-width: 750px) {
  .tb {
    width: 230px;
     
  }
}
.tb_t {
  color: rgb(236 236 236);
  font-size: 0.7em;
  margin-bottom: 6px;
  margin-top: 12px;
  font-weight: 400;
 
}
.tb_t1 {
  color: rgb(236 236 236);
  font-size: 0.9em; 
  font-weight: 500;
  padding-left: 20px;
}

.btn_os {
  text-align: right;
  margin: 15px 5px 1px 50px;
}

.tb_btn {
  color: #fff;
  border-radius: 4px;
  width: 180px;
  
  padding: 7px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.tb_btn:hover {
  background: rgb(165, 164, 162);
  color: rgb(58, 58, 58);
}


.tb_btn_im {
  height: 50px;
  padding-left: 10px;
}
@media screen and (max-width: 750px) {
  .tb_btn, .tb_t {
    margin: 0 auto;
    text-align: center; 
  }
  .tb_t1 {
    margin: 10px auto;
    text-align: center;
  }
  .tb_btn_im {
    height: 30px;
    padding-left: 10px;
  }
  .btn_os {
    margin: 15px auto;
    text-align: center; 
  }
}
@media screen and (max-width: 700px) {
  #hero .container {
    padding-top: 50px;
  }
}

.img-fl {
  width: 400px;
 
}
.ph_omod {
  display: flex;
  padding: 20px;
  justify-content: space-around;
}

@media screen and (max-width: 500px) {
  .ph_omod {
    display: block;
    padding: 0;
  }
}
.psm_omod {
  display: block;
  text-align: center;
  margin: 30px 20px 0 10px;
  
}
.tit {
  font-size: 1.6em; 
  font-weight: 600; 
  text-align: center;
}
.tit_sm {
  color: rgb(25 25 25); 
  text-align: right; 
  margin-right: 30px; 
  margin-bottom: 2px;

}
.kn {
  text-align: right; 
  margin: 15px;
}
@media screen and (max-width: 500px) {
  .psm_omod {
    display: flex;
    text-align: center;  
  }
  .tit {
    font-size: 1em;
  }
  .tit_sm {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .kn {
    margin: 0 auto;
    text-align: center; 
  }
}
@media screen and (max-width: 400px) {
  .psm_omod {
  
    width: 250px;
    overflow: auto;
  }
}
.fi_1 {
  border: 1.2px solid #f7e6e1;
  width: 250px;
  overflow: auto;
  margin: 60px 0;
  
}
@media screen and (max-width: 500px) {
  .fi_1 {
    margin: 20px 0;
  }
}