/*---------- Fonts  ----------*/
@charset UTF-8;
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


/*---------- General ----------*/
*{
	    margin: 0;
	    padding: 0;
	    box-sizing: border-box;
	    scrollbar-color: #283351 transparent;
	    scrollbar-width: thin;
	    /* border: 1px solid; */
	}
	::selection {
	    background: #359e41; 
	    color: #ffffff;
	}
	::-moz-selection {
	    background: #359e41; 
	    color: #ffffff;
	}
	::-webkit-scrollbar{
	    background-color: transparent;
	}
	::-webkit-scrollbar-tumb{
	    background-color: #283351;
	}
	body{
	    font-family: "Inter", sans-serif;
	    font-style: normal;
	    font-size: 16px;
	    font-display: swap;
	    background-color: #ececec;
	    color: #000000;
	    overflow-x: hidden;
	   }
	html, body{
	    height: 100%;
	    scrollbar-gutter: stable;
	}
	a{
	    text-decoration: none;
	    outline: none;
	    color: white;
	    cursor: pointer;
	}
	.container{
	    max-width: 1200px;
	    padding: 0 15px;
	    margin: 0 auto;
	}
	.header-center{
	    text-align: center;
	    font-size: 36px;
	    font-weight: 600;
	    padding: 15px 0 30px 0;
	    line-height: 130%;
	    color: #2c3550;
	}
	button{
	    background: transparent;
	    border: none;
	}
	
/*---------- Header ----------*/
header {
    background: #1a2239;
    padding: 10px 0;
    transition: top 0.2s ease-in-out;
    will-change: transform;
    position: relative;
    z-index: 5;
}
.header__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header__logo img {
    max-width: 100%;
}
#menu {
  position: fixed;
  padding: 30px;
  z-index: 100;
  right: -500px;
  top: 0;
  width: 320px;
  height: 100vh;
  background-color: #fff;
  border-left: 2px solid #00a3e0;
  transition: right 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
}
#menu.show {
  right: 0;
}
#burger-menu-button {
  cursor: pointer;
}
#burger-menu-button p{
	transition: 0.3s;
    background: #00A3E0;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
	gap: 10px
}
#burger-menu-button img{
	width: 15px;
}
.call-me a{
    transition: 0.3s;
    display: flex;
    margin-right: 10px;
    background: #61BF1A;
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.call-me a:hover{
    transition: 0.3s;
    background: #52a116;
}
.menu ul{
    line-height: 1.8;
}
.menu ul li{
    list-style: none;
}
.menu ul a{
    color: black;
    font-size: 24px;
	transition: .3s;
	font-weight: 600;
	padding: 0;
}
.menu ul a:hover{
    color: #00a3e0;
	transition: .3s;
	padding-left: 5px;
}
.menu-item a{
    color: #1a2239;
    transition: all 0.3s;
}
.menu-item a:hover{
    color: #00a3e0;
    transition: all 0.3s;
}
.menu-item{
    list-style: none;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.5;
    padding-left: 0;
    transition: all 0.3s;
}
.menu-item:hover{
    padding-left: 5px;
    transition: all 0.3s;
}
.call-me.call-me__mob {
    display: none;
}
.call-me.call-me__mob img{
    width: 18px;
}
.header__navigat {
    display: flex;
}
.custom {
    text-align: center;
    color: white;
}

/*---------- Header - Dublicate ----------*/
.duplicate-header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 55px;
    padding: 5px 0;
    background: #1a2239fa;
    box-shadow: 0px -5px 20px #0000008a;
}
.duplicate-header .custom{
    display: none;
}
.duplicate-header img{
    max-height: 45px;
}

/*---------- Home - Banner ----------*/
.main-page__banner {
    display: flex;
    position: relative;
    background: #1a2239;
    gap: 30px;
    max-width: 100%;
    z-index: -1;
}
.main-page__banner img{
    width: 100%;
}
.imgbanner-mob {
    display: none;
}
.banner-info {
    display: flex;
    padding-right: 15px;
    flex-direction: column;
    justify-content: center;
    line-height: 1.5;
    width: 40%;
    color: white;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.banner-info ul{
    margin-top: 10px;
    padding-left: 20px;
}
.banner-sticker {
    display: none;
    width: 100px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000; /* Убедитесь, что оверлей находится ниже меню */
}
#overlay.show {
  opacity: 1;
  visibility: visible;
}
body.lock-scroll {
  overflow: hidden;
}

