@font-face {
  font-family: "Halvar MD";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy Light";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "HalvarBreit Lt";
  src: url("../fonts/OpenSans-Regular.eot");
  src: url("OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
          color: black;
}

::-moz-selection {
  background: #0943AC;
  color: #fff;
}

::selection {
  background: #0943AC;
  color: #fff;
}

::-moz-selection {
  background: #0943AC;
  color: #fff;
}

body {
  font-family: "HalvarBreit Lt", sans-serif;
}



header {
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    padding: 40px 60px 0;
    background: transparent;
    z-index: 10;
    position: relative;
}

a {
  text-decoration: none;
  color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

p {
  margin-top: 0;
  margin-bottom: 45px;
  padding: 10px;
}

img {
  max-width: 100%;

}

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  overflow-y: auto;
  position: relative;
}

h2 {
  font-size: 30px;
  font-family: "Halvar MD", sans-serif;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
}

h3 {
  margin-bottom: 0;
  margin-top: 0;
}

.conteiner {
  max-width: 1350px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  width: 100%;
}

.custom-select {
  display: block;
  font-size: 16px;
  color: white;
  width: 100%;
  max-width: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  border: none;
  background-color: #BFBFBF;
  outline: 0px;
  padding: 5px;
  border-radius: 25px;
}

.menu {
  width: 100%;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:hover {
  border: none;
}

.custom-select:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0px;
}

.custom-select:focus-visible {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0px;
}

.custom-select option {
  padding: 10px;
}
*[dir=rtl] .custom-select, :root:lang(ar) .custom-select, :root:lang(iw) .custom-select {
  background-position: left 0.7em top 50%, 0 0;
  padding: 0.6em 0.8em 0.5em 1.4em;
}

.lang-select {
  width: 77px;
}

/* .dis-none {
  display: none;
} */

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.anim-d-1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.anim-d-2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.anim-d-3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.anim-d-4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.anim-d-5 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.anim-d-6 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.anim-d-7 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.anim-d-8 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.anim-d-9 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}


