

    html,body {
      font-family: 'Montserrat', sans-serif;     
      overflow-x: hidden;
      padding: 0;
      margin: 0;
    }

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;}



    
.title 
{position: relative;
z-index: 4;
display: block;
text-align: center;
margin-bottom: 80px;
margin-top: 80px;} 

.title h2 
{color: #191A1D;
font-size: 48px;
font-weight: 500;}
    
.sec_products 
{background:#FBFBFB;
width: 100%;
height: 100%;
position: relative;
z-index: 1;}  

.page_products
{background:#FBFBFB;
width: 100%;
height: 100%;
position: relative;
padding-top: 100px;
padding-bottom: 100px;
z-index: 1;}  

.sec_products::before
{display: block;
content: "";
position: relative;
z-index: 2;
background: url('images/backgroung_top.svg');
width: 100%;
height:538px;
margin-bottom: -450px;}

.wrapper
{position: relative;
z-index:3;
width: 80%;
margin:auto;}

.element-animation1 {
  opacity: 0;
	transform:translateY(50px);
}

[class*="element-animation"] {
  opacity: 0;  
  transition: opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}


.element-animation1 { transform: translateX(50px); }   
.element-animation2 { transform: translateY(50px); }  
.element-animation3 { transform: translateX(-50px); } 
.element-animation4 { transform:scale(0.8);} 
.element-animation5 { transform:scale(1.1);} 
.element-animation6 { transform:scale(0.8);} 


[class*="element-animation"].element-show {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
  
}

.product 
{background: #ffffff;
height: 550px;
width: 100%;
margin: 30px 0px;}

.product img 
{width: 96%;
height: auto;
margin-left: 2%;
margin-top: 2%;
}

.product h3 
{display: block;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;}

.product p 
{display: block !important;

}

.more-detail
{display: block !important;
height:70px !important;
width: 90%;
margin: 10px 5%;
}

.product button 
{background: none !important;
border:2px solid #EA5F2E;
display: block;
width: 90%;
height: 50px;
margin-left: 5%;
margin: 1px auto;}

.product button a 
{text-decoration: none;
color:#EA5F2E;}

.sec_products::after
{display: block;
content: "";
position: relative;
z-index: 2;
background: url('images/backgroung_bottom.svg');
width: 100%;
height:538px;
margin-top: -380px;
margin-bottom: -78px;}

.sec_services 
{width: 100%;
height:700px;
background:#F2F2F2;
padding-top:80px;
padding-bottom: 80px;}

.services
{width: 100%;

background:#F2F2F2;
padding-top:80px;
padding-bottom: 80px;}

.service 
{background: #ffffff;
width: 100%;
height:300px;
border:4px solid #1F3562;
padding-top: 60px;
transition: .5s;
display: block;
text-align: center;}

.service img 
{display: block;
text-align: center;
margin-left: auto;
margin-right: auto;}

.service img:first-child 
{display: block;}

.service img:last-child
{display:none;}

.service:hover img:first-child 
{display:none;}

.service:hover img:last-child
{display:block;
}

.service h3 
{color:  #4C4F56;
transition: .5s;
margin-top:20px;}

.service:hover
{background:#EA5F2E;
border:4px solid #EA5F2E;
transition: .5s;}


.service:hover h3
{color:  #ffffff;
transition: .5s;
margin-top: 10px;}

.projects 
{width: 100%;
height: 100%;
background:#FBFBFB;
padding: 30px 0px;}

.feedback_left 
{margin-right: 20%;}

.feedback_left h2 
{display: block;
text-align:center;}

.feedback_left p
{display: block;
text-align:center;
}

.feedback_left img 
{display: block;
margin-left: auto;
margin-right: auto;}


.form-container {
      background-color: #f9fafb; 
      padding: 30px;
      width: 100%;
      max-width:100%;
      box-sizing: border-box;
    }

    .feedback-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    
    .form-group {
      width: 100%;
    }

    .form-input {
      width: 100%;
      box-sizing: border-box;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-bottom: 1.5px solid #cbd5e1;
      border-radius: 2px;
      padding: 14px 16px;
      font-size: 14px;
      color: #334155;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
    }

   
    textarea.form-input {
      min-height: 110px;
      resize: vertical; 
    }

   
    .form-input::placeholder {
      color: #94a3b8; 
      opacity: 1;
    }

   
    .form-input:focus {
      border-color: #475569;
      border-bottom-color: #1e293b;
    }

    
    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 6px;
      margin-bottom: 12px;
      cursor: pointer;
      user-select: none;
    }

   
    .form-checkbox input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 16px;
      height: 16px;
      border: 1.5px solid #94a3b8;
      border-radius: 2px;
      background-color: #ffffff;
      cursor: pointer;
      position: relative;
      margin: 2px 0 0 0;
      flex-shrink: 0;
      outline: none;
      transition: background-color 0.2s, border-color 0.2s;
    }

    
    .form-checkbox input[type="checkbox"]:checked {
      background-color: #1e293b;
      border-color: #1e293b;
    }

   
    .form-checkbox input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 4px;
      height: 7px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

   
    .checkbox-text {
      font-size: 13px;
      color: #64748b;
      line-height: 1.4;
    }

   
    .submit-btn {
      width: 100%;
      background-color: #ffffff;
      border: 1.5px solid #334155; 
      border-radius: 3px;
      padding: 14px 0;
      font-size: 15px;
      font-weight: 600;
      color: #2e3d5c; 
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s;
      font-family: inherit;
      text-align: center;
    }

   
    .submit-btn:hover {
      background-color: #334155;
      color: #ffffff;
    }

    .submit-btn:active {
      transform: scale(0.99);
    }