/*---------- Home - Catalog ----------*/
.our-catalog__header {
    background: linear-gradient(0deg, rgba(40,51,81,1) 85%, rgba(26,34,57,1) 100%);
    position: relative;
    z-index: -2;
}
.banner-img {
    width: 100%;
}
.our-catalog__header .header-center {
    color: white;
    padding: 50px 0;
}
.diffrent-margin {
    margin-bottom: 25px !important;
}
.diffrent-inside-margin {
    margin-top: 25px !important;
}
            .our-catalog {
                background-color: white;
                padding: 20px 0;
                box-shadow: 2px 4px 20px rgb(0 0 0 / 5%);
            }
            .tabs {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                flex-wrap: nowrap;
            }
            .catalog-element {
                display: flex;
                text-align: center;
                cursor: pointer;
                padding: 10px;
                font-weight: bold;
                filter: grayscale(1);
                transition: all ease 0.2s;
                border-radius: 10px;
                width: 100%;
                border: 1px solid #359e41;
                flex-direction: column;
                align-items: center;
            }
            .catalog-element img {
                max-width: 350px;
                height: 200px;
            }
            .catalog-element:hover {
                filter: grayscale(0);
                transition: all ease 0.2s;
            }
			.catalog-element p{
				margin-top: 10px;
			}
            .catalog-element.active {
                filter: grayscale(0);
                transition: all ease 0.2s;
                z-index: 0;
            }
            .tab-element {
                display: none;
                margin-top: 10px;
            }
            .tab-element.active {
                min-width: 100%;
                padding-top: 50px;
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                position: relative;
                z-index: 1;
            }
			.catalog-element.active::after{
				position: absolute;
				content: '';
				background: white;
				width: 25px;
				height: 25px;
				bottom: -32px;
				transform: rotate(45deg);
				left: 47%;
				box-shadow: 0px 20px 20px rgb(0 0 0 / 5%);
			}
.tab__card{
    display: flex;
    flex-wrap: wrap;
    min-height: 260px;
    gap: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 370px;
    color: #2c3550;
    align-items: flex-start;
    position: relative;
    box-shadow: 2px 4px 20px rgb(0 0 0 / 5%);
}
.tab__card img{
	width: 100%;
}
.tc-fo__f {
    width: 90%;
    font-weight: 600;
    line-height: 130%;
}
.tc-fo__s {
    font-size: 70px;
    font-weight: 700;
}
.tc-fo__t {
    color: #666;
    max-width: 250px;
    font-size: 14px;
}
.tc-fo__btn,
.btn__price{
    border: none;
    padding-top: 62px;
    transition: all 0.3s;
    background: #007bff;
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
}
.tc-fo__btn:hover,
.btn__price:hover{
    background: #00baff;
    transition: all 0.3s;
}
.tc-oth__f,
.tc-oth__s {
    font-weight: 600;
    line-height: 130%;
}
.btn__more {
    background: transparent;
    margin-left: 5px;
    transition: all 0.3s;
    border: 2px solid #ccc;
    font-size: 15px;
    padding: 6px 0;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
}
.btn__more:hover{
    border: 2px solid #00a3e0;
    transition: all 0.3s;
}
.btn__more a{
    color: #1A2238;
    padding: 6px 20px;
}
            .catalor__left-side,
            .catalor__right-side{
                background: white;
                padding: 30px;
                border-radius: 20px;
            }
            .catalog__list {
                display: flex;
                margin-bottom: 20px;
                gap: 30px;
                height: 360px;
            }
            .catalor__left-side img {
                display: none;
                margin: 10px 0;
                max-width: 334px;
                height: auto;
                max-height: 220px;
            }
			.tab-element__big-image.active {
			    width: 334px;
			    height: 219px;
			}
            .catalor__left-side img.active {
                display: block;
            }
            .pagination {
                display: flex;
                justify-content: center;
                gap: 3px;
            }
            .pagination button {
                background-color: transparent;
                color: black;
                border: 1px solid #ccc;
                padding: 0 10px;
                cursor: pointer;
                transition: all 0.3s;
                border-radius: 5px;
            }
            .pagination button:hover {
                border: 1px solid #007bff;
            }
            .cl__more {
                margin-top: 20px;
                display: flex;
                justify-content: space-between;
            }
            .tc-fo__btn a {
                text-decoration: none;
                color: #fff;
            }
            .tc-fo__btn {
                background-color: #007bff;
                border: none;
                cursor: pointer;
            }
            .characteristics {
                margin-bottom: 40px;
            }
            .characteristics p span{
                color: #666
            }
            .characteristics p:last-child,
            .descriptions p:last-child{
                margin-top: 30px;
            }
            .catalor__right-side {
                overflow: auto;
            }
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.banner-info.show {
  opacity: 1;
  transform: translateX(0);
}


