:root{
  --main-color: #caa578;
}

html{
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
}

h1{
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h2{
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

h3{
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

h4{
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

body{
    margin: 0;
    padding: 0;
}

button{
  border: none;
}

a{
  text-decoration: none;
}

a:active, a:focus{
  outline: none;
}

button,
button:active,
button:focus{
  outline: none;
}

button::-moz-focus-inner 
{
  border: 0;
}

input:active,
input:focus{
  outline: none;
  border: none;
}

p{
  margin: 0;
  padding: 0;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

#overlay{
  box-sizing: border-box;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.modal{
  height: 200px;
  width: 300px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  line-height: 25px;
}

.confirm{
  width: 50%;
  margin-top: 20px;
}

/* Header */
#page{
  position: relative;
}

.header{
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
}

.header__content{
  display: flex;
  position: relative;
  height: 700px;
  width: 100%;
  margin-top: 70px;
  background-blend-mode: multiply;
  background-position: center right;
  background-size: cover;
  background-image: url(../assets/bg.jpg);  
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.header__body{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9001;
  background-color: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
}

.header__logo{
  box-sizing: border-box;
  display: flex;
  padding: 3px 0;
  height: 100%;
}

.header__logo img{
  height: 65px;
}

.phone__number{
  color: #000;
}

.header__burger{
  display: none;
  position: relative;
  height: 32px;
  width: 35px;
  z-index: 55;
}

.header__burger span{
  position: absolute;
  top: 12px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #000;
}

.header__burger.active span{
  transform: scale(0);
  transition: .3s ease;
}

.header__burger::after, .header__burger::before{
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: .3s ease;
}

.header__burger::before{
  top: 0;
  left: 0;
}

.header__burger::after{
  top: 25px;
  left: 0;
}


.header__burger.active::before{
  top: 12px;
  transform: rotate(45deg);
}

.header__burger.active::after{
  top: 12px;
  transform: rotate(-45deg);
}

.header__menu{
  display: flex;
  height: 100%;
}

.header__list{
  display: flex;
  flex-direction: row;
  height: 100%;
}

.header__link{
  height: 100%;
  color: #000000;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-right: 20px;
  font-weight: 400;
  height: 100%;
}

.header__link:hover{
  -webkit-box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  -moz-box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  transition: box-shadow .3s ease;
}

.active-item{
  border: none !important;
  -webkit-box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  -moz-box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  box-shadow: inset 0px -4px 0px 0px rgba(202,165,120,1);
  transition: box-shadow .3s ease;
}

.social{
  margin-right: 20px;
  display: flex;
}

.social__icon{
  display: inline-block;  
  margin-right: 10px;
}

.social__icon img{
  height: 26px;
  width: 26px;
}

.contacts-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.contacts{
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.contacts a{
  color: #1c3147;
  font-size: 1rem;
  font-weight: 400;
}

.contacts img{
  height: 24px;
  margin-right: 10px;
}

.info{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  margin-left: 20px;
}

.mail__adress{
  font-size: 11pt;
  font-weight: 400;
  color: var(--main-color);
}

#center-header{
  width: 100%;
  float: left;  
  margin-top: 123px;
}

#center-header p{
  color: #d0d2cf;
  font-weight: 300;
  font-size: 18px;
  margin-top: 26px;
}

h1.description{
  color:  var(--main-color);
}

#bottom-header{
  float: left;
  margin-top: 60px;
}

#bottom-header p{
  margin-left: 20px;
  margin-top: 5px;
  display: block;
  float: left;
  font-size: 14px;
  color: #d0d2cf;
  font-weight: 300;
  line-height: 1.5;
  
}

.btn{
  float: left;
  background: var(--main-color);
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-bottom: 2px solid #9d8362;
  height: 52px;
  padding: 18px 30px;
  letter-spacing: 1px;
  cursor: pointer;
  outline: none;
}

.btn:hover{
  background: #c08c4c;
  color: #e6d8c7;
}

#how-it{
  max-width: 975px;
  display: flex;
}


/* End Header */

#route{
  max-width: 975px;
  margin: 70px auto 0 auto;
}