/* popup */

.form-containerp {
      background-color: #f9fafb; 
      padding: 30px;
      width: 100%;
      max-width:100%;
      box-sizing: border-box;
    }

    .feedback-formp {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    
    .form-groupp {
      width: 100%;
    }

    .form-inputp {
      width: 100%;
      box-sizing: border-box;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-bottom: 1.5px solid #cbd5e1;
      border-radius: 2px;
      padding: 14px 16px;
      font-size: 14px;
      color: #334155;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      font-family: inherit;
    }

   
    textarea.form-inputp {
      min-height: 110px;
      resize: vertical; 
    }

   
    .form-inputp::placeholder {
      color: #94a3b8; 
      opacity: 1;
    }

   
    .form-inputp:focus {
      border-color: #475569;
      border-bottom-color: #1e293b;
    }

    
    .form-checkboxp {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 6px;
      margin-bottom: 12px;
      cursor: pointer;
      user-select: none;
    }

   
    .form-checkboxp input[type="checkbox"] {
      appearance: none;
      -webkit-appearance: none;
      width: 16px;
      height: 16px;
      border: 1.5px solid #94a3b8;
      border-radius: 2px;
      background-color: #ffffff;
      cursor: pointer;
      position: relative;
      margin: 2px 0 0 0;
      flex-shrink: 0;
      outline: none;
      transition: background-color 0.2s, border-color 0.2s;
    }

    
    .form-checkboxp input[type="checkbox"]:checked {
      background-color: #1e293b;
      border-color: #1e293b;
    }

   
    .form-checkboxp input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 4px;
      height: 7px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

   
    .checkbox-textp {
      font-size: 13px;
      color: #64748b;
      line-height: 1.4;
    }

   
    .submit-btnp {
      width: 100%;
      background-color: #ffffff;
      border: 1.5px solid #334155; 
      border-radius: 3px;
      padding: 14px 0;
      font-size: 15px;
      font-weight: 600;
      color: #2e3d5c; 
      cursor: pointer;
      transition: background-color 0.2s, color 0.2s;
      font-family: inherit;
      text-align: center;
    }

   
    .submit-btnp:hover {
      background-color: #334155;
      color: #ffffff;
    }

    .submit-btnp:active {
      transform: scale(0.99);
    }

.banner 
{margin-top: 80px;
position: relative;
z-index: 2;}

.banner img 
{width: 100%;
height: 100%;}

.banner h1 
{position: absolute;
font-size: 40px;
top:60%;
right: 10%;
z-index:5;}

.pwrapper 
{display: block;}    

.footer {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f5f6f8; 
  overflow: hidden;
  position: relative;
  width: 100%;
  min-height: 320px;
}


.footer-left {
  flex: 0 0 40%;
  padding: 50px 40px 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 2;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-description {
  color: #475467;
  font-size: 14px;
  line-height: 1.6;  
  font-size: 26px;
  margin-left: 20px;
}


.footer-right {
  flex: 0 0 60%;
  background-color: #1b315b; 
  color: #ffffff;
  padding: 50px 80px 50px 100px;
  position: relative;
  z-index: 1;
   min-height: 320px;
}


.footer-right::before {
  content: '';
  position: absolute;
  top:0;
  bottom: 0;
  left: -4px; 
  width: 80px;
  background-color: #1b315b;
  transform: skewX(-10deg);
  transform-origin: top left;
  z-index: -1;
   min-height: 322px;
   margin-bottom: -2px;
}


.footer-right::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px; 
  width:15px;
  background-color: #E5E5E5;
  transform: skewX(-10deg);
  transform-origin: top left;
  z-index: -2;
}


.footer-column {
  flex: 1;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;  
}


.footer-links {
  list-style: none;
  margin-left: -30px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}


.footer-contacts {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

.footer-contacts p {
  display: flex;            
  align-items: flex-start; 
  margin-bottom: 20px;
}

.footer-contacts img {
  flex-shrink: 0;         
  margin-right: 12px; 
  margin-bottom: 0; 
  margin-top: 4px;          
}

.footer-contacts p:last-child {
  margin-bottom: 0;
}


@media (max-width: 4000px) {

.hamburger-menu {
  display: none;
}
.menu-overlay {
  display: none;
}

}


@media (max-width: 991px) {

  header {
  background: #FFFFFF;
  width: 100%;
  z-index: 99 !important;
  height:100px;
  position:relative; 
  left: 0;
  top: 0;  
}

.hamburger {
	width: 30px;
	height: 30px;
	position:absolute;
	right: 3%;
	top:1%;
	z-index:888;
	overflow: hidden;
	margin-top:25px;
  margin-right: 20px;
	
}

.hamburger span {
	width: 30px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #222222;
	transition: all 0.5s;
}

.hamburger span:nth-of-type(2) {
	top: calc(50% - 5px);
}
.hamburger span:nth-of-type(3) {
	top: calc(50% + 5px);
}


.hamburger.active span:nth-of-type(1) {
  display: none;
}
.hamburger.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);  
}
.hamburger.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg); 
}