/*---------- Home - Services ----------*/
.services__wraper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.servcard__header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.servcard__header img{
    max-width: 60px;
}
.servcard__header p{
    padding-left: 20px;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0;
    line-height: 130%;
    color: #2c3550;
}
.servcard {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 100%;
    min-width: 48%;
    box-shadow: 2px 4px 20px rgb(0 0 0 / 5%);
}
.servcard__desc ul{
    color: #666;
    padding-left: 15px;
}
.servcard__desc li{
    line-height: 2;
}
.servcard__link {
    margin-top: 20px;
}
.servcard__link a{
    color: #00A3E0;
    font-weight: 600;
}

/*---------- About us - Page ----------*/
.about-us__top {
    padding: 50px 0 80px 0;
    background: #1a2239;
    color: #ccc;
    min-height: 350px;
}
.about-us__top p{
    line-height: 1.5;
}
.about-us__top .header-center{
    color: white;
    font-weight: 500;
}

.au__page-center {
    padding: 50px 0;
}

.au__production-volumes {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
}
.au__production-volumes .au-left{
    max-width: 600px;
}
.au__production-volumes .au-right{
    flex-direction: row;
    flex-wrap: wrap;
}
.au__production-volumes .stages{
    min-height: 0;
}
.au__production-volumes .stages .stages-head{
    margin-bottom: 0;
}
.au-list{
    margin: 20px 0;
}
.stages-list {
    min-height: 25px !important;
}
.stages-list .stages-head p{
    font-size: 15px !important;
}
.stages {
    min-height: 105px;
}
.stages-head {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
}
.au-list {
    display: flex;
    gap: 30px;
}
.au-left, .au-right, .au-center{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.stages-head p{
    padding-left: 15px !important;
    font-size: 18px !important;
    color: #1a2239 !important;
    font-weight: 600;
}
.stages p {
    padding-left: 55px;
    line-height: 1.3;
    color: #777;
    font-size: 15px;
}
.stages-head span{
    color: #009cd6;
    padding: 7px;
    border: 2px solid #009fda;
    border-radius: 50%;
    FONT-WEIGHT: 600;
}

.au-head {
    margin: 50px 0 30px 0;
}
.au-head p{
    color: #777;
}
.au-head p:first-child{
    color: #1a2239;
    font-weight: 600;
    font-size: 26px;
}
    
/*---------- Contacts - Page ----------*/
.blue-bg {
    padding: 50px 0 50px 0;
    background: #1a2239;
    color: #ccc;
    /* height: 350px; */
    margin-bottom: 50px;
}
.blue-bg .header-center{
    color: white;
    font-weight: 500;
}
.map-wrapper {
    margin-top: 50px;
    background: white;
}
.sales {
    margin-top: 30px;
	color: #1a2239;
}
.sales p:first-child{
    font-size: 21px; 
    color: #1a2239;
    font-weight: 500;
    margin-bottom: 15px;
}
.sales p a {
    color: #1a2239;
}
.sales span {
    color: #777;
}

/*---------- Zakup - page ----------*/
.attention {
    font-size: 21px;
    color: #1a2239;
    margin-bottom: 5px;
    font-weight: 500;
}
.sub-attention {
    margin-bottom: 10px;
    color: #009bd5;
}
.attention-list{
    color: #777;
    margin-top: 20px;
    padding-left: 25px;
    line-height: 1.4;
}
.zh__headline {
    max-width: 500px;
    line-height: 1.3;
}
.zh__subheadline {
    margin: 15px 0;
    color: white;
}
.zh__subheadline a{
    margin: 15px 0;
    color: #009bd5;
}
.zakup__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    margin-bottom: 80px;
}
.zakup__gallery img{
    max-width: 370px;
}

/*---------- Items - page ----------*/
.item-header.header-center {
    text-align: start;
    display: flex;
    align-items: center;
}
.history-back {
    font-size: 36px;
    color: white;
    padding: 0 5px;
    padding-bottom: 5px;
    border: 2px solid #00a3e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    margin-right: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.history-back:hover {
	background-color: #00a3e0;
	transition: all .3s;
}
.item-content {
    margin-top: -150px;
    width: 100%;
    display: flex;
    gap: 30px;
}
.item-image {
    width: 100%;
}
.item-image img{
    max-width: 100%;
}
.item-image {
    width: 100%;
}
.item-image img{
    max-width: 100%;
    border-radius: 5px;
    height: 100%;
    box-shadow:2px 4px 20px rgb(0 0 0 / 5%);
}
.item-desc {
    background:#fff;
    border-radius:5px;
    box-shadow:2px 4px 20px rgb(0 0 0 / 5%);
    padding:30px 40px;
    color:#666;
    width: 100%;
}
.id__head {
    color: #1A2238;
    font-weight: 500;
}
.id__text {
    margin: 50px 0;
}