.el-list{
  margin-left: 55px;
  margin-right: 55px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.el{
  width: 220px;
}

.el-icon{
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 50px -3px rgba(219,216,219,1);
  -moz-box-shadow: 0px 0px 50px -3px rgba(219,216,219,1);
  box-shadow: 0px 0px 50px -3px rgba(219,216,219,1);
}

.icon{
  height: 35px;
  width: 35px;
  margin: 18px 0 0 18px;
  /* background-image: url(../assets/icons/team.svg); */
}

.el-text{
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  margin-top: 25px;
}

.content{
  display: flex;
  flex-direction: column;
}

/* Start Pholio */
#pholio{
  max-width: 975px;
}

.wrap-pholio{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  overflow: hidden;
}

#pholio h1{
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

#pholio p{
  display: block;
  margin-top: 25px;
  color: #848484;
  text-align: center;
}

#tabs{
  display: flex;
  justify-content: center;
  float: left;
}

#tabs li:first-child{
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

#tabs li:last-child{
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

#pholio ul li{
  display: block;
  float: left;  
  border: 1px solid #ebebeb;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;  
  padding-top: 19px;
  padding-bottom: 19px;
}

.active-tab{
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid #c39865 !important;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

li.active-tab::after{
  content: " ";
  background-color: var(--main-color);
  /* background-color: red; */
  border-bottom: 1px solid #c39865;
  border-right: 1px solid #c39865;
  height: 10px;
  width: 10px;
  position: absolute;
  z-index: 9000;
  top: 100%;
  left: 50%;
  margin-top:-5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  filter: progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476);
}

.tab-content{
  display: block;
  float: left;
  width: 100%;
}

.tab-content h2{
  text-align: center;
  /* color: #848484; */
  margin-bottom: 40px;
  font-size: 24px;
}

.pholio-el{
  margin: 0 auto;
  max-width: 975px;
}

.gallery{
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: space-evenly;
}

.more-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}

.more{
  height: 46px;
  width: 170px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-bottom: 2px solid #9d8362;
  border-radius: 2px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
}

.more:hover{
  background-color: #9d8362;
}

.more:disabled{
  cursor: not-allowed;
}

.more-gallery{
  display: none;
}

.thumbnail{
  position: relative;
  width: 210px;
  height: 210px;
  margin-bottom: 20px;
  transition: 0.4s ease-in-out;
}

.thumbnail:hover{
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.75);
}

.thumbnail:hover>.tmb-description{
  opacity: 1;
  /* transition: 0.3s ease-in-out; */
}

.tmb-description{
  box-sizing: border-box;
  position: absolute;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transition: 0.4s ease-in-out;
  padding: 0 10px;
}

.hide{
  display: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.show{
  display: block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
/* End Pholio */

/* Company start */
  #company{
    position: relative;
    float: left;
    width: 100%;
  }

  #company h1{
    display: block;
    text-align: center;
    width: 100%;
    float: left;
    margin-top: 80px;
  }

  .wrap-company{
    max-width: 975px;
    margin: 0 auto;
  }

  #list-company{
    width: 100%;
    margin-top: 50px;
    margin-bottom: 35px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }

  .company-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: 0.5s;
  }

  #list-company a:hover{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    transition: 0.5s;
  }

  #list-company a:active, a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
  }

  #list-company a img{
    max-width: 200px;
  }

  .wrap-icon{
    float: left;
    width: 100%;
  }

  .click-icon{
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: var(--main-color);
    margin: 0 auto;
  }

  .click-icon svg{
    fill: #fff;
    width: 20px;
    height: 20px;  
    margin-top: 5px;
    margin-left: 4px;
  }

  .wrap-icon p{
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: gray;
  }
/* company end */

/* services start */
#services{
  float: left;
  width: 100%;
}

#services h1{
  text-align: center;
  margin-top: 80px;
}

#services p{
  color: #797979;
  font-weight: 400;
  text-align: center;
  margin:25px 0 50px 0;
}

