/*
Theme Name: My Custom Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme with ACF integration.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/    

html {
  scroll-behavior: smooth;
}

body{
	font-family: oswald;
	margin: 0px;
}
main {
	margin-top: 20px;
    overflow: hidden;
    max-width: 100vw;
	background-color: #f9f9f9;
	padding: 0px 15px;
}
h1{
	font-family: oswald;
	text-transform: uppercase;
    color: rgb(17, 17, 17);
    text-decoration: none;
    white-space: nowrap;
    line-height: 80px;
    letter-spacing: 0px;
    font-size: 72px;
	margin: 10px 0px;
}
h2{
	font-family: oswald;
	text-transform: uppercase;
    color: rgb(17, 17, 17);
    text-decoration: none;
    white-space: nowrap;
    line-height: 60px;
    letter-spacing: 0px;
    font-size: 52px;
	margin: 10px 0px;
}
h3 {
  font-size: 32px;
    color: rgb(17, 17, 17);
  margin: 10px 0px;
}
p{
	font-family: oswald;
	line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 20px;
	margin: 10px 0px;
	color: #3d3d3d;
}
.heder {
    position: fixed;
    width: calc(100% - 30px);
    top: 0;
    left: 0;
    background: rgb(255 255 255);
    transition: background 0.3s ease-in-out;
    padding: 10px 15px;
	z-index: 999;
	transition: 0.4s;
	box-shadow: 0px 0px 5px 3px rgb(0 0 0 / 2%);
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
.heder-box{
	max-width: 1100px;
	margin-left: auto;
    margin-right: auto;
	    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scrolled {
    background: rgb(255 255 255);
    padding: 5px 15px;
    backdrop-filter: blur(20px);
	box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
}
.menu-menu-container a{
	font-family: oswald;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 20px;
    margin: 10px 0px;
    color: #111111;
}
.menu-menu-container a:hover{
    color: #fd3a3a;
}
.wpcf7-submit:hover{
	background-color: #fff;
}
a {
    text-decoration: none;
}
.menu{
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
.menu li {
  list-style-type: none;
  margin-left: 30px;
}

.menu ul {
  margin-left: 0;
  padding-left: 0;
}
.box-40{
	width: 40%;
}
.box-50{
	width: 50%;
}
.box-60{
	width: 60%;
}
.contact-left-box{
	width: calc(40% - 15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 15px 0;
}
.contact-right-box{
	width: 60%;
}

@media screen and (max-width: 1100px) {
  .box-60, .box-50, .box-40 {
    width: 100%;
  }
}
	.animation-bounce{
        animation: bounce1 7s infinite ease-in-out;
    }
    .animation-bounce-2{
        animation: bounce2 8s infinite ease-in-out;
    }
    .animation-bounce-3{
        animation: bounce3 9s infinite ease-in-out;
    }
    @keyframes bounce1 {
        0% {
            transform: translatey(0vh);
        }
        20% {
            transform: translatey(1vh);
        }
        40% {
            transform: translatey(0vh);
        }
        70% {
            transform: translatey(2vh);
        }
        100% {
            transform: translatey(0vh);
        }
    }
    @keyframes bounce2 {
        0% {
            transform: translatey(1vh);
        }
        20% {
            transform: translatey(0vh);
        }
        40% {
            transform: translatey(2vh);
        }
        70% {
            transform: translatey(0vh);
        }
        100% {
            transform: translatey(1vh);
        }
    }
    @keyframes bounce3 {
        0% {
            transform: translatey(2vh);
        }
        20% {
            transform: translatey(1vh);
        }
        40% {
            transform: translatey(2vh);
        }
        70% {
            transform: translatey(0vh);
        }
        100% {
            transform: translatey(2vh);
        }
    }
    .section {
       display: flex;
       overflow-x: hidden;
    }
.slider{
	width: 100%;
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
	background-image: url(/wp-content/uploads/2025/01/slider_bg03.png);
	background-size: cover;
	align-items: stretch;
	justify-content: center;
	width: 100vw;
    position: relative;
    left: -15px;
}
@media screen and (max-width: 1100px) {
.slider {
    flex-direction: column-reverse;
}
}
.slider-text-box {
    background-image: url(/wp-content/uploads/2025/01/slider_shape_05.png);
    background-position: top left;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
	padding-left: calc((100vw - 1100px) / 2);
    width: calc(40% - (100vw - 1100px) / 2);
}
.slider-img-box{
	background-image: url("/wp-content/uploads/2025/01/slider_shape_09.png");
	background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
	overflow: hidden;
	padding-top: 30px;
}
.slider-img {
    max-width: 100%;
    margin: 9vw 20px;
    width: 60%;
}
@media screen and (min-width: 1800px) {
.slider-img {
    margin: 6vw 20px 6vw 20%;
    width: 50%;
}
}
@media screen and (max-width: 1100px) {
.slider-img {
    margin: 20px 10%;
        width: 80%;
}
.services {
    margin-top: 60px!important;
}
.slider-text-box{
    background-size: 0;
	padding: 0 15px;
	width: 90%;
}
}
.img-back-slider{
	position: relative;
	top: -100px;
    right: -50px;
}
.img-back{
	margin-top: -100%;
}
.contrast-text{
	text-align: left;
    line-height: 24px;
    letter-spacing: 0px;
    font-size: 18px;
    padding: 5px 30px 6px 15px;
    margin-bottom: 5px;
    margin-right: 5px;
    text-transform: uppercase;
	background: #fd3a3a;
	color: #fff;
	font-family: oswald;
	clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 50%, 100% 100%, 0 100%);
}
.carousel-container {
	position: relative;
	margin-top: 40px;
    margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
.carousel-container {
	padding: 0 50px;
}
}
@media screen and (max-width: 760px) {
.carousel-container {
	padding: 0 45px 0 15px;
}
	.services {
	width: 100vw;
    position: relative;
    left: -15px;
}
	.services h2{
		padding-left: 15px;
	}
}
.max-width {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  background: #fff;
  border-radius: 29px;
    box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-right: 20px; /* Расстояние между слайдами */
  justify-content: space-between;
}