/*---------- pererabotka - page ----------*/
.pererabotka__headline {
    max-width: 800px;
    margin-top: 20px;
}
.all-pageimg {
    width: 100%;
    margin-bottom: 50px;
}
.all-pageimg img{
    max-width: 100%;
    border-radius: 10px;
}
.pererabotka__attention,
.pererabotka__sub-attention{
    font-size: 16px;
    color: #444;
    line-height: 1.3;
    font-weight: normal;
}
.sub-attention.pererabotka__sub-attention {
    margin: 30px 0;
}

/*---------- Footer ----------*/
footer{
    margin-top: 50px;
}
.footer__content {
    background-color: #283351;
    padding: 100px 0;
}
.footer__content .container{
    display: flex;
    gap: 30px;
    justify-content: space-between;
	flex-wrap: wrap;
}
.footer__logo,
.footer__adress,
.footer__woring-time{
    color: white;
    max-width: 330px
}
.footer__woring-time{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.social.whatsapp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 500;
    /* display: none; */
}
.social.whatsapp a ion-icon.md.hydrated {
    font-size: 30px;
    backdrop-filter: blur(10px);
    color: #ffffff;
    background: #61bf1a;
    border: 1px solid #61bf1a;
    padding: 10px;
    border-radius: 50%;
    transition: all .3s;
}
.social.whatsapp:hover a ion-icon.md.hydrated {
    color: #ffffff;
    background: #00a3e0;
    border: 1px solid #ffffff;
    transition: all .3s;
}

/*---------- Under Footer ----------*/
#copyright {
    background-color: #1e2538 ; 
}
#copyright .container{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #ccc;
    padding-top: 30px;
    padding-bottom: 30px;
}
#copyright .container a:hover span{
    color: red;
}

/*---------- Popup ----------*/
.popup-form {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-content {
  background-color: #f9f9f9;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s forwards, fadeIn 0.3s forwards;
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #888;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: #555;
}
.popup-content h2 {
  margin-top: 0;
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
form {
  margin-top: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.form-group textarea {
  resize: vertical; /* Разрешить вертикальное изменение размера */
}
button[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
button[type="submit"]:hover {
  background-color: #00baff;
}
.btn__price {
  display: inline-block;
  margin-top: 20px;
}


/*---------- Media ----------*/
@media screen and (max-width: 1200px){
/*---------- Home - Services ----------*/  
    .catalog-element img {
        max-width: 210px;
    }
}

@media screen and (max-width: 992px){
/*---------- Home - banner ----------*/
    .header__navigat {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .banner-info {
        width: 100%;
    }
}

@media screen and (max-width: 768px){
/*---------- General part ----------*/    
    .header-center{
	    font-size: 24px;
	}
	
/*---------- Home - Navigation ----------*/
    .call-me.call-me__mob {
        display: block;
    }
    .call-me.call-me__pc {
        display: none;
    }
    .custom{
        display: none;
    }
    .header__navigat {
        display: flex;
        flex-wrap: nowrap;
        justify-content: start;
        gap: 0px;
    }
    
/*---------- Home - banner ----------*/
    .imgbanner-pc {
    display: none;
    }
    .imgbanner-mob {
        display: block;
    }
    .main-page__banner{
        flex-direction: column;
        gap: 20px;
        overflow: hidden;
    }
    .banner-info {
        padding: 0 15px;
        padding-bottom: 40px;
         width: 100%;
    }
    
/*---------- Home - catalog ----------*/    
    .tab-element.active {
        justify-content: center;
    }
    .catalog__list{
        flex-wrap: wrap;
        height: auto;
        gap: 15px;
    }
    .catalor__left-side,
    .catalor__right-side{
        width: 100%;
    }
    .catalor__left-side img {
        margin: 0 auto;
    }
    .catalor__right-side {
        max-height: 400px;
    }
    .catalog-element.active::after{
        display: none;
    }
    
/*---------- Home - Services ----------*/    
    .servcard {
        width: 100%;
    }
    .services__wraper{
        flex-wrap: wrap;
    }
    .tabs{
        flex-direction: column;
    }
    .catalog-element img {
        max-width: 350px;
    }    
    
/*---------- About us - Page ----------*/
    .stages {
        min-height: 0;
    }
    .au-list{
        flex-wrap: wrap;
    }
    .au__production-volumes {
        flex-wrap: wrap;
    }

/*---------- Items - page ----------*/
	.history-back {
    padding-bottom: 0px;
	}
	.item-content{
	    flex-wrap: wrap;
	}
	.item-image img{
	    height: auto;
	}
/*---------- Popup ----------*/    
    .popup-content {
        width: 90%;
        margin: 15% auto;
        padding: 20px;
    }
    .popup-content h2 {
      text-align: start;
    }
}

@media screen and (max-width: 450px){
    .popup-content {
    width: 95%;
    margin: 20% auto;
    padding: 16px;
  } 
}


@media screen and (max-width: 360px) {
  .popup-content {
    width: 100%;
    margin: 25% auto;
    padding: 12px;
  }
}