.wrap__services{
  max-width: 975px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.wrap__services .service:last-child{
  border-right: 2px solid #efefef;
}

.service{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 275px;
  border: 2px solid #efefef;
  padding: 10px 10px 20px 10px;
  border-right: none;
}

.service__img{
  width: 100%;
  height: auto;
}

.service__img img{
  width: 100%;
}

.service__description h3{
  margin-top: 20px;
  margin-bottom: 20px;
}

.service__description p{
  color: #000 !important;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.service a{
  box-sizing: border-box;
  display: block;
  width: 100%;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

/* services stop */

/* Warranty start */
#warranty{
  float: left;
  width: 100%;
}

.wrap-warranty{
  max-width: 975px;
  margin: 80px auto 0 auto;
}

#warranty h1{
  margin-bottom: 80px;
  text-align: center;
}
/* Warranty End */

/* Start Calculate */

#calculate{
  margin-top: 70px;
  float: left;
  width: 100%;
}

.wrap-calculate{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 975px;
  margin: 0 auto;
  background: #f8f8f8;
}

.calculate-img{
  width: 50%;
}

.calculate-img img{
  display: block;
  width: 100%;
}

.wrap-calculate h2{
  text-align: left;
  margin-bottom: 40px;
}

.calculate-form{
  width: 50%;
  box-sizing: border-box;
  padding: 20px 60px 0 20px;
}

.form-icon{
  float: left;
  width: 18px;
  fill: #d6d6d6;
  margin: 15px 20px;
}

.wrap-input{
  border-radius: 2px;
  border-style: outset;  
  float: left;
  height: 50px;
  width: 100%;
  background: #fff;
  margin-bottom: 10px;
}

.input-normal{
  border: none;
  border-top: 2px solid #e3e3e3;
}

.input-error{
  border: 1px solid red !important;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
  box-shadow: 0px 0px 5px 0px rgba(255,0,0,1);
}

.file-description{
  display: block;
  width: 100%;
  float: left;
  text-align: left;
  font-size: 0.8rem;
}

.wrap-input input{
  height: 48px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  border: none;
  width: 80%;
}

.wrap-input input::placeholder{
  color: #d6d6d6;
}

#file-input::-webkit-file-upload-button {
  visibility: hidden;
}

.loading{
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0.7;
  top: 6px;
  right: 190px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.loading img{
  width: 36px;
}

.wrap-btn{
  float: left;
  position: relative;
  margin-top: 10px;
  width: 100%;
}

.wrap-btn button{
  width: 100%;
  text-align: center;
  background: var(--main-color);
}

.form-description{
  display: block;
  margin-top: 8px;
  float: left;
  width: 100%;
  font-size: 14px;
  color: #9e9e9e;
  text-align: center;
}
/* Stop Calculate */

#about{
  width: 100%;
  background-color: #f8f8f8;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-wrap{
  max-width: 975px;
  display: flex;
  flex-direction: row;
}

.about-wrap h1{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.about-text p{
  padding: 50px 0px 50px 50px;
  line-height: 1.5rem;
  text-align: justify;
}

.about-text p::first-line{
  text-indent: 20px;
}

/* Question start */
#question{
  width: 100%;
  float: left;
  position: relative;
  background-color: #f8f8f8;
  padding-top: 50px;
  margin-top: 80px;
}

.wrap-question{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 975px;
  margin: 0 auto;
}

.wrap-question h1{
  display: block;
  max-width: 190px;
  margin-left: 50px;
  float: left;
}

.accordion{
  width: 650px;
  background: #fff;
  height: auto;
  padding: 0;
  margin-bottom: 60px;
  -webkit-box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
  -moz-box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
  box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
}


.card-header{
  border: 1px solid #f6f6f6;  
  border-bottom: none;
  height: 60px;
  padding-left: 40px;
  padding-right: 25px;
}

.card-header a{  
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
}

.card-header p{
  display: block;  
}