.burger-menu {
  width: 30px;
  height: 30px;
  display: none;
  position: relative;
  z-index: 99;
}
.burger-menu span {
  width: 100%;
  height: 3px;
  background-color: black;
  position: absolute;
  top: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.burger-menu span:before {
  content: "";
  position: absolute;
  top: -8px;
  width: 100%;
  height: 3px;
  background-color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.burger-menu span:after {
  content: "";
  position: absolute;
  top: 8px;
  width: 100%;
  height: 3px;
  background-color: black;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.burger-menu.active span {
  background-color: transparent;
}
.burger-menu.active span:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 0;
}
.burger-menu.active span:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 0;
}

.pl-big {
  padding-left: 60px;
}

.logo {
  font-size: 30px;
  color: #0943AC;
  font-family: "Muller Bold", sans-serif;
}

.menu a {
  margin-right: 40px;
  font-size: 20px;
  position: relative;
}
.menu a.active {
  font-weight: 800;
  color: black;
}
.menu a.active:after {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  background: black;
}
.menu a:after {
  content: "";
  width: 0px;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: -5px;
  left: calc(50% - 21px);
}
.menu a:hover {
  color: black;
}
.menu a:hover:after {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  background: black;
}
.menu a:last-child {
  margin-right: 0;
}

.col-50 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.main{
  background-image: url(../img/cdzc_1.png);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.main-img {

  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-header h1 {
  font-size: 58px;
  color: #000000;
  font-family: "Muller Bold", sans-serif;
  margin-top: 0;
  margin-bottom: 20px;
}
.main-header p {
  color: #000000;
  font-size: 32px;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
          text-align: center;
}

.main-eggs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 85px;
  margin-bottom: 30px;
}

.main-egg {
  background: #FFFFFF;
  -webkit-box-shadow: -8px 8px 20px rgba(239, 134, 62, 0.25);
          box-shadow: -8px 8px 20px rgba(239, 134, 62, 0.25);
  border-radius: 12px;
  padding: 30px 20px;
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
      margin: 20px;
}
.main-egg p {
  font-size: 18px;
}

.egg_col1{
  width: 30%;
}

.egg_col2{
  width: 70%;
}

.egg_col2 h3{
font-size: 48px;
font-weight: 700;
line-height: 1;
}

.egg_text p{
  font-size: 24px;
}

.egg_col2div{
  display: flex;
  align-items: center;
}

.egg-head {
  font-size: 24px !important;
  font-family: "Muller Bold", sans-serif;
}

.egg-head-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.egg-head-img img {
  margin-right: 15px;
}

.sub-head-p {
  font-size: 40px;
  font-family: "Muller Bold", sans-serif;
}

.about {
  /* overflow-y: hidden; */
  background-color: white;
}

.about-text  {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
      color: #f3f3f3;
      position: relative;
}

.about-text .text-wrap::-webkit-scrollbar {
  display: none
}


.about-text h2 {
  margin-bottom: 30px;
  color: #e45826;
}
.about-text .text-wrap {
  max-width: 90%;
  overflow-y: scroll;
  height: 100%;
}
.about-text p {
  font-size: 21px;
}

.round {
  width: 540px;
  height: 540px;
  background: #BFBFBF;
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  left: -12%;
  bottom: -33%;
}

.engn-wrap {
  background: white;
width: 80%;
margin-left: auto;
position: relative;
overflow: hidden
}

.block2 {
  top: -31%;
right: -13%;
left: auto !important;
}

.radiussrv {
  width: 540px;
height: 540px;
background: #EABF0F;
position: absolute;
border-radius: 50%;
right: -12%;
bottom: -30%;
}

.engn {
  padding-top: 190px;
  height: 100%;
}

.text_block1 h3 {
  color: #000000;
}

.text_block1 p {
  color: #000000;
  font-size: 15PX;
}

.engn-text h2 {
  color: #000000;
  margin-bottom: 25px;
}

.blockimg {
  position: absolute;
  left: 10%;
  z-index: 10;
  bottom: 2%;
}

.radiuscat {
  position: absolute;
height: 236px;
width: 236px;
background: #BFBFBF;
border-radius: 50%;
left: -5%;
top: -10%;
z-index: 0;
}

ul, ul li, li strong {
  color: black;
}

.engn-wrap .blocksmall {
  position: absolute;
  height: 495px;
  width: 399px;
  background: #BFBFBF;
  border-radius: 50%;
  left: -8%;
  bottom: -39%;
  z-index: 0;
}

.services-text.pl-big::-webkit-scrollbar {
  display: none
}
.engn-text {
  width: 70%;
margin: auto;
padding-top: 50px;
}

.textimg {
  display: flex;
align-items: center;
margin-bottom: 20px;
}

.textimg img {
  margin-right: 10px;
}

.about-img {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/Vector.png);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
}

.logo a{
  height: 100px;
  width: 175px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.structure {
  padding-left: 130px;
  padding-right: 130px;
  padding-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../img/Polygon_1.png);
  background-repeat: no-repeat;
  background-size: contain;
          background-position: right bottom;
}

.structure-text {
  max-width: 60%;
  position: relative;
}
.structure-text h2 {
  margin-bottom: 75px;
}

.lang-eng {
  color: white;
}

span {
  color: black;
}

.des-h2 {
  font-size: 22px;
  margin-bottom: 80px;
}

.call5 ul li, .call5 .h3, .products h2, .products h2 span {
  color: #000000;
}

.call5 {
  width: 100%;
  display: flex;
}

.call5, .col1 ul {
  padding-left: 13px;
}

.call5 .h3{
  font-size: 24px;
font-weight: bold;
}

.call5 ul li{
  font-family: "Gilroy Light",sans-serif;

}

.call5 .col1 {
  padding-right: 15px;
  width: 20%;
}

.products h2 span {
  display: block;
  font-size: 42px;
}

.structure-serv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.serv-card {
  background: #FFFFFF;
  -webkit-box-shadow: -8px 8px 47px rgba(239, 134, 62, 0.25);
          box-shadow: -8px 8px 47px rgba(239, 134, 62, 0.25);
  border-radius: 30px;
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
  position: relative;
  padding: 95px 45px 30px;
}
.serv-card h3 {
  font-size: 34px;
}
.serv-card ul {
  font-size: 20px;
  padding-left: 15px;
}
.serv-card ul li {
  margin-bottom: 15px;
}

.img-abs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.img-abs img {
  width: 50px;
}

.service-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          justify-content: center;
  flex-basis: 50%;
  background: #FFFFFF;
}

.service-img img {
  max-height: 100%;
  width: calc(50% - 15px);
  margin-bottom: 30px;

}

.text1 {
  position: absolute;
max-width: 600px;
background: #EABF0F;
left: -30%;
bottom: 3%;
padding: 20px 15px;
font-size: 20px;
}

.services-text {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-right: 80px;
  padding-top: 170px;
position: relative;  
overflow-y: scroll;
}

.number{
  display: flex;
flex-wrap: wrap;
color: white
}

