@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap');
/*Обнуление*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight: 400;}
/*--------------------*/

/* Main style */

html{
    height: 100%;
}
body{
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

header{
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
 }
 .main-content{
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 1 0 auto;
 }
 footer{
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
 }


html, body{
    font-family: "Golos Text";
    background: #F0F5FB;
}

.container{
  max-width: 1300px;
  margin: 0 auto;

}

h2{
  color: #373C59;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  text-transform: uppercase;
}


/* лоадер отправки формы */

.loadercirclediv {
    width: 50px;
    height: 50px;
}

.loadercircle {
    animation: 2s linear infinite svg-animation;
}

@keyframes svg-animation {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg)
    }
}

.circlemail {
    animation: 1.4s ease-in-out infinite both circle-animation;
    display: none;
    fill: transparent;
    stroke: #006;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 280;
    stroke-width: 10px;
    transform-origin: 50% 50%;
}

@keyframes circle-animation {
    0%, 25% {
        stroke-dashoffset: 280;
        transform: rotate(0);
    }

    50%, 75% {
        stroke-dashoffset: 75;
        transform: rotate(45deg);
    }

    100% {
        stroke-dashoffset: 280;
        transform: rotate(360deg);
    }
}

input[type=file]::file-selector-button{
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
  
input[type=file]::file-selector-button{
    color: #373C59;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
    font-family: "Golos Text";
    font-weight: 700;
    line-height: 130%; /* 23.4px */
    background: #F0F5FB;
    box-shadow: 6px 6px 15px 0px rgba(144, 147, 151, 0.90), -6px -6px 12px 0px rgba(255, 255, 255, 0.90), 6px -6px 12px 0px rgba(144, 147, 151, 0.20), -6px 6px 12px 0px rgba(144, 147, 151, 0.20), -1px -1px 2px 0px rgba(144, 147, 151, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
    padding: 14px 26px;
    border-radius: 10px;
    margin: 20px;
    cursor: pointer;
}

h3{
    color: #373C59;
    font-family: "Golos Text";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    }

/* Header */

header{
    width: 100%;
}

.header.hide{
  transform: translateY(-140px);
  box-shadow: none;
}



.header{
  z-index: 3;
  position: fixed;
  width: 100%;
  transition: transform .1s linear;
}


.header-top{
  background-color: #18154B;

}

.header-bottom{
  background: #F0F5FB;
  -webkit-box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);

}

.topmenu li {
  float: left;
}

.topmenu li a:hover {
  color: #18154B;
}

.topmenu li:first-child {
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 0 0 5px;
}

.topmenu li a {
  display: block;
  padding: 20px 10px 15px 10px;
  text-decoration: none;
  line-height: 40px;
}

.topmenu ul {
  display: none;
  position: absolute;
  list-style: none;
  margin-left: -3px;
  padding: 0;
  overflow: hidden;
}

.topmenu ul li {
  float: none;
}

.topmenu li:hover > ul {
  display: block;
  background: #F0F5FB;
  border-top: 0;
  
  -webkit-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
  
  -webkit-box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 21px 20px 6px rgba(0, 0, 0, 0.27);
}

.topmenu li:hover > ul li:hover {
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}

.topmenu li li a:hover {
  background: #232E75;
  color: #F0F4F7;
}

.topmenu ul li:last-child a,
.topmenu ul li:last-child a:hover {
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}

.submenu {
  transform: scaleY(0);
  transform-origin: top;
  animation: slideDown 0.2s ease-out 0.2s forwards;
}

.dropdown:hover .submenu {
  display: block;
}

.submenu-item {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .submenu-item:nth-child(1) {
  animation: fadeIn 0.3s ease 0.3s forwards;
}

.dropdown:hover .submenu-item:nth-child(2) {
  animation: fadeIn 0.3s ease 0.4s forwards;
}

.dropdown:hover .submenu-item:nth-child(3) {
  animation: fadeIn 0.3s ease 0.5s forwards;
}

.dropdown:hover .submenu-item:nth-child(4) {
  animation: fadeIn 0.3s ease 0.6s forwards;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}



@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }

}