.card-header span{
  display: block;
  font-size: 16px;  
  color: var(--main-color);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.collapse{
  display: none;
}

.card-body{
  padding-left: 40px;
  padding-right: 25px;
  padding-bottom: 10px;
  border: 1px solid #f6f6f6;
  border-top: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 300;
}

.question-wrap{
  max-width: 975px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.get-call{
  max-width: 400px;
  text-align: center;
}

.get-call h1{
  font-weight: 200;
  font-size: 32px;
}

.call_description{
  display: block;
  margin-top: 15px;
  color: #000;
  font-size: 14px;
  font-weight: 200;
}

.call-form{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  height: 50px;
  width: 350px;
  margin-top: 30px;
  margin-bottom: 70px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
  -moz-box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
  box-shadow: 0px 0px 5px -3px rgba(219,216,219,1);
}

.call-form .btn{
  height: 42px;
  float: left;
  width: 150px;
  font-size: 11px;
  border-left: none;
  border-top: none;
  padding: 13px 0;
  margin-right: 3px;
}

#phone-input{
  margin-left: 10px;
  display: block;
  float: left;
  width: 180px;
  border: none;
  height: 40px;
  background: #fff;
  font-size: 16px;
  color: #000;
} 
/* Questio end */


/*Start Footer */
footer{  
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
  -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
  box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.61);
  width: 100%;
  float: left;
  padding: 15px 0;
}

.wrap-footer{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.devider{
  display: flex;
  border-left: 1px solid #efefef;
  height: 40px;
  width: 10px;
}
/* End Footer */

/* Small devices (landscape phones, 576px and up) */
@media only screen and (max-width: 750px) {
  .header__burger{
    display: block;
  }

  .header__menu{
    top: -1000px;
    display: none;
    transition: .3s ease-in-out;
  }

  .header__content{
    height: 350px;
    background-position: center right;
  }

  .header__menu.active{
    display: flex;
    position: fixed;
    flex-direction: column;
    top: 70px;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: auto;
    z-index: 9999;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.75);
    transition: top 0.3s ease-in-out;
  }

  .header__list{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .header__link{
    font-size: 1.5rem;
    margin-top: 10px;
  }

  h1{
    font-size: 30px;
  }

  #header-wrap{
    padding-left: 15px;
    padding-right: 10px;    
  }

  #nav{
    height: auto;
    flex-direction: column;
    padding-top: 10px;
  }

  .nav-right{
    display: none;
  }

  .nav-mob{
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .nav-wrap .toogle{
    width: 28px;
    height: 28px;
  }

  .toogle.checked:nth-child(2){
    display: none;
  }

  .nav-wrap .toogle span{
    display: block;
    height: 6px;
    width: 100%;
    border-bottom: 2px solid #000;
  }

  .menu-box{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    width: 100%;
  }

  .menu-box li{
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
  }

  .menu-box li a{
    color: #000;
    text-transform: uppercase;
    font-size: 1.1rem;
  }

  #route{
    margin-top: 40px;
  }

  .call-form{
    margin-bottom: 30px;
  }

  .social__icon{
    margin-right: 5px;
  }

  .lslide{
    display: flex;
    justify-content: center;
  }
  
  .info{
    justify-content: flex-end;
    padding-right: 10px;
    margin-left: 0;
    font-size: 14px;
  }
  
  #center-header{
    margin-top: 30px;
  }

  #bottom-header{
    margin-top: 40px;
    display: flex;
    flex-wrap: row;
    justify-content: space-between;
    align-items: center;
  }

  .btn{
    font-size: 11px;
    padding: 10px 15px;
  }

  #pholio{
    margin-top: 40px;
  }

  .tab-content h2 {
    margin-top: 10px;
  }

  .thumbnail {
    width: 48.5%;
    height: auto;
    margin: 0;
  }

  .thumbnail img{
    width: 100%;
  }

  #history{
    margin-top: 30px;    
    padding-bottom: 35px;
  }

  #wrap-history h1 {
    margin-top: 30px;
  }

  #steps{
    justify-content: space-around;
  }

  .step-m{
    margin-top: 20px;
  }

  /* .step-row{
    margin-bottom: 10px;
  } */

  .wrap-step-row{
    height: 260px;
  }

  #company h1 {
    margin-top: 40px;
  }

  #list-company {
    flex-wrap: wrap;    
    justify-content: space-around;
    margin-top: 35px;
    margin-bottom: 25px;  
    padding-left: 10px;
    padding-right: 10px;  
  }

  #list-company a img {
    max-width: 150px;
}

  .wrap-warranty {
    margin-top: 40px;
  } 

  .wrap-calculate{
    flex-direction: column;
  }

  .calculate-img{
    width: 100%;
  }

  .calculate-form{
    width: 100%;
  }

  #services{
    margin-top: 30px;
  }

  #services p {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
  }

  #services .btn{
    padding-top: 18px;
  }

  .company-icon{
    height: 200px;
  }
  
  .wrap__services{
    flex-direction: column;
  }

  .service{
    max-width: 100%;
    border:none;
  }

  .service__img img{
    width: 100%;
  }

  #warranty h1 {
    margin-bottom: 40px;
  }
  .wrap-calculate h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  .calculate-form{
    padding: 10px;
  }

  #question{
    margin-top: 40px;
    padding-top: 10px;
  }  

  .wrap-question{
    flex-direction: column;
  }

  .wrap-question h1{
    display: block;
    max-width: 100%;
    text-align: center;
    margin: 0 10px;
  }

  .el-list{
    margin-left: 10px;
    margin-right: 10px;
  }

  .el-icon{
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  
  .el{
    max-width: 180px;    
    margin-right: 10px;
  }

  .icon{
    height: 30px;
    width: 30px;
    margin:10px 0 0 10px;
  }

  .el-text{
    font-size: 11px;
  }

  .modal{
    box-sizing: border-box;
  }

  .modal__form {
    padding: 0;
  }

  .modal h1{
    margin-top: 10px;
  }

  .wrap-input input::placeholder{
    color: #000;
    font-size: 13px;
  }

  .wrap-input input{
    font-size: 13px;
  }  

  #tabs{
    display: flex;
    margin: 20px auto 0 auto;
    float: none;
  }

  #tabs li{
    display: flex;
    width: 200px;
  }

  .accordion{
    margin-top: 10px;
    width: 100%;
  }

  footer{
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }

  .contacts {
    margin-left: 10px;
  }
}