.carousel-item:last-child {
  margin-right: 0;
}

.image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.read-more {
  padding: 10px 20px;
  background: linear-gradient(to right, #ff7e5f, #fd3a3a);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
	font-family: oswald;
   letter-spacing: 1px;
}

.read-more:hover {
  background: linear-gradient(to right, #fd3a3a, #ff7e5f);
}

.dots-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 40px;
  height: 10px;
  background: linear-gradient(to right, #ff7e5f, #fd3a3a);
  border-radius: 20px;
  background-color: #fe5c64;
}
.services {
    margin-top: 0px;
}
.carousel-wrapper {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.img-about-us{
	max-width: 500px;
	margin-left: -30px;
	filter: contrast(90%) grayscale(20%);
	width: 100%;
}
.img-about-us-osn{
	transform: translate(7vh, 100px);
	margin-top: -260px;
}
.about-us-box{
	display: flex;
}
@media screen and (max-width: 760px) {
.about-us-box{
	flex-direction: column;
}
}
.about-us-box{
	display: flex;
}
.about-us-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.about-us {
    background-color: #f1e8e0;
    padding: 60px 15px;
    margin: 160px 0 50px;
	box-shadow: 0px 3px 53px 7px rgb(0 0 0 / 7%);
	width: calc(100vw - 30px);
    position: relative;
    left: -15px;
}
@media screen and (max-width: 760px) {
.about-us{
	  margin: 200px 0 50px;
}
.about-us-box-right {
	margin-top: 80px;
}
.contact-left-box {
    padding: 0px;
}
}
.galery{
	
}
.contact-full-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
	background: linear-gradient(to right, #ff7e5f, #fd3a3a);
    padding: 15px;
    border-radius: 25px;
	box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
}
input, textarea{
	padding: 15px 20px;
    background-color: #e5e5e5;
    border: 0;
    margin: 10px 0px;
    border-radius: 10px;
    font-family: oswald;
    line-height: 21px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
    color: #3d3d3d;
	width: calc(100% - 40px);
}
input::placeholder {
  	font-family: oswald;
    line-height: 21px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
    color: #878787;
}
.map-box{
	overflow: hidden;
	border-radius: 15px;
}
iframe {
    border: 0;
	margin-bottom: -5px;
}
.contact h2{
	color: #fff;
}
.wpcf7-submit{
	cursor: pointer;
}
.contact, .galery {
    margin-top: 80px;
	position: relative;
}
.galery h2{
	margin-bottom: 20px;
}
textarea {
    height: 50px;
}
.form p{
	    display: flex;
    flex-direction: column;
    align-items: center;
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
.wpcf7{
	width: 100%;
}
.contact-right-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-box {
    width: 100%;
    padding: 380px 0 0 0;
    background-color: #ffffff;
    margin-top: -360px;
	box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
}
.corrupting {
    background-color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
.corrupting {
    flex-direction: column;
}
.corrupting p {
    text-align: center;
}
}
.corrupting p{
	max-width: 1100px;
	color: #fff;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 0;
}
@media screen and (min-width: 1700px) {
  .slider-img-box {
    width: 50%;
  }
  .slider-text-box {
    width: calc(50% - (100vw - 1100px) / 2);
  }
}
.logo {
    height: 80px;
}
.burger-menu {
        display: none;
        flex-direction: column;
        cursor: pointer;
		z-index: 999;
    }
    .burger-menu span {
        background: #000;
        width: 30px;
        height: 3px;
        margin: 5px 0;
        transition: 0.3s;
    }
    
    nav {
        display: flex;
		align-items: center;
    }
    
    @media (max-width: 760px) {
        .burger-menu {
            display: flex;
        }
		.menu {
    		display: flex;
    		justify-content: flex-end;
    		align-items: flex-start;
    		flex-direction: column;
    		gap: 30px;
			padding-left: 10px;
		}
        nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 250px;
            height: 100vh;
            background: white;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            transition: 0.3s;
            box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        }
        nav.active {
            right: 0;
        }
        .burger-menu.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .burger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .burger-menu.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
    }
.about-us-box-right p{
	margin-bottom: 30px;
}
.footer-text-box{
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 15px 20px 15px;
}
.footer-text-box p{
	font-size: 10px;
	margin: 0;
	line-height: 14px;
}
.contact-footer{
	background: linear-gradient(to right, #ff7e5f, #fd3a3a);
    padding: 20px 15px;
    border-radius: 25px;
    margin-bottom: 20px;
	box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
	display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.contact-footer a{
	color: #fff;
}
.contact-footer a:href{
	color: #e5e5e5;
}
.phone-menu {
    position: relative;
    display: inline-block;
	margin-left: 30px;
}

.phone-link {
    padding: 10px 20px;
    background: linear-gradient(to right, #ff7e5f, #fd3a3a);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: oswald;
    letter-spacing: 1px;
}
.phone-link:hover {
    background: linear-gradient(to right, #fd3a3a, #ff7e5f);
}
.phone-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    padding: 10px 20px;
    min-width: 150px;
	border-radius: 20px;
	transition: background 0.3s ease;
	box-shadow: 0px 0px 13px 6px rgb(0 0 0 / 8%);
}

.phone-dropdown a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: black;
}


/* Показываем выпадающий список при наведении */
.phone-menu:hover .phone-dropdown {
    display: block;
}

/* Скрываем на мобильных */
.mobile-only{
	display: none;
}
@media (max-width: 768px) {
    .phone-menu {
        display: none;
    }
		.mobile-only{
		display: block;
	}
	.phone-menu {
    	margin-left: 0px;
    }
	.contact-footer {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}
}
.icon-heder {
    margin-left: 5px;
    display: flex
;
    padding: 3px 3px 4px 4px;
    border-radius: 7px;
	color: #111111;
	    font-size: 20px;
}
.icon-heder-box {
	    margin-left: 27px;
	display: flex;
}