:root {
  --mygray: rgb(136, 136, 136);
  --myyellow: rgb(255, 234, 0);
  --mydgray: rgb(74, 74, 74);
  --mywhite: rgb(255, 255, 255);
  --myblack: rgb(0, 0, 0);
}

.navbar {
  background-color: var(--mydgray);
}

.navbar-brand {
  padding-left: 10px;
}

.navbar-icon {
  color: var(--myyellow);
  font-size: 2rem;
  margin-right: 10px;
}

.nav-item {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-link {
  color: var(--mywhite);
  font-size: 1rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.nav-link:hover {
  color: var(--myyellow);
  letter-spacing: 5px;
}

.dropdown-toggle:focus {
  color: var(--myyellow);
  letter-spacing: 5px;
}

.dropdown-menu {
  background-color: var(--mydgray);
}

.dropdown-item:hover {
  background-color: var(--mydgray);
}

.navbar-brand img {
  width: 50px;
}

.nav-icons {
  margin-right: 10px;
}

.nav-icons .nav-icon {
  color: var(--mywhite);
  text-decoration: none;
  font-size: 2rem;
  margin: 0px 10px;
}

.nav-icons .nav-icon i {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.nav-icons .nav-icon i:hover {
  color: var(--myyellow);
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.header {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 100%, 30% 100%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 70% 100%, 30% 100%, 0 90%);
  overflow: hidden;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3) translateX(-12%);
            transform: scale(1.3) translateX(-12%);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.3) translateX(-12%);
            transform: scale(1.3) translateX(-12%);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.max-height {
  min-height: 85vh;
  background: url("../image/gsmarena_000.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: zoom 10s  infinite;
          animation: zoom 10s  infinite;
}

.max-height .title {
  color: var(--mywhite);
}

.ribbon2-title1, .ribbon3-title1 {
  color: var(--myyellow);
}

.ribbon2-title2, .ribbon3-title2 {
  -webkit-clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 0 100%, 10% 50%);
          clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 0 100%, 10% 50%);
  background-color: var(--mydgray);
  color: var(--mywhite);
}

.ribbon2-title2:hover, .ribbon3-title2:hover {
  -webkit-animation: deform 1s forwards;
          animation: deform 1s forwards;
}

@-webkit-keyframes deform {
  0% {
    -webkit-clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 0 100%, 10% 50%);
            clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 0 100%, 10% 50%);
  }
  25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 50% 100%, 0 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 50% 100%, 0 100%, 10% 50%);
  }
  75% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 20% 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 20% 100%, 10% 50%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 140%, 20% 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 140%, 20% 100%, 10% 50%);
  }
}

@keyframes deform {
  0% {
    -webkit-clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 0 100%, 10% 50%);
            clip-path: polygon(20% 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 0 100%, 10% 50%);
  }
  25% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
            clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 50% 100%, 0 100%, 0 50%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 50% 100%, 0 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 50% 100%, 0 100%, 10% 50%);
  }
  75% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 20% 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 100%, 20% 100%, 10% 50%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 140%, 20% 100%, 10% 50%);
            clip-path: polygon(0 0, 100% 0, 90% 50%, 80% 100%, 50% 140%, 20% 100%, 10% 50%);
  }
}

.row2-icon {
  background-color: var(--mydgray);
  border: 2px solid var(--myyellow);
  color: var(--myyellow);
  font-size: 2rem;
}

.row2-icon i {
  height: 50px;
  width: 50px;
}

.bar {
  background-color: var(--myyellow);
  height: 4px;
  width: 30%;
}

.models .btn {
  background-color: var(--mydgray);
  border: 3px solid var(--myyellow);
  color: var(--myyellow);
  font-size: 2rem;
  margin: 3px;
  -webkit-clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
          clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  -webkit-transition: all .5s;
  transition: all .5s;
}

.models .btn:hover {
  background-color: var(--mydgray);
  color: var(--mywhite);
  border: 3px solid var(--myyellow);
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
          clip-path: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
}

.best-sell {
  background-color: var(--mygray);
  -webkit-clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
          clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 100%, 0 100%);
}

.card .phone-img {
  padding: 50px;
  -webkit-transition: all .5s;
  transition: all .5s;
  cursor: pointer;
}

.card .phone-img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card .phone-brand {
  font-size: 1.3rem;
}

.card .model {
  font-size: 1rem;
}

.card .price {
  font-size: 1rem;
}

.c-f-d {
  width: 25%;
}

.c-f-d i {
  font-size: 1.5rem;
}

.c-f-d .card-footer-info {
  font-size: 1.1rem;
}

.question {
  background: url("../image/Phantom_Galaxy_across_the_spectrum_pillars.jpg") center/cover fixed no-repeat;
}

.q-gray {
  background-color: rgba(74, 74, 74, 0.8);
}

.q-gray .question-text {
  color: var(--mywhite);
}

.q-yellow {
  background-color: rgba(255, 234, 0, 0.8);
}

.question-icon {
  font-size: 4rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.question-icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.featured-item {
  margin-bottom: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--mygray);
  border-radius: 10px;
  border: 3px solid var(--myyellow);
  padding: 5px 10px;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.featured-item h5, .featured-item h6 {
  color: var(--mywhite);
}

.featured-item .featured-icon {
  color: var(--myyellow);
}

.featured-item:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.featured-photo {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.g-item img {
  width: 90%;
  height: 90%;
  padding: 20px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.g-item img:hover ~ .g-item-title {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.g-item {
  position: relative;
  border: 5px solid var(--myyellow);
  border-radius: 10px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.g-item:hover {
  background-color: rgba(255, 234, 0, 0.8);
}

.g-item:hover img {
  opacity: 30%;
}

.g-item-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  -webkit-transition: all .5s;
  transition: all .5s;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--mywhite);
  outline: 3px solid var(--mywhite);
  outline-offset: -10px;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.g-item-title:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.ribbon6 {
  background: url("../image/watercolor-galaxy-background_79603-2384.jpg") center/cover fixed no-repeat;
}

.ribbon6 .contact-input {
  border: 3px solid var(--myyellow);
  margin-bottom: 20px;
  background: transparent;
  color: var(--mywhite);
  font-size: 1.5rem;
}

.ribbon6 .contact-input:focus {
  -webkit-box-shadow: 0px 0px 10px 5px var(--myyellow);
          box-shadow: 0px 0px 10px 5px var(--myyellow);
}

.ribbon6 .btn {
  color: var(--myyellow);
  border: 2px solid var(--myyellow);
  -ms-grid-column-align: center;
      justify-self: center;
  width: 30%;
}

.ribbon6 .btn:hover {
  -webkit-box-shadow: 0px 0px 10px 5px var(--myyellow);
          box-shadow: 0px 0px 10px 5px var(--myyellow);
  background: transparent;
  border: 2px solid var(--myyellow);
}

footer {
  background-color: var(--mydgray);
}

footer .footer-icons i {
  color: var(--myyellow);
  font-size: 3rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

footer .footer-icons i:hover {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
/*# sourceMappingURL=mycss.css.map */