.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width:70%;
	height: 100%;
	padding: 15px;
    background: #FFFFFF;
	transform: translateX(-100%);
	transition: transform 0.5s; 
	z-index:777;
}

.overlay.active {
	transform: translateX(0);
}

.pa-doubleline-slide nav li {
   position: relative;
	 padding: 10px 5px;
   display:block !important;
}

.phone-link 
{display: block;
text-align: center;
margin:10px 0px;}

.title 
{position: relative;
z-index: 4;
display: block;
text-align: center;
margin-bottom: 40px;
margin-top: 40px;} 

.title h2 
{color: #191A1D;
font-size: 38px;
font-weight: 500;}

.product 
{background: #ffffff;
height:auto;
width: 100%;
margin: 30px 0px;}

.sec_services
{height:auto;}

.service 
{margin: 15px;}

.banner
{margin:2px;}

.banner h1 
{position: absolute;
font-size: 22px;
top:50%;
right:3%;
z-index:5;}

.service 
{margin: 5px !important;}

.picture img 
{display: none !important;}

.footer {
flex-direction: column;
}

.footer-left {
    padding-left: 40px;
    flex: 0 0 45%;
  }
  .footer-right {
    padding-left: 60px;
    padding-right: 40px;
    flex: 0 0 55%;
  }
  .footer-columns {
    gap: 40px;
  }
  
  .footer-left, 
  .footer-right {
    flex: 1 1 auto;
    width: 100%;
    padding:10px 20px;
  }

  
  .footer-right::before,
  .footer-right::after {
    display: none;
  }

  .footer-columns {
    flex-direction: column;
    gap: 35px;
  }

.footer-logo img 
{width: 90%;}

.footer-description 
{width: 95%;}

}    