.nav__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin-left: 2rem;
  padding-right: 8rem;
}

.nav__container--logo h3 {
  font-size: 2rem;
  color: #565670;
}

.nav__container--logo span {
  color: #aa6666;
}

.nav__container--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.nav__container--menu > p {
  color: #fff;
  cursor: pointer;
}

.nav__container--menu--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 1.4rem;
  margin-right: 1.5rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav__container--menu--items:hover {
  color: #aa6666;
}

.fa-angle-down {
  padding: 4px 0 0 4px;
}

.rotate_down_ang {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  padding: 0px 4px 4px 0px;
}

.nav__cat {
  position: relative;
}

.nav__cat--items {
  position: absolute;
  height: auto;
  width: 12rem;
  line-height: 2.5rem;
  opacity: 0.8;
  top: 5rem;
  right: 22rem;
  background-color: #222020;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav__cat--items--item {
  border-bottom: solid thin #fff;
  display: block;
  font-size: 1.1rem;
}

.nav__cat--items--item:hover {
  background-color: #aa6666;
}

.nav__cat--hide {
  top: -15rem;
}

/*.nav__fixed{
    position: static;
    @include trans-ease;
}*/
.nav__search {
  height: 40px;
  width: 40px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav__search > img {
  width: 2rem;
  height: 2rem;
}

.nav__search:hover {
  color: #222020;
}

.nav__search--input {
  position: absolute;
  top: 5.5rem;
  right: 5rem;
  width: 20rem;
  height: 2.5rem;
  outline: none;
  padding-left: 10px;
  font-size: large;
  border-radius: 4px;
  -webkit-box-shadow: 0px 2px 5px grey;
          box-shadow: 0px 2px 5px grey;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav__search--hide {
  top: -30rem;
}

.hamburger-menu {
  width: 2rem;
  height: 4rem;
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  cursor: pointer;
  display: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line-1, .line-2, .line-3 {
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  margin: 5px 0;
}

/*.nav__cat:hover ~ .nav__cat--items{ show menu on hover
    display: block;
    margin-top: 10rem;
    padding-top: 2rem;
}*/
/*.main{
    width: 100%;
    height: 100%;
    perspective: 100rem;
    &__top{
        width: 100%;
        height: 100%;
        @include flexy-center-column;

        &--bgiamge-wrapper{
            width: 100%;
            height: 70vh;
            background-color: rgba(0,0,0,0.8);
            overflow: hidden;
            position: relative;
        }

        &--bgimage{
            object-fit: cover; 
            width: 100%;
            height: 100%;
            @include flexy-center-column;
            @include rotateTitle(changeWidth){
                    0%{
                    transform: scale(1.4);
                    }
                    100%{
                        transform: scale(1);
                    }
                };
            animation: changeWidth 7s linear;
        }
        
        &--title{
            position: absolute;
            top: 23%;
            left: 20%;
            font-size: 75px;
            letter-spacing: 0.8rem;
            color: #fff;
            @include rotateTitle(rotateTitleOnly){
                0%{
                    transform: translateY(40rem) rotateY(-20deg);
                    opacity: 1;
                }
                100%{
                    transform: translateY(0) rotateY(0);
                    opacity: 1;
                }
            };
            animation: rotateTitleOnly 1s linear;

            & span{
                color: $brown-color;
            }
        }
        
        &--search{
            position: absolute;
            top: 55%;
            left: 20%;
            width: 40%;
            outline: none;
            border-radius: 8px;
            height: 3rem;
            padding-left: 12px;
            font-size: 20px;
            letter-spacing: 3px;
            color: $black-color;
            @include rotateTitle(rotateTextOnly){
                0%{
                    transform: translateY(40rem) rotateY(-20deg);
                    opacity: 1;
                }
                100%{
                    transform: translateY(0) rotateY(0);
                    opacity: 1;
                }
            };
            animation: rotateTextOnly 3s forwards;
        
        }

        &--search-btn{
            position: absolute;
            top: 55%;
            left: 62%;
            width: 6rem;
            border: none;
            border-radius: 8px;
            height: 3rem;
            font-size: 15px;
            letter-spacing: 3px;
            color: $white-color;
            background-color: $brown-color;
            font-weight: 600;
            cursor: pointer;
            @include rotateTitle(rotateTextOnly){
                0%{
                    transform: translateY(40rem) rotateY(-20deg);
                    opacity: 1;
                }
                100%{
                    transform: translateY(0) rotateY(0);
                    opacity: 1;
                }
            };
            animation: rotateTextOnly 3s forwards;

            &:hover{
                background-color: $black-color;
                color: $white-color;
                @include trans-ease;
            }
        }

        &--text{
            position: absolute;
            top: 55%;
            left: 20%;
            max-width: 75%;
            font-size: 20px;
            letter-spacing: 3px;
            color: $white-color;
            @include rotateTitle(rotateTextOnly){
                0%{
                    transform: translateY(40rem) rotateY(-20deg);
                    opacity: 1;
                }
                100%{
                    transform: translateY(0) rotateY(0);
                    opacity: 1;
                }
            };
            animation: rotateTextOnly 3s forwards;
        }
    }
}*/
.main {
  width: 100%;
  height: 100%;
  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;
  -webkit-perspective: 100rem;
          perspective: 100rem;
}

.main__top {
  width: 100%;
  height: 100%;
  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;
  position: relative;
}

.main__top--bgiamge-wrapper {
  width: 100%;
  height: 70vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.main__top--bgimage {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  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;
  -webkit-animation: changeWidth 7s linear;
          animation: changeWidth 7s linear;
}

@-webkit-keyframes changeWidth {
  0% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes changeWidth {
  0% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.main__top-contents {
  position: absolute;
  top: 4rem;
  padding: 0 1rem;
  width: 100%;
  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;
}

.main__top-contents h2 {
  font-size: 200%;
  letter-spacing: 0.2rem;
  color: #aa6666;
  font-weight: 800;
  margin-bottom: 2rem;
  -webkit-animation: rotateTitleOnly 1s linear;
          animation: rotateTitleOnly 1s linear;
}

@-webkit-keyframes rotateTitleOnly {
  0% {
    -webkit-transform: translateY(40rem) rotateY(-20deg);
            transform: translateY(40rem) rotateY(-20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) rotateY(0);
            transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

@keyframes rotateTitleOnly {
  0% {
    -webkit-transform: translateY(40rem) rotateY(-20deg);
            transform: translateY(40rem) rotateY(-20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) rotateY(0);
            transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

.main__top-contents span {
  color: #fff;
}

.main__top--search {
  width: 20rem;
  outline: none;
  border-radius: 8px;
  height: 1.8rem;
  padding-left: 12px;
  font-size: 12px;
  letter-spacing: 3px;
  color: #222020;
  -webkit-animation: rotateTextOnly 3s forwards;
          animation: rotateTextOnly 3s forwards;
}

@-webkit-keyframes rotateTextOnly {
  0% {
    -webkit-transform: translateY(40rem) rotateY(-20deg);
            transform: translateY(40rem) rotateY(-20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) rotateY(0);
            transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

@keyframes rotateTextOnly {
  0% {
    -webkit-transform: translateY(40rem) rotateY(-20deg);
            transform: translateY(40rem) rotateY(-20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) rotateY(0);
            transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

.main__top--search-btn {
  width: 6rem;
  border: none;
  border-radius: 8px;
  height: 1.8rem;
  font-size: 15px;
  letter-spacing: 3px;
  color: #fff;
  background-color: #aa6666;
  font-weight: 600;
  cursor: pointer;
  -webkit-animation: rotateTextOnly 3s forwards;
          animation: rotateTextOnly 3s forwards;
}

@keyframes rotateTextOnly {
  0% {
    -webkit-transform: translateY(40rem) rotateY(-20deg);
            transform: translateY(40rem) rotateY(-20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) rotateY(0);
            transform: translateY(0) rotateY(0);
    opacity: 1;
  }
}

.main__top--search-btn:hover {
  background-color: #222020;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cards {
  width: 100%;
  margin-bottom: 5px;
  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;
}

.cards__wrapper {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  top: -2.5rem;
}

.cards__wrapper--cat {
  width: 15rem;
  height: 15rem;
  background-color: #aa6666;
  margin: 0 3rem 1rem 0;
  border-top-left-radius: 44px;
  border-bottom-right-radius: 44px;
  -webkit-box-shadow: 1px 1px 12px #2c2929;
          box-shadow: 1px 1px 12px #2c2929;
  position: relative;
  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;
}

.cards__wrapper--cat::after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  background-color: #222020;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cards__wrapper--cat:hover::after {
  height: 100%;
  opacity: 0.8;
  border-top-left-radius: 44px;
  border-bottom-right-radius: 44px;
}

.cards__wrapper--cat-logo {
  width: 75px;
  height: 75px;
  background-color: #fff;
  position: absolute;
  top: -40px;
  border-radius: 50%;
  z-index: 49;
}

.cards__wrapper--cat-content {
  margin-left: 20px;
  color: #fff;
}

.cards__wrapper--cat-content h2 {
  margin-bottom: 1rem;
  color: #d4c8c8;
}

.cards__wrapper--cat-btn {
  width: 8rem;
  height: 2.5rem;
  background-color: #aa6666;
  border-radius: 8px;
  z-index: 48;
  position: absolute;
  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;
  opacity: 0;
}

.cards__wrapper--cat:hover .cards__wrapper--cat-btn {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.cat__slider {
  width: 100%;
  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;
}

.cat__slider .owl-carousel {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

.cat__slider--top {
  background-color: #aa6666;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #fff;
  padding: 10px;
}

.cat__slider .slider__line {
  width: 80%;
  height: 5px;
  background-color: #aa6666;
  margin-bottom: 3px;
}

.cat__slider--card {
  background-color: #aa6666;
  color: #fff;
}

.cat__slider--info {
  padding: 8px;
}

.no_item > p {
  text-align: center;
  padding-bottom: 3rem;
  margin-left: -10rem;
}

.about__us {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  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;
}

.about__us--title {
  margin-bottom: 1.5rem;
  margin-top: 4rem;
  font-size: 2.2rem;
  color: #222020;
  letter-spacing: 1px;
}

.about__us--info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

.about__us--info-main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about__us--info-main-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  width: 75%;
  height: 100%;
  height: 5rem;
  margin-left: 8rem;
  background-color: rgba(226, 134, 138, 0.4);
}

.about__us--info-main-set:hover {
  background-color: #c45757;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about__us--info-main-set-logo {
  background-color: rgba(163, 53, 53, 0.8);
  color: #fff;
  font-size: 2.1rem;
  margin: 0 1.5rem;
  border-radius: 50%;
  padding: 15px;
}

.about__us--info-main-set-text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #222020;
}

.about__us--info-contact {
  width: 85%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(226, 134, 138, 0.4);
  margin-bottom: auto;
}

.about__us--info-contact-main {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  height: 100%;
}

.about__us--info-contact-main > h1 {
  color: #222020;
  letter-spacing: 2px;
  margin: 8px 0;
}

.about__us--info-contact-main > form {
  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;
  width: 100%;
}

.about__us--info-contact-main input[type=text] {
  width: 100%;
  height: 2rem;
  background-color: transparent;
  border: none;
  border-bottom: 0.2rem dashed #636363;
  margin: 10px 0;
  padding: 1rem 1rem 1rem 0;
  font-size: 1.2rem;
  color: #4b4b4b;
  outline: none;
}

.about__us--info-contact-main textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 0.2rem dashed #636363;
  margin: 10px 0;
  padding: 1rem 1rem 1rem 0;
  font-size: 1.2rem;
  color: #4b4b4b;
  outline: none;
}

.about__us--info-contact-main button {
  width: 8rem;
  height: 2rem;
  background-color: #aa6666;
  border: none;
  font-size: 1.4rem;
  line-height: 1.5rem;
  color: #eee;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.1rem 0.8rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  margin: 12px 0;
}

.footer {
  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;
}

footer {
  background: #222020;
  padding: 8px;
  color: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 83%;
  margin-left: 1rem;
}

footer h3 {
  margin-bottom: 1rem;
}

footer a {
  color: white;
}

footer #left-footer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid #aa6666;
  padding-left: 32px;
}

footer #left-footer ul {
  padding: 0;
  list-style: none;
  line-height: 1.5;
}

footer #right-footer {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  padding: 8px;
  text-align: center;
}

footer #social-media-footer a .fa-facebook,
footer #social-media-footer a .fa-youtube,
footer #social-media-footer a .fa-github {
  color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer #social-media-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}

footer #social-media-footer ul li {
  font-size: 48px;
  padding: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer #social-media-footer ul li:hover a .fa-youtube {
  color: red;
}

footer #social-media-footer ul li:hover a .fa-facebook {
  color: #3b5998;
}

footer #social-media-footer ul li:hover a .fa-github {
  color: #bbb;
}

.wrapper {
  padding-top: 6rem;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.wrapper__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wrapper__item--card {
  width: 25%;
  margin-left: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

.wrapper__item--card a {
  color: #222020;
}

.wrapper__item--card:hover {
  background-color: #aa6666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.wrapper__item--card:hover a {
  color: #fff;
}

.wrapper__item--img {
  width: 100%;
  height: 15rem;
}

.wrapper__item--img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.search__side {
  color: #222020;
  width: 20%;
  margin-left: 1rem;
}

.search__fixed {
  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;
  background-color: #aa6666;
  position: fixed;
  padding: 1.5rem;
}

.search__fixed > p {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: #fff;
}

.search__fixed input[type=text] {
  border-radius: 4px;
  outline: none;
  border: none;
  height: 2rem;
  width: 100%;
  padding-left: 5px;
  margin-bottom: 1rem;
}

.search__fixed input[type=submit] {
  border-radius: 2px;
  border: none;
  width: 100%;
  height: 1.5rem;
  color: #222020;
  background-color: #fff;
  cursor: pointer;
}

.wrapper__title {
  padding-top: 6rem;
  text-align-last: center;
}

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

.no-hover:hover a:hover .fa-facebook-messenger {
  color: #a1a1b1;
}

.parts {
  padding-top: 15px;
}

.login {
  padding-top: 12rem;
  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;
}

.login form {
  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;
  margin-bottom: 6rem;
}

.login input[type=text] {
  margin-bottom: 1rem;
  margin-top: 0.2rem;
  width: 20rem;
  height: 2rem;
  border: solid thin #afacac;
  border-radius: 4px;
  padding-left: 8px;
}

.login input[type=password] {
  margin-bottom: 1rem;
  margin-top: 0.2rem;
  width: 20rem;
  height: 2rem;
  border-radius: 4px;
  border: solid thin #afacac;
  padding-left: 8px;
}

.login input[type=submit] {
  width: 20rem;
  height: 2rem;
  background-color: #aa6666;
  color: #fff;
  border: none;
  cursor: pointer;
}

.add-edit {
  padding-top: 8rem;
  margin-bottom: 4rem;
  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;
  width: 100%;
}

.add-edit a {
  margin-right: 1rem;
  background-color: rgba(180, 180, 245, 0.4);
  width: 20%;
  height: 8rem;
  -webkit-box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.8);
          box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add-edit a:hover {
  background-color: #aa6666;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add-edit a:hover p {
  color: #222020;
}

.add-edit a p {
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 1px 1px 5px wheat;
  color: #aa6666;
}

.add-edit a {
  color: #222020;
}

.showindash {
  display: none;
}

.dashboard {
  padding-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.dashboard li {
  color: #fff;
  cursor: pointer;
}

.dashboard__cars form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.5rem;
  padding-right: 1rem;
}

.dashboard__cars form h1 {
  color: #aa6666;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dashboard__cars form label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.dashboard__cars form input[type=text] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__cars form textarea {
  padding-left: 2px;
  height: 5rem;
  margin-bottom: 1.5rem;
}

.dashboard__cars form input[type=file] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__cars form input[type=submit] {
  padding-left: 2px;
  height: 2rem;
  margin-bottom: 1.5rem;
  background-color: #aa6666;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.dashboard__models form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.5rem;
  padding-right: 1rem;
}

.dashboard__models form h1 {
  color: #222020;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dashboard__models form label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.dashboard__models form input[type=text] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__models form select {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__models form input[type=file] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__models form input[type=submit] {
  padding-left: 2px;
  height: 2rem;
  margin-bottom: 1.5rem;
  background-color: #222020;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.dashboard__parts form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.5rem;
  padding-right: 1rem;
}

.dashboard__parts form h1 {
  color: #aa6666;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dashboard__parts form label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.dashboard__parts form input[type=text] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__parts form select {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__parts form input[type=file] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__parts form input[type=submit] {
  padding-left: 2px;
  height: 2rem;
  margin-bottom: 1.5rem;
  background-color: #222020;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.dashboard__others form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.5rem;
  padding-right: 1rem;
}

.dashboard__others form h1 {
  color: #aa6666;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dashboard__others form label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.dashboard__others form input[type=text] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__others form select {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__others form input[type=file] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__others form input[type=submit] {
  padding-left: 2px;
  height: 2rem;
  margin-bottom: 1.5rem;
  background-color: #222020;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.dashboard__users form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 0.5rem;
  padding-right: 1rem;
}

.dashboard__users form h1 {
  color: #aa6666;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.dashboard__users form label {
  margin-bottom: 4px;
  font-size: 1.2rem;
}

.dashboard__users form input[type=text] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__users form input[type=password] {
  padding-left: 2px;
  height: 1.5rem;
  margin-bottom: 1.5rem;
}

.dashboard__users form input[type=submit] {
  padding-left: 2px;
  height: 2rem;
  margin-bottom: 1.5rem;
  background-color: #222020;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
}

.dashboard__menu {
  background-color: #aa6666;
  width: 15rem;
  height: auto;
  margin-right: 1rem;
  margin-bottom: 1.2rem;
}

.dashboard__menu li {
  margin-bottom: 0.2rem;
  height: 3rem;
  color: #fff;
  background-color: #222020;
  opacity: 0.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.dashboard__menu li:hover {
  background-color: black;
}

.dashboard__menu a:visited {
  display: black;
}

.dash_menu_color {
  background-color: #fff;
}

@media screen and (max-width: 1096px) {
  .wrapper__card {
    margin-left: 7rem;
  }
  .wrapper__item--card {
    width: 40%;
    margin-left: 1rem;
  }
}

@media screen and (max-width: 1081px) {
  .about__us--info > .about__us--info-contact {
    margin-left: 1rem;
  }
}

@media screen and (max-width: 990px) {
  .about__us--info > .about__us--info-contact {
    margin-left: 1.5rem;
  }
}

/*
    }*/
@media screen and (max-width: 866px) {
  .about__us--info > .about__us--info-contact {
    margin-left: 2rem;
  }
  .nav__container--menu {
    display: none;
  }
  .hamburger-menu {
    display: block;
    position: absolute;
    top: 1.7rem;
    right: 5rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .nav__container--menu {
    width: 105%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: -30rem;
  }
  .nav__container--menu--items {
    background-color: #222020;
  }
  .nav__container--menu--show {
    top: 5rem;
  }
  .nav__search {
    width: 100%;
    text-align: center;
  }
  .nav__search > img {
    height: 2rem;
    width: 2rem;
  }
  .nav__search--input {
    position: absolute;
    display: block;
    top: 22.6rem;
    left: 8rem;
    width: 50%;
    height: 60%;
    text-align: center;
  }
  .nav__search--hide {
    top: -15rem;
  }
  .nav__cat--items {
    right: 1rem;
  }
  .toggle_hamb {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .toggle_hamb .line-1 {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .toggle_hamb .line-2 {
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .toggle_hamb .line-3 {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .wrapper__item--card {
    width: 45%;
  }
}

@media screen and (max-width: 780px) {
  .about__us--info > .about__us--info-contact {
    margin-left: 2.5rem;
  }
}

@media screen and (max-width: 746px) {
  .wrapper__card {
    margin-left: 9rem;
  }
  .wrapper__item--card {
    width: 45%;
  }
  .wrapper__item--img {
    height: 12rem;
  }
}

@media screen and (max-width: 670px) {
  .main__top--title {
    font-size: 100%;
  }
}

@media screen and (max-width: 638px) {
  .cards__wrapper .cards__wrapper--cat {
    width: 18rem;
    margin: 0 0 1rem 0;
  }
  .about__us--info {
    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;
    width: 100%;
    margin-bottom: 2rem;
  }
  .about__us--info-main {
    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;
  }
  .about__us--info-main-set {
    width: 90%;
    margin: 10px 0;
  }
  .about__us--info-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    margin: 0 2.1rem 0 0;
  }
  .about__us--info-contact-main {
    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;
    width: 90%;
  }
  .add-edit a {
    width: 40%;
  }
}

@media screen and (max-width: 630px){
  .wrapper__item--card {
    width: 20rem;
  }
}

@media screen and (max-width: 571px) {
  .wrapper__item--card {
    width: 88%;
  }
}

@media screen and (max-width: 552px) {
  .wrapper {
    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;
    margin: 0;
    
    padding: 2rem 0;
  }
  .wrapper__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
    padding: 0;
  }
  .wrapper__item--card {
    width: 70%;
    margin: 0 0 2.5rem 0;
    padding: 0;
  }
  .search__side {
    width: 100%;
    margin: 0;
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            
  }
  .search__fixed {
    position: relative;
    width: 70%;
    margin-top:5rem;
  }
  .main__top form {
    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;
  }
  .main__top form input[type="text"] {
    margin-bottom: 3px;
  }
  .main__top form input[type="submit"] {
    width: 13rem;
  }
  .no_item > p {
    margin-left: 0;
  }
}

@media screen and (max-width: 499px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-left: 0;
  }
  footer #left-footer {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-right: 0;
    padding-left: 0;
  }
  footer #right-footer {
    background: #aa6666;
    color: #fff;
  }
  footer #right-footer a {
    color: #fff;
  }
  footer #social-media-footer a .fa-facebook,
  footer #social-media-footer a .fa-youtube,
  footer #social-media-footer a .fa-github {
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media screen and (max-width: 420px) {
  .dashboard__menu {
    margin-right: 0;
    width: 5rem;
  }
  .dashboard__menu li {
    width: 5rem;
  }
  .dashboard__users form {
    width: 14rem;
  }
}

@media screen and (max-width: 377px) {
  .main__top-contents h2 {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 350px) {
  .login input[type="text"],
  .login input[type="password"] {
    width: 18rem;
    height: 1.8rem;
  }
  .login input[type="submit"] {
    width: 18rem;
  }
}

@media screen and (max-height: 387px) {
  .cards__wrapper {
    top: -0.2rem;
  }
}

@media screen and (max-width: 335px) {
  .main__top-contents h2 {
    font-size: 1.4rem;
  }
  .main__top form {
    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;
  }
  .main__top form input[type="text"] {
    margin-bottom: 3px;
    width: 17rem;
  }
  .main__top form input[type="submit"] {
    width: 10rem;
  }
}

@media screen and (max-height: 490px) {
  .nav__container--menu {
    height: 70%;
  }
  .nav__search--input {
    top: 14rem;
  }
}

@media screen and (max-height: 441px) {
  .nav__container--menu {
    height: 60%;
  }
  .nav__search--input {
    top: 12.3rem;
  }
}

@media screen and (max-height: 300px) {
  .cards__wrapper {
    top: -0.2rem;
  }
  .nav__container--menu {
    height: 45%;
  }
  .nav__search--input {
    top: 9.7rem;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  line-height: 1;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

nav {
  width: 100%;
  height: 5rem;
  background-color: #222020;
  position: fixed;
  z-index: 50;
  box-shadow: 2px 6px 49px -3px black;
  -webkit-box-shadow: 2px 6px 49px -3px black;
  -moz-box-shadow: 2px 6px 49px -3px black;
}

h1, h2, h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

.active {
  color: #aa6666;
}

main {
  padding-top: 5rem;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=main.css.map */