#highlights {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  height: auto !important;
}

.highlight {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: auto !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
  text-align: center;
  color: #fff;
  font-size: 48px;
  text-decoration: underline;
}

#highlights .slick-dots li button:before {
  font-size: 50px;
  color: var(--white);
  opacity: 1;
}

#highlights .slick-dots li.slick-active button:before {
  color: var(--secondary);
}

#highlights .slick-dots {
  bottom: 15px;
}

.highlight img {
  width: 100%;
}

#searchBar .arrowContainer {
  -moz-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

#searchBar:hover .arrowContainer {
  background-color: #05416a;
}

#searchBar:hover .arrowContainer .blueArrow path {
  stroke: #fff;
}

.transparentBtn {
  height: 20px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  margin: 15px auto;
  line-height: 22px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.transparentBtn:hover {
  border-bottom: 2px solid var(--base);
}

.transparentBtn:hover .arrow path {
  stroke: #fff;
}

.categoriesContainer {
  position: relative;
  width: 100%;
  margin: 40px auto;
}

.categoriesSlider {
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin-bottom: 70px;
}

.leftArrowCategories,
.rightArrowCategories {
  position: absolute;
  top: 45%;
  z-index: 1;
  box-shadow: 0 14px 17px rgb(0 0 0 / 4%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftArrowCategories {
  left: calc(7% - 52px);
}

.rightArrowCategories {
  right: calc(7% - 55px);
}

.rightArrowCategories img {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.box {
  flex: auto;
  width: 11.5%;
  display: flex;
  flex-direction: column;
}

.boxImgContainer {
  height: 30vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--background);
  margin: auto;
  border-radius: 10px;
  display: flex;
  align-content: center;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  justify-content: center;
}

.boxImgContainer:hover .boxSubText {
  display: block;
}

.boxImgContainer:hover {
  background-color: #00000042;
}

.boxImgContainer img {
  width: auto;
  max-width: 100%;
  margin: 15px auto;
  mix-blend-mode: multiply;
}

.boxImgContainer.first {
  background-color: #f8f8f8;
}

.boxText {
  width: 100%;
  text-align: center;
  height: auto;
  font-weight: 500;
  font-size: 15px;
  color: var(--main);
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  margin: 15px auto;
}

.arrow path {
  stroke: var(--secondary);
}

.transparentBtnText {
  color: var(--base);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid transparent;
}

.sectionTitle {
  font-size: 20px;
  width: 100%;
  color: #1c1c1c;
  text-align: center;
  font-weight: 600;
  line-height: 24px;
  margin: 70px 0 20px;
}

.blogContainer {
  margin-top: 10px;
  float: left;
  width: 100%;
  background: #f8f8f8;
}

.blogContainer .sectionTitle {
  margin-bottom: 30px;
}

.blogsContainer {
  display: block;
  width: 90%;
  float: unset;
  padding-top: 0;
  margin: 40px auto;
}

.blogContainer .transparentBtn {
  margin: 30px auto 46px;
}

.brandsSlider {
  float: left;
  width: 87%;
  margin-bottom: 25px;
}

.brandRightArrow {
  position: absolute;
  z-index: 1;
  float: right;
  height: 41px;
  width: 41px;
  right: 0;
  margin-top: calc(8% - 26px);
  margin-right: 4rem;
  background-image: url(../../files/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transform: rotate(180deg);
}

.brandLeftArrow {
  position: relative;
  z-index: 1;
  float: left;
  height: 41px;
  width: 41px;
  left: 0;
  margin-top: calc(8% - 26px);
  margin-left: 3.5rem;
  background-image: url(../../files/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

.boxSubText {
  width: 100px;
  color: var(--white);
  background-color: var(--violet);
  text-align: left;
  font-size: 12px;
  z-index: 3;
  margin: auto;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 24px;
  position: absolute;
  top: 35%;
  display: none;
}

.brandsGo {
  margin: 54px auto;
  line-height: 20px;
  clear: both;
  font-size: 16px;
  position: relative;
  width: fit-content;
  color: var(--black);
}

.brandsContainer {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 45px;
  background-color: #f8f8f8;
  padding: 4rem 0 1rem;
}

.boxSubText::after {
  content: "";
  display: block;
  background-size: contain;
  background-image: url(../../files/skyBlue.svg);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  float: right;
  display: none;
}

.brandsGo::after {
  content: "";
  position: absolute;
  display: block;
  top: 4px;
  right: -62px;
  background-size: contain;
  background-image: url(../../files/skyBlue.svg);
  background-repeat: no-repeat;
  width: 92px;
  height: 12px;
  float: right;
  display: none;
}

.brandsGoContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.devices {
  display: none;
}

.container100 {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 10px auto 5px;
  height: auto;
}

.column55 {
  width: 55%;
  position: relative;
}

.column45 {
  width: 45%;
  position: relative;
}

.mainTitle {
  font-size: 37px;
  line-height: 40px;
  position: relative;
  color: var(--black);
  font-weight: 600;
  text-align: center;
}

.mainTitle.violetText {
  color: var(--violet);
}

.mainTitle:last-of-type {
  margin-bottom: 45px;
}

.secondSentence {
  position: relative;
  height: 48px;
  overflow: hidden;
  margin-bottom: 20px;
}

.mainTitle span {
  color: #4c84c1;
}

.selectsContainer {
  width: 100%;
  margin: 0 0%;
  height: 50px;
  position: relative;
}

.selectsContainer select {
  height: 100%;
  width: 100%;
  border-radius: 50px;
  padding-left: 25px;
  background-image: url(../../files/blackArrow.svg);
  background-color: #fff;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: calc(100% - 23px) center;
  padding-right: 25px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-appearance: none;
}

.flexCenter {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
  background-color: #eceaed;
  padding: 3.5rem 0 4.5rem;
}

.container80 {
  width: 90%;
  position: relative;
  margin: 0 auto;
}

.selectContainer:nth-of-type(2) {
  margin-left: 2%;
}

.selectContainer:nth-of-type(3) {
  width: 25%;
  margin-top: 0;
  margin-left: 2%;
}

.selectContainer {
  float: left;
  color: #4d4d4d;
  font-weight: 600;
  font-size: 13px;
  height: 50px;
  border-radius: 50px;
  width: calc(25% - 2%);
  background-color: #fff;
}

.flex-justify {
  display: flex;
  justify-content: space-between;
}

.btnGo {
  float: right;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  width: 15%;
  right: 0;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  font-weight: 600;
  line-height: 50px;
  box-shadow: 0 8px 44px rgba(0, 0, 0, 0.14);
  -moz-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.btnYellow {
  background-color: #fdcc5c;
  margin: 30px 0;
  color: #05416a;
  width: 55%;
  max-width: 228px;
}

.btnYellow:hover {
  background-color: #fff;
}

.btnYellow .blueArrow {
  width: 10px;
  height: 14px;
  position: absolute;
  right: 25px;
  top: 18px;
}

.btnBlue {
  background-color: var(--black);
  color: #fff;
}

.btnBlue:hover {
  background-color: var(--secondary);
  color: #000;
}

.btnBlue:hover .whiteArrow path {
  stroke: #000;
}

.tick {
  float: left;
  width: 17px;
  margin-right: 10px;
}

.companyInfo {
  float: left;
  font-size: 13px;
  height: auto;
  line-height: 17px;
  font-weight: 600;
  color: #05416a;
}

.phonesColumn {
  display: flex;
  align-items: flex-end;
  display: none;
}

.phonesWrapper {
  width: 90%;
  height: 31vw;
  display: flex;
  align-items: flex-end;
}

.phones {
  width: auto;
  height: 100%;
  display: block;
  bottom: -3px;
  position: relative;
}

.phones:nth-of-type(1),
.phones:nth-of-type(5) {
  height: 84%;
}

.phones:nth-of-type(2),
.phones:nth-of-type(4) {
  height: 90%;
  z-index: 1;
}

.phones:nth-of-type(1) {
  left: 7px;
}

.phones:nth-of-type(2) {
  left: 4px;
}

.phones:nth-of-type(3) {
  z-index: 2;
}

.phones:nth-of-type(4) {
  right: 4px;
}

.phones:nth-of-type(5) {
  right: 7px;
}

.topBanner {
  display: flex;
}

.smallBanner {
  width: 100%;
  float: left;
  height: auto;
  margin-bottom: 40px;
  background-color: #1a5aa2;
}

.rightColSmBanner {
  width: 30%;
  float: left;
}

.leftColSmBanner {
  width: 70%;
  float: left;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 27px;
  position: relative;
  font-weight: 600;
}

@-webkit-keyframes color-change-2x {
  0% {
    background: #dcf1ff;
  }

  100% {
    background: #a5d1ed;
  }
}

@keyframes color-change-2x {
  0% {
    background: #dcf1ff;
  }

  100% {
    background: #a5d1ed;
  }
}

.phonesAnimation:nth-of-type(1) {
  animation-delay: 1.5s;
}

.phonesAnimation:nth-of-type(2) {
  animation-delay: 1s;
}

.phonesAnimation:nth-of-type(3) {
  animation-delay: 0.5s;
}

.phonesAnimation:nth-of-type(4) {
  animation-delay: 1s;
}

.phonesAnimation:nth-of-type(5) {
  animation-delay: 1.5s;
}

.phonesAnimation {
  animation: slideup 1.2s;
  animation-timing-function: cubic-bezier(0.52, 1.07, 0.16, 1.04);
  transform: translateY(100%);
  animation-fill-mode: both;
}

.brandsSlider .box img {
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.brandsSlider .box:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

@keyframes slideup {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(8px);
  }
}

.blogs {
  position: relative;
}

.blogPostRegular:hover {
  box-shadow: 4px 16px 11px rgb(0 0 0 / 2%);
  transform: translateY(-10px);
}

.blogsContainer .slick-slide {
  margin-left: 20px;
  margin-right: 20px;
}

.blogsContainer a {
  padding-top: 10px;
}

.blogPostRegular {
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.repairTitle {
  text-align: center;
  font-size: 23px;
  line-height: 29px;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 43px;
  letter-spacing: 0.7px;
}

.deviceImg {
  max-width: 145px;
  width: auto;
  mix-blend-mode: multiply;
  display: block;
  margin: 31px auto;
  height: auto;
  max-height: 110px;
  transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.deviceContainer:hover .deviceImg {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.deviceContainer {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  background-image: linear-gradient(to right, #d2ebfc, #f8fbfd78);
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

.device {
  flex-basis: 60%;
  padding-left: 5%;
  box-sizing: border-box;
}

.deviceTitle {
  color: #1a5aa2;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 34px;
}

.device .boxSubText {
  text-align: left;
  margin: 0;
}

.deviceContainer:hover {
  -webkit-animation: color-change 2s linear infinite alternate both;
  animation: color-change 2s linear infinite alternate both;
}

.groupsContainer {
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}

@-webkit-keyframes color-change {
  0% {
    background: #d2ebfc;
  }

  100% {
    background: #f8fbfd78;
  }
}

@keyframes color-change {
  0% {
    background: #d2ebfc;
  }

  100% {
    background: #f8fbfd78;
  }
}

@media screen and (min-width: 769px) and (max-width: 1378px) {
  .mainTitle {
    font-size: 2.5vw;
    line-height: 2.5vw;
  }

  .mainTitle:last-of-type {
    margin-bottom: 1vw;
  }

  .btnBlue {
    margin: 0 3vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .col {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  #content {
    width: 100%;
    min-width: unset;
    padding: 0;
  }

  .categoriesContainer {
    margin: 30px auto 0;
  }

  .boxImgContainer {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }

  .boxImgContainer:hover .boxSubText {
    display: none;
  }

  .boxTextContainer {
    width: 100%;
    padding: 0;
  }

  .sectionTitle {
    font-size: 18px;
    line-height: 20px;
    margin: 35px 0 20px;
  }

  .leftArrowCategories,
  .rightArrowCategories {
    top: 43%;
    left: calc(10% - 33px);
  }

  .rightArrowCategories {
    right: calc(10% - 33px);
    left: unset;
  }

  .categoriesSlider {
    margin-bottom: 20px;
  }

  .transparentBtn {
    margin: 10px auto;
    height: 40px;
    line-height: 40px;
  }

  .transparentBtnText {
    font-size: 15px;
    border-bottom: 1px solid #000;
    line-height: 20px;
  }

  .brandsSlider .slick-track {
    left: 24%;
  }

  .brandsSlider {
    margin-bottom: 45px;
    width: 100%;
  }

  .brandsGo {
    margin: 10px auto 30px;
    float: unset;
    clear: left;
    width: 160px;
    font-size: 13px;
    line-height: 17px;
  }

  .brandsGo::after {
    top: 20px;
    right: -69px;
  }

  .boxImgContainer img {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
    margin: 0;
  }
  .brandsSlider .box:hover img {
    transform: scale(1);
  }

  .brandRightArrow,
  .brandLeftArrow {
    display: none;
  }

  .topBanner {
    height: auto;
    flex-direction: column;
    margin: 9px auto 5px;
    /* background-image: url(../../files/reparacionBackground.png); */
    background-position: center;
    background-size: 100%;
    background-color: #eceaed;
  }

  .flexCenter {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 0;
    background-color: transparent;
  }

  .column55 {
    width: 90%;
    margin: auto;
    position: relative;
  }

  .mainTitle {
    font-size: 26px;
    line-height: 28px;
    width: 100%;
    text-align: center;
  }

  .leftCol {
    left: unset;
    width: 100%;
    padding-top: 25px;
  }

  .selectContainer:nth-of-type(1),
  .selectContainer:nth-of-type(2),
  .selectContainer:nth-of-type(3) {
    width: 100%;
    margin-top: 15px;
  }

  .selectContainer:nth-of-type(3) {
    margin-left: 0;
  }

  .selectContainer:nth-of-type(2) {
    margin-left: 0;
  }

  .selectsContainer {
    width: 90%;
    margin: auto;
  }

  .btnBlue {
    margin: 25px 0 20px;
    width: 100%;
  }

  .phones {
    position: relative;
  }

  .column45 {
    width: 100%;
  }

  .leftColSmBanner {
    width: 100%;
    height: auto;
    margin-top: 20px;
    line-height: 17px;
    font-size: 13px;
  }

  .rightColSmBanner {
    width: 100%;
  }

  .btnYellow {
    margin: 5px auto 20px;
    float: unset;
    line-height: 40px;
    height: 40px;
    width: 60%;
  }

  .btnYellow .blueArrow {
    top: 14px;
  }

  .phonesWrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 36vh;
  }

  .phonesColumn {
    justify-content: center;
  }

  .mainTitle:last-of-type {
    margin-bottom: 9px;
  }

  .blogContainer .sectionTitle {
    margin-bottom: 15px;
  }

  .blogsContainer {
    margin: 18px auto 0;
  }

  .blogContainer .transparentBtn {
    margin: 0 auto 46px;
  }

  .blogPostRegular .blogPostTitle {
    margin-top: 15px;
    font-size: 14px;
    margin-bottom: 9px;
    height: auto;
    line-height: 18px;
  }

  .blogPostRegular .blogPostDescription {
    font-size: 10px;
    line-height: 14px;
    height: auto;
  }

  .blogPostDate {
    font-size: 8px;
    line-height: 12px;
  }

  .repairTitle {
    width: 240px;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    color: var(--black);
    margin: 0 auto 25px;
    letter-spacing: 0;
  }

  .brandsContainer {
    margin-top: 0;
  }

  .deviceTitle {
    font-size: 21px;
    line-height: 25px;
  }

  .devices .slick-slide {
    margin-left: 0;
    margin-right: 0;
  }
}