#slider-company{
  display: flex;
  align-items: center;
  height: auto !important;
} 

@media (min-width: 576px) {
  #header-wrap{
    padding-left: 20px;
    padding-right: 20px;
  }

  #list-company {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px){  
  .social{
    display: flex;
    flex-direction: row;
  }

  .about-wrap{
    flex-direction: column;
  }

  .about-wrap h1{
    padding-top: 20px;
  }

  .about-text p{
    padding: 10px;
    padding-bottom: 20px;
  }

   #pholio h1{
    margin-top: 0;
  }

  #services h1{
    margin-top: 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  #header-wrap{
    padding: 20px 20px 0 20px;
    height: 500px;
  }

  #history{
    margin-top: 50px;
    padding-bottom: 40px;
  }

  #wrap-history h1 {
    margin-top: 35px;
  }

  #tabs{
    margin: 20px 0 20px 0;
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }

  #pholio{
    margin: 40px auto 0 auto;
  }    

  #pholio h1{
    margin-top: 40px;
  }

  #pholio ul li{
    width: 180px;
  }

  #steps{
    margin-left: 10px;
    margin-right: 10px;
  }

  .step-3{
    margin-top: 60px;
  }

  .wrap-question h1 {
    font-size: 28px;
  }

  #list-company {
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .calculate-form {
    padding: 20px;
  }

  .service{
    max-width: 250px;
  }   

  #company h1 {
    margin-top: 40px;
  }  
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 1024px) {
  #header-wrap{
    height: 585px;
    padding-top: 30px;
  }

  #tabs{
    margin: 35px 65px 50px 65px;
  }

  #pholio{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }    

  #pholio ul li{
    width: 195px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}