/*landing page template css*/

body{
  font-family:Montserrat, sans-serif;
}

.topBanner{
  /*margin-top: -80px;*/
  background-size: cover;
  width: 100%;
  height: 120vh;
  padding-top:200px;
}

.topBannerGradient{
  width:100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(255,255,255,1) 60%, rgba(2,0,36,0) 100%);
  margin-bottom: -200px;
}

.masterContainerPartsPage{
  max-width: 1170px;
  margin: auto;
}

.bottomBanner{
  background-size: cover;
  width: 100%;
  margin-top: -550px;
  height: 120vh;
  padding-top: 200px;
}

.infoPanel__column1{
  flex-basis: 40%;
}

.infoPanel__column2{
  flex-basis: 60%;
  justify-content: flex-end;
}

.info_panel_content{
  border-left-style: solid;
  border-color: #ed1c24;
  border-width: 7px;
  /* width:575px; */
  max-width: 575px;
  background-color: black;
  color: white;
  padding: 20px;
  margin-left: auto;
}

.infoContentRow{
  flex-wrap: wrap;
  flex-direction: row;
  display: inline-flex;
  width: 100%;
}

.infoContent__column1{
  flex-basis: 15%;
  margin: 5px;
}

.infoContent__column2{
  flex-basis: 80%;
  justify-content: flex-end;
}

.info_panel_title{
  margin-bottom: 20px;
}

.info_panel_text_content1{
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.info_panel_text_content2{
  font-weight: 200;
  font-size: 1rem;
  margin-bottom: 20px;
}

.titleContainer{
  height:75px;
}

.infoContentTitle{
  font-weight: 600;
  font-size: 1.5rem;
}

.buttonContainer{
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  max-width:575px;
  margin-top: 25px;
  margin-left: auto;
}

.buttonPartsPage:hover{
  text-decoration: none;
  background-color: white;
}

.buttonPartsPage {
  text-decoration: none;
  padding: 11px;
  background-color: #ed1c24;
  color: white;
  width: 30%;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 400;
}

.infoPanelWrapper{
  display: flex;
  max-width: 1170px;
}

.servicesContainer{
  height: auto;
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  list-style: none;
  padding-left: 0;
  max-width: 1170px;
  margin: auto;
  background-color: white;
}

.servicesContainerColumn {
  background-color: white;
  margin: auto;
  min-height: 1000px;
}

.servicesContentItem{
  padding: 25px;
  flex-basis: 50%;
  background-color: white;
}

.servicesContainerRow {
  display: block;
  width: 100%;
  margin: auto;
}

.infoContentImg{
 width: 75px;
 height: 75px;
}

.infoContentText{
  font-weight: 400;
  font-size: 1rem;
}

.formPartsPageWrapper{
  display: block;
  width: 100%;
  margin: auto;
}

.formPartsPageRow{
  display: flex;
  max-width: 1170px;
  margin: auto;
}

.formPartsPage_column1{
  flex-basis: 33%;
}

.formPartsPage_column2{
  flex-basis: 33%;
}

.formPartsPage_column3{
  flex-basis: 33%;
  justify-content: flex-end;
  z-index: 2;
  margin-top: 660px;
}

.formPartsPageContainer{
  padding:40px;
  background-color: #f2f2f2;
}

.productsParentContainer{
  margin-top: 100px!important;
  width: 100%;
  z-index: 5;
}

.productsContainer{
  height: auto;
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: auto;
  background-color: white;
}

.productsContentItem{
  padding: 25px;
  flex-basis: 33%;
  background-color: white;
  margin-bottom: 30px;
}

.partItem{
  margin: auto;
  display: table;
  text-align: center;
}

.productsTitleHolder{
  text-align: center;
}

.productContentImg{
  width:350px;
  height:195px;
}

.part__row2{
  font-weight: 600;
  font-size: 1rem;
}

.part__row3{
  font-weight: 300;
  font-size: 1rem;
}

.line{
  margin: auto;
  width:10%;
  border-bottom: 4px solid #ed1c24;
}

.buttonContainerParts{
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}


@media only screen and (max-width: 1440px){
  .formPartsPage_column1{
    flex-basis: 0%;
  }

  .formPartsPage_column2{
    flex-basis: 0%;
  }

  .formPartsPage_column3{
    flex-basis: 100%;
    margin-top: 35px;
  }


  .site-main.landing-page-template{
    padding:0!important;
  }

  .row{
    margin-right: 20px!important;
    margin-left: 20px!important;
  }

  .infoPanelWrapper{
    /*margin-top: -80px;*/
    flex-direction: column;
  }

  .productsTitleHolder
  {
    margin-left: 30px;
  }

  .buttonPartsPage{
    flex-basis: 100%;
    white-space: nowrap;
    padding: 5px;
    width: 55%;
    margin-bottom: 5px;
  }

  .infoPanel__column1{
    flex-basis: 0%;
  }

  .infoPanel__column2{
    flex-basis: 100%;
  }

  .infoContentImg{
    display: none;
  }

  .infoContentText{
    margin-left: 50px;
  }

  .servicesContentItem{
    flex-basis: 100%;
  }

  .productsContentItem{
    flex-basis: 50%;
  }

  .bottomBanner{
    margin-top: 0;
  }

  .buttonContainer{
    flex-direction: column;
    align-items: center;
  }

  .formPartsPage_column2{
    margin-top: 0;
  }

  .masterContainerPartsPage{
    margin-top: -171px!important;
  }

  .formPartsPageWrapper{
    margin-top: -110px;
  }
}
@media only screen and (max-width: 720px){
  .productsContentItem{
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 426px){
	.servicesContainerRow{
		margin-top: -235px;
	}
}

@media only screen and (max-width: 376px){
	.servicesContainerRow{
		margin-top: -210px;
	}
}

@media only screen and (max-width: 321px){
	.servicesContainerRow{
		margin-top: 15px;
	}
}

@media only screen and (max-width: 222px){
	.servicesContainerRow{
		margin-top: 360px;
	}
}