.services-text h2 {
  margin-bottom: 30px;
  color: white;
}


.service-imgpng {
display: flex;
flex-wrap: wrap;
width: 75%;
justify-content: space-between;
}

.serv-list {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  padding-right: 15px;
}

.serv-list .img-abs img {
  width: 40px;
  min-width: 40px;
}
.serv-list p {
  font-size: 24px;
  margin-left: 20px;
  margin-bottom: 0;
}

.products {
  padding-right: 60px;
  padding-left: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
        align-items: center;
          margin-top: 190px;
          background: #fff;
}
.products h2 {
  margin-top: 30px;
  margin-bottom: 60px;
  text-align: center;
}

.products-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 1.33333%;
}
.products-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFFFFF;
  -webkit-box-shadow: -8px 8px 20px rgba(239, 134, 62, 0.25);
          box-shadow: -8px 8px 20px rgba(239, 134, 62, 0.25);
  border-radius: 12px;
  padding: 30px;
  -ms-flex-preferred-size: 24%;
      flex-basis: 24%;
  font-size: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
color: #EF863E;
}
.products-wrap a img {
  margin-right: 20px;
}
.products-wrap a:hover {
  background: #EF863E;
  color: #fff;
}

.contacts {
  padding-right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
  margin-top: -140px;
}

.cont-text {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 50px;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.cont-text .img-abs {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 30px;
}
.cont-text .img-abs img {
  width: 60px;
}
.cont-text a:hover {
  color: #EF863E;
}

.cont-map {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.contats-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}

.contats-info h2 {
 margin-bottom: 60px;
 color: black;
 font-size: 45px;
}

.contats-info h2::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 5px;
  background-color: #f67d30;
  left: 0;
  bottom: -30px;
}

.cont-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.left_contact {
  width: 50%;
}

.right_img {
  width: 50%;
  position: relative;
}

.cont-map iframe {
  width: 100%;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  margin-top: -140px;
}