.header-contact{
  height: 65px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.header-left{
  display: flex;
  gap: 25px;
  align-items: center;
}

.header-right{
  display: flex;
  align-items: center;
}

.header-contact a{
  color: #F0F5FB;
}


.header-row{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 75px;

}

.header-main{
  display: flex;
  align-items: center;
}


.header-email{
  display: flex;
  gap: 10px;
}

.header-email img{
  width: 20px;
}

.header-telephone{
  display: flex;
  gap: 10px;
}

.header-telephone img{
  width: 20px;
}

.header-adress{
  display: flex;
  gap: 10px;
}

.header-adress img{
  width: 22px;
  height: 18px;
}

.header-info{
  display: flex; 
}

.header-info img{
  width: 35px;
}



.header-nav{
  display: flex;
  position: relative;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 50px;
  color: #373C59;
  font-weight: 500;
}

.header-nav a{

  transition: all 0.3s;
  color: #373C59;
}

.header-nav a:hover{
  color: #232E75;
}
.header-nav a:visited{
    color: #373C59;
}

.header-logo{
  display: flex;
  flex: 0 0 auto;
}




.header-logo img{
    width: 150px;
}

.topmenu{
  display: flex;
  gap: 50px;
}
/*--------------------*/

/* Navigation */

.navigation{
  margin-top: 180px;
}

.navigation-row{
    display: flex;

}

.navigation-menu{
  display: inline-flex;
}

.navigation-ul{
  display: inline-flex;
  gap: 5px;
}

.navigation-ul a:visited{
  color: #5B5B5B;
}

.navigation-ul a:hover{
  color: #5B5B5B;
}

.navigation-ul li:first-child{
  font-weight: 600;
}

/*--------------------*/


/*Main*/

.main-content{
    margin-top: 60px;
  margin-bottom: 90px;
}

.main-content h2{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}


.catalog-row-top{
    display: flex;
    justify-content: space-around;
    gap: 39px;
  }
  
  .catalog-row-bottom{
    display: flex;
    justify-content: center;
    gap: 39px;
  }
  
  .catalog-style{
      position: relative;
      width: 407px;
      height: auto;
      display: flex;
      padding: 30px 30px;
      border-radius: 10px;
      background: #F0F4F7;
      box-shadow: 7px 7px 18px 0px rgba(168, 171, 173, 0.90), -7px -7px 14px 0px rgba(255, 255, 255, 0.90), 7px -7px 14px 0px rgba(168, 171, 173, 0.20), -7px 7px 14px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
      background-image: url(/img/Ellipse.svg);
      -webkit-background-size: contain;
      -moz-background-size: contain;
      -o-background-size: contain;
      background-size: contain;
      background-repeat: no-repeat;
      margin-bottom: 50px;
      transition: transform 0.3s, box-shadow 0.3s;
  
  }
  
  .catalog-style:hover{
    transform: scale(1.05);
    box-shadow: 20px 20px 50px 0px rgba(168, 171, 173, 0.90), -20px -20px 40px 0px rgba(255, 255, 255, 0.90), 20px -20px 40px 0px rgba(168, 171, 173, 0.20), -20px 20px 40px 0px rgba(168, 171, 173, 0.20), -1px -1px 2px 0px rgba(168, 171, 173, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
  }
  
  .catalog-content p{
    padding-top: 12px;
    padding-left: 25px;
    color: var(--unnamed, #303239);
    font-size: 16px;
    font-weight: 600;
    line-height: 130%; /* 23.4px */
  }
  
  
  .catalog-plastini img{
    width: 195.355px;
    height: 106.914px;
    margin-left: -22px;
  }
  
  
  .catalog-plastini p{
    padding-left: 0px;
  }
  
  .catalog-block img{
    margin-left: -22px;
  }
  
  .catalog-block p{
    padding-left: 0px;
  }
  
  
  .catalog-razbor img{
    padding-top: 12px;
  }
  
  .catalog-nasos p{
    padding-top: 22px;
  }
  
  .catalog-nasos img{
    width: 166px;
      height: 110px;
      margin-left: -15px;
  }
  
  
  
  
  .catalog-content span{
    
      color: var(--unnamed, #303239);
      font-size: 18px;
      font-weight: 600;
      line-height: 130%; /* 23.4px */
  }
  

/*Анимация*/


/* Анимация для появления слева */
@keyframes slideFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Анимация для появления справа */
@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Анимация для появления с изменением прозрачности */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slide-left {
  animation: slideFromLeft 1s ease;
}

.slide-right {
  animation: slideFromRight 1s ease;
}

.fade-in {
  animation: fadeIn 1s ease;
}

.element-animation {
  /* Скроем элемент в начальном состоянии */
  opacity: 0;
  transform: translateY(10px);
}

.element-animation.element-show {
  opacity: 1;
  transition: all 0.5s;
  transform: translateY(0%);
}

.message-row-error.open {
  left: 0;
  right: initial; /* Сбрасываем значение right при открытии */
}

.message-row-error.close {
  left: initial; /* Сбрасываем значение left при закрытии */
  right: 0;
}

.message-row-ok.open {
  left: 0;
  right: initial; /* Сбрасываем значение right при открытии */
}

.message-row-ok.close {
  left: initial; /* Сбрасываем значение left при закрытии */
  right: 0;
}




/*--------------------*/

@media screen and (max-width: 1024px) {

  .container{
    max-width: 1024px;
    margin: 0px 15px 0px 15px;
    

}

.catalog-row-top{
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.catalog-style{
  margin-bottom: 0px;
}

.catalog-row-bottom{
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}


}



@media screen and (max-width: 425px) {
  .catalog-style{
    width: 305px;
    padding: 15px 10px;
}

.catalog-content p{
    font-size: 14px;

}

.catalog-plastini img {
    width: 151.355px;
    height: 76.914px;
    margin-left: -8px;
    margin-top: 10px;
}

.catalog-nasos img {
    width: 148px;
    height: 115px;
    margin-left: 1px;
}






}