/**
 * DEVICES SECTION
 **/

.deviceContainer {
  display: flex;
  flex-direction: row;
  margin: auto;
  padding: 50px 0px 50px 0px;
  width: 1200px;
  align-items: center;
  justify-content: space-between;
}

.deviceText {
  width: 500px;
  padding: 20px;
}

.deviceTitle {
  font-size: 36px;
  margin-bottom: 20px;
}

.deviceDescription {
  font-size: 18px;
}

.deviceImageView {
  width: 600px;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deviceImage {
  width: 600px;
  height: auto;
  position: relative;
}

.deviceButtonRow {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.deviceButton {
  cursor: pointer;
  display: block;
  background-color: #b11f1f;
  padding: 6px 18px;
  color: #ffffff;
  font-size: 20px;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.deviceButton:hover {
  background-color: #d62727;
}

/**
 * SUPPORTED SECTION
 **/

.supportedContainer {
  width: 1600px;
  padding: 50px 0px;
  margin: auto;
  display: flex;
  flex-direction: row;
}

.supportedDevicesTitle {
  font-size: 36px;
}

.supportedDevicesText {
  font-size: 18px;
  margin: 20px 0px;
}

.devicesList {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 800px;
}

.supportedItem {
  font-size: 22px;
  width: 33%;
}

.supportedCTA {
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.supportedCTAText {
  font-size: 18px;
  text-align: center;
}

.supportedButton {
  align-self: center;
  cursor: pointer;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b11f1f;
  padding: 6px 18px;
  color: #ffffff;
  width: 150px;
  font-size: 20px;
  margin: 20px auto 0px auto;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.supportedButton:hover {
  background-color: #d62727;
}

.seeAllButton {
  font-size: 20px;
  padding: 5px 10px;
  width: 280px;
  border-width: 2px;
  border-color: #000000;
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.seeAllButton:hover {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
}

.allDevicesModal {
  display: none;
  z-index: 11;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.allDevicesContent {
  background-color: #ffffff;
  padding: 40px 20px 20px 20px;
  position: relative;
  max-height: 80vh;
  width: 1225px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow-y: scroll;
}

.allDevicesDismiss {
  position: absolute;
  padding: 10px;
  top: -10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.allDevicesList {
  width: 300px;
}

.supportedItemModal {
  font-size: 18px;
}

.supportedItemCategory {
  font-size: 24px;
  margin: 10px 0px;
}

/**
 * REPAIR SECTION
 **/

.repairContainer {
  
}

.repairTitleContainer {
  width: 1600px;
  margin: auto;
}

.repairTitle {
  font-size: 36px;
}

.repairItem {
  background-color: #ffffff;
}

.repairItemReversed {
  background-color: #ebe7e7;
}

.repairItemContent {
  width: 1600px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  padding: 30px 0px;
}

.repairItemContentReversed {
  width: 1600px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin: auto;
  padding: 30px 0px;
}

.repairItemTextContainer {
  width: 45%;
}

.repairItemTitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.repairItemDesc {
  font-size: 18px;
  text-align: left;
}

.repairImageContainer {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repairIcon {
  height: 105px;
  width: 105px;
}

.deviceDropdown {
  display: none;
  position: relative;
  z-index: 9;
}

.deviceSubMenu {
  position: absolute;
  opacity: 0;
  top: 28px;
  left: 0px;
  z-index: 8;
  width: 280px;
  padding: 3px 10px;
  background-color: #d62727;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.deviceSubMenuOpen {
  opacity: 1;
}

.deviceDropdownLink {
  color: #ffffff;
  padding: 4px 0px;
}

@media only screen and (max-width : 1650px) {
  .deviceContainer {
    width: 1200px;
  }

  .supportedContainer {
    width: 1200px;
  }

  .supportedCTA {
    padding: 40px;
  }

  .repairTitleContainer {
    width: 1200px;
  }

  .repairItemContent, .repairItemContentReversed {
    width: 1200px;
  }
}

@media only screen and (max-width : 1250px) {
  .deviceContainer {
    width: 900px;
  }

  .deviceImageView {
    width: 500px;
  }

  .deviceImage {
    width: 450px;
  }

  .supportedContainer {
    width: 900px;
  }

  .devicesList {
    width: 550px;
  }

  .supportedItem {
    font-size: 18px;
  }

  .repairTitleContainer {
    width: 900px;
  }

  .repairItemContent, .repairItemContentReversed {
    width: 900px;
  }

  .allDevicesContent {
    width: 600px;
  }
}

@media only screen and (max-width : 992px) {
  .deviceContainer {
    width: 300px;
    padding: 30px 0px 50px 0px;
    flex-direction: column-reverse;
  }

  .deviceImageView {
    padding: 20px 0px 60px 0px;
  }

  .deviceText {
    width: 260px;
  }

  .deviceImageView {
    width: 300px;
  }

  .deviceImage {
    width: 300px;
  }

  .supportedContainer {
    width: 300px;
    flex-direction: column;
  }

  .devicesList {
    width: 300px;
  }

  .supportedItem {
    width: 50%;
    font-size: 16px;
    text-align: center;
  }

  .supportedCTA {
    padding: 50px 0px;
  }

  .repairTitleContainer {
    width: 300px;
    text-align: center;
  }

  .supportedDevicesTitle {
    text-align: center;
  }

  .supportedDevicesText {
    text-align: center;
  }

  .repairItemContent, .repairItemContentReversed {
    width: 300px;
    flex-direction: column-reverse;
  }

  .repairItemTextContainer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .repairItemDesc {
    text-align: justify;
  }

  .deviceDropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #b11f1f;
    width: 280px;
    margin: auto;
    color: #ffffff;
    padding: 3px 10px;
    margin-top: 26px;
  }

  .allDevicesContent {
    width: 280px;
  }
}