.serv_co {
  background-image: url(../img/backcomp.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  max-height: 50%;
  background-color: white;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #73737396;
}

.service-im {
  background-color: white;
    max-width: 80%;
    margin-top: 40px;
    text-align: center;
}

.serv_co h1 {
  font-size: 60px;
  color: white;
  position: relative;
}

.service-im p {
  font-size: 20px;
}

.production {
  flex-direction: column;
  background-color: white;
  align-items: center;
}

.left_prod {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.right_prod {
  width: 50%;
}

.production .conteiner {
  flex-wrap: wrap;
}

.conteiner h1 {
  flex-wrap: wrap;
  width: 100%;
  font-size: 50px;
  margin-bottom: 75px;
  position: relative;
}

.conteiner h1::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 5px;
  background-color: #f67d30;
  left: 0;
  bottom: -30px;
}

.treul_left {

}

.cub_right {

}

.prod {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.prod img {
  width: 175px;

}

.prod span {
  color: #f67d30;
  font-weight: bold;
  font-size: 30px;
  margin-right: 5px;
}

.prod p {
  font-size: 28px;
  margin-bottom: 0;
  margin-left: 15px;
}

.prod_img {
  background-color: #494f56;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.back_black {
  position: absolute;
  background-color: black;
  width: 20%;
  height: 100%;
  right: 0;
}

.orang_tr {
  position: absolute;
  background-color: #e45826;
  width: 160px;
  height: 160px;
  right: -80px;
  transform: rotate(45deg);
  bottom: 8%;
}









@media (min-width: 1400px) {
  section {
    height: calc(100vh - 140px);
  }
}
@media (max-width: 1700px) {
  .main-header h1 {
    font-size: 70px;
  }

  .about-text div {
    max-width: 95%;
  }

  .structure-text {
    max-width: 70%;
  }

  .serv-card {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
    padding: 90px 30px 30px;
  }

  .serv-card h3 {
    font-size: 28px;
  }

  .serv-card ul {
    font-size: 18px;
  }

  .serv-list p {
    font-size: 20px;
    padding-top: 20px;
  }

  .products-wrap a {
    font-size: 20px;
  }

  .products-wrap a img {
    max-width: 80px;
  }

  .blockimg {
    width: 300px;
  }

  .engn-wrap .blocksmall {
    display: none;
  }

  .round {
    display: none;
  }

}
@media (max-width: 1400px) {
  .main {
    height: calc(100vh - 120px);
  }

  header {
    padding: 0 40px;
  }

  .main-eggs {
    width: 95%;
  }

  .main-header p {
    font-size: 28px;
  }

  .pl-big {
    padding-left: 40px;
  }

  .about-text p {
    font-size: 20px;
  }

  .about {
    height: auto;
  }

  .structure-serv {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .serv-card {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-bottom: 2%;
  }

  .overlay-bg {
    background: rgba(255, 255, 255, 0.5215686275);
  }

  .services-text {
    padding-right: 40px;
  }

  .call5 .h3 {
    font-size: 20px;
  }

  .blockimg {
    display: none;
  }

  .about-img {
    display: none;
  }

}
@media (max-width: 1200px) {
  .menu a {
    margin-right: 20px;
    font-size: 17px;
  }

  .logo {
    font-size: 27px;
  }

  .main-eggs {
    margin-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-eggs .main-egg {
    margin-bottom: 30px;
  }

  .main-header h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 60px;
  }

  .about {
    overflow-y: auto;
  }

  .des-h2 {
    font-size: 22px;
    margin-bottom: 50px;
  }

  .structure-text {
    max-width: 100%;
  }

  .structure {
    padding-right: 60px;
    padding-left: 60px;
  }

  .products-wrap a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 18px;
    padding: 20px;
  }

  .products-wrap a img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .products{
    padding-right: 30px;
    padding-left: 30px;
  }

  .call5 {
    flex-wrap: wrap;
  }

  .call5 .col1 {
    width: 33.333%
  }

  .radiussrv {
    display: none;
  }

  .service-img {
    display: none;
  }

}
@media (max-width: 992px) {
  header {
    height: 80px;
  }

  section {
    overflow: auto;
  }

  .burger-menu {
    display: block;
    right: -115px;
  }

  .engn-wrap {
    background: white;
    width: 100%;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 41px;
}

  .main, .about {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .serv_co h1 {
    font-size: 55px;
  }

  .menu {
    position: fixed;
    width: 300px;
    background: #fff;
    height: 100%;
    top: 0;
    right: -300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 5;
    overflow: auto;
  }
  .menu a {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .menu.active {
    right: 0;
    background: #80808096;
  }

  .main-eggs {
    width: 100%;
  }

  .pl-big {
    padding-right: 40px;
  }

  .about-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .about-text {
    margin-bottom: 30px;
  }

  h2 {
    font-size: 48px;
    margin-bottom: 30px !important;
  }

  .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
            margin-top: 10px;
  }

  .services-text {
    margin-bottom: 30px;
  }

  .serv-list .img-abs {
    width: 70px;
    height: 70px;
    top: 0;
    left: 0;
  }

  .serv-list p {
    padding-top: 0;
  }

  .serv-list {
    margin-bottom: 30px !important;
  }

  .products {
    padding-left: 40px;
    padding-right: 40px;
  }

  .products-wrap a {
    font-size: 16px;
    padding: 15px;
  }

  .cont-list {
    font-size: 14px;
  }

.back_black {
  display: none;
}

.orang_tr {
  display: none;
}

.left_contact {
  width: 100%;
}

.right_img {
  display: none;
}

..prod img {
  background-color: #494f56;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

..production .conteiner {
  flex-direction: column;
}

.left_prod {
  width: 100%;
}

.prod span {
  font-size: 20px;
}

.prod p {
  font-size: 18px;
}

  .custom-select {
    position: relative;
    right: -40%;
  }

}
@media (max-width: 768px) {
  .serv-card {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 5%;
  }

  .products-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
  }

  .products-wrap a {
    -ms-flex-preferred-size: 49%;
        flex-basis: 49%;
    margin-bottom: 2%;
    font-size: 20px;
  }

  .contats-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contacts {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cont-text {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .call5 .col1 {
    width: 100%
  }

}
@media (max-width: 576px) {
  header {
    padding: 0px 15px;
  }

  .pl-big {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 30px;
  }

  .main-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
  }

  .main-header p {
    font-size: 24px;
  }

  .main-eggs {
    margin-top: 30px;
  }

  .structure {
    padding-right: 30px;
    padding-left: 30px;
  }

  h2 {
    font-size: 40px;
    margin-bottom: 20px !important;
  }

  .serv-list p {
    font-size: 18px;
    margin-left: 70px;
  }

  .serv-list .img-abs {
    width: 50px;
    height: 50px;
  }
  .serv-list .img-abs img {
    width: 30px;
  }

  .products {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts {
    padding-left: 15px;
    padding-right: 15px;
  }

}
@media (max-width: 480px) {
  .products-wrap a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 5%;
  }
}

.dis-none {
  display: none;
}