/*--------------------------------------------------------------
# Sort Properties
1 - Positioning properties (position, top, left)
2 - Box model properties (display, width, height, padding, margin, overflow)
3 - Text properties (font-size, text-align)
4 - Visual properties (color, border, background)
5 - The rest (opacity)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Rules for small screens - Cell phones
--------------------------------------------------------------*/

/* Categories */
#categoriesSec {
    margin-top: 100px;
}
.owl-categories {
    height: 50px;
}
.owl-categories .owl-item,
.owl-categories .owl-stage {
    height: 60px;
}
.owl-categories .owl-dots {
    bottom: 5px;
}
.category-card {
    width: 100%;
    height: 50px;
    padding: 10px;
    background-color: var(--secondaryColor);
    border: 2px solid var(--secondaryColor);
    box-shadow: 0px 0px 5px var(--secondaryColor);
}
.category-card:hover {
    background-color: var(--textColor2);
}
.category-card p {
    color: var(--textColor2);
    text-transform: uppercase;
}
.category-card:hover p {
    color: var(--secondaryColor);
}

/* Presentation */
#hero {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
#heroCarousel {
    height: 60vh;
}
#hero .carousel-inner {
    position: absolute;
}
#hero .carousel-item {
    height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#hero .carousel-container {
    position: absolute;
    top: 15%;
    right: 1%;
    left: 1%;
    align-items: center;
    text-align: center;
    display: flex;
}
#hero h1 {
    font-size: 35px;
    font-weight: 700;
    color: var(--textColor2);
}
#hero h3 {
    font-size: 25px;
    color: var(--textColor2);
}
#hero p {
    margin-top: 10px;
    color: var(--textColor2);
    animation-delay: 0.4s;
}
#hero .carousel-inner .carousel-item {
    transition-property: opacity;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 50px;
    line-height: 0;
    color: var(--secondaryColor);
    background: transparent;
    transition: 0.3s;
}
#hero .carousel-indicators li {
    width: 40px;
    height: 10px;
    border: 0;
    overflow: hidden;
    background: var(--secondaryColor);
    list-style-type: none;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.3s;
}
#hero .carousel-indicators li.active {
    background: var(--secondaryColor);
    opacity: 1;
}
#hero .btn-get-started {
    margin-top: 15px;
    padding: 14px 32px;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--textColor2);
    background: transparent;
    border: 2px solid var(--mainColor);
    border-radius: 4px;
    transition: 0.5s;
    animation-delay: 0.8s;
}
#hero .btn-get-started:hover {
    background: var(--mainColor);
}
.first-slide {
    margin-right: auto;
    margin-left: auto;
}
.first-slide img {
    width: 200px;
    height: 180px;
}
.all-slides {
    width: 100%;
    margin-top: -10px;
    text-align: center;
    background-color: rgba(4, 12, 21, 0.5);
}
.all-slides p {
    font-size: 20px;
    font-weight: bold;
}

/* About us */
.img-about {
    width: 100%;
    height: 180px;
}
#aboutSec i {
    color: var(--mainColor);
    font-size: 45px;
}

/* Services */
#servicesSec {
    margin-bottom: 60px;
}
#servicesSec .separator {
    height: 130px;
    padding: 20px 0;
    background: var(--mainColor);
}
#servicesSec .separator h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--textColor2);
}
.recents-row h3 {
    font-size: 24px;
    color: var(--textColor);
}
.btn-catalog {
    width: 35%;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
}
.btn-catalog:hover {
    color: var(--textColor2);
    background-color: var(--secondaryColor);
}
/* #servicesSec h4 {
    font-size: 23px;
    font-weight: 700;
    color: var(--textColor);
}
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}
#accordion .panel {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 15px;
    position: relative;
}
#accordion .panel:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    border: 1px dashed var(--mainColor);
    position: absolute;
    top: 25px;
    left: 18px;
}
#accordion .panel:last-child:before {
    display: none;
}
#accordion .panel-heading {
    padding: 0;
    border: none;
    border-radius: 0;
    position: relative;
}
#accordion .panel-title a {
    display: block;
    padding: 10px 30px 10px 60px;
    margin: 0;
    background: var(--textColor2);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondaryColor);
    border-radius: 0;
    position: relative;
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before {
    content: "⇩";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 40px;
    height: 100%;
    line-height: 40px;
    background: var(--mainColor);
    border: 1px solid var(--mainColor);
    border-radius: 3px;
    font-size: 17px;
    color: var(--textColor2);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease 0s;
}
#accordion .panel-title a.collapsed:before {
    content: "⇨";
    background: var(--textColor2);
    border: 1px solid var(--mainColor);
    color: var(--textColor);
}
#accordion .panel-body {
    padding: 10px 30px 10px 30px;
    margin-left: 40px;
    background: var(--textColor2);
    border-top: none;
    font-size: 15px;
    color: var(--textColor);
    line-height: 28px;
    letter-spacing: 1px;
} */

/* Brands */
#brandsSec {
    margin-bottom: 60px;
}
#brandsSec .separator {
    height: 125px;
    padding: 10px 0;
    background: var(--mainColor);
}
#brandsSec h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--textColor2);
}
#brandsSec p {
    margin-top: 5px;
}
#brandsSec i {
    font-size: 50px;
    color: var(--textColor2);
}
.owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 40%;
    transform: translateY(-25px);
}
.owl-nav .owl-prev {
    position: absolute;
    left: -80px;
    outline: none;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
    opacity: 0;
}
.owl-nav .owl-prev:before {
    display: inline-block;
    font-family: "FontAwesome";
    color: var(--secondaryColor);
    font-size: 25px;
    font-weight: 700;
    content: "\f104";
    width: 60px;
    height: 60px;
    background-color: transparent;
    line-height: 48px;
}
.owl-nav .owl-prev {
    opacity: 0.75;
    transition: all 0.5s;
}
.owl-nav .owl-prev:hover {
    opacity: 1;
}
.owl-nav .owl-next {
    opacity: 0.75;
    transition: all 0.5s;
}
.owl-nav .owl-next:hover {
    opacity: 1;
}
.owl-nav .owl-next {
    outline: none;
    position: absolute;
    right: -85px;
}
.owl-nav .owl-next:before {
    display: inline-block;
    font-family: "FontAwesome";
    color: var(--secondaryColor);
    font-size: 25px;
    font-weight: 700;
    content: "\f105";
    width: 60px;
    height: 60px;
    background-color: transparent;
    line-height: 48px;
}
.owl-dots {
    position: relative;
    bottom: -20px;
    text-align: center;
}
.owl-dots .owl-dot {
    display: inline-block;
}
.owl-dots .owl-dot span {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ccc;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.owl-dots .owl-dot.active span {
    background: var(--secondaryColor);
}
.owl-dots .owl-dot:active,
.owl-dots .owl-dot:focus {
    outline: none;
}
.owl-item {
    height: 220px;
}
.brands-row {
    margin-top: 40px;
}
.brand-card {
    width: 90%;
    height: 200px;
    margin: auto;
    padding: 0 0 5px 0;
    box-shadow: 0px 0px 5px var(--textColor);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.owl-carousel img {
    width: 80%;
    height: 130px;
    padding: 15px;
}
.owl-carousel h4 {
    color: var(--mainColor);
    font-size: 25px;
    font-family: sans-serif;
}
.owl-brands .owl-stage {
    height: 220px;
}

/* Contact */
.info-box {
    padding: 20px 5px 30px 5px;
    height: 210px;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.8);
    border-radius: 4px;
}
.info-box i {
    padding: 8px;
    font-size: 40px;
    color: var(--mainColor);
}
.i-small {
    font-size: 20px !important;
}
.info-box a:hover {
    color: var(--textColor);
    text-decoration: underline;
}
.info-box p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}
.info-box .h5 {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondaryColor);
}
.i-map {
    width: 100%;
    height: 350px;
    border: 1px solid var(--BorderColor);
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.8);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.contactForm {
    padding: 30px 10px;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.8);
    border-radius: 4px;
}
.contactForm input,
.contactForm textarea {
    font-size: 16px;
}
.contactForm input {
    padding: 10px 15px;
}
.contactForm textarea {
    padding: 12px 15px;
}
.contactForm .btn {
    width: 50%;
    color: var(--secondaryColor);
    border: 1px solid var(--secondaryColor);
}
.contactForm .btn:hover {
    color: var(--textColor2);
    background-color: var(--secondaryColor);
}

/*--------------------------------------------------------------
  # Rules for medium screens - Tablets
  --------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    /* Presentation */
    #hero {
        height: 90vh;
    }
    #heroCarousel {
        height: 90vh;
    }
    #hero .carousel-item {
        height: 90vh;
    }
    #hero .carousel-container {
        top: 15%;
    }
    #hero h1 {
        font-size: 40px;
    }
    #hero .btn-get-started {
        font-size: 18px;
    }
    .first-slide img {
        width: 350px;
        height: 250px;
    }
    .all-slides {
        margin-top: -60px;
    }
    .all-slides p {
        font-size: 25px;
    }

    /* Services */
    #servicesSec .separator {
        height: 100px;
    }
    #servicesSec .separator h3 {
        font-size: 30px;
    }
    .recents-row h3 {
        font-size: 28px;
    }
    .btn-catalog {
        width: 20%;
    }
    /* #servicesSec h4 {
        font-size: 28px;
    }
    #accordion .panel-title a:before,
    #accordion .panel-title a.collapsed:before {
        font-size: 22px;
    }
    #accordion .panel-title a.collapsed:before {
        font-size: 22px;
    }
    #accordion .panel-title a {
        font-size: 23px;
    }
    #accordion .panel-body p {
        font-size: 20px;
    } */

    /* About us */
    .img-about {
        height: 220px;
    }

    /* Brands */
    #brandsSec {
        margin-bottom: 80px;
    }
    #brandsSec .separator {
        height: 150px;
    }
    #brandsSec h2 {
        font-size: 45px;
    }

    /* Contact */
    .contactForm {
        padding: 30px;
    }
    .contactForm .btn {
        width: 20%;
    }
}

/*--------------------------------------------------------------
  # Rules for large screens - Computers
  --------------------------------------------------------------*/
@media screen and (min-width: 992px) {
    /* Presentation */
    #hero .carousel-container {
        right: 0;
        left: 0;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 8%;
    }
    .first-slide img {
        width: 400px;
        height: 300px;
    }
    .all-slides {
        margin-top: -65px;
    }
    .all-slides p {
        font-size: 30px;
    }

    /* Services */
    #servicesSec .separator {
        height: 120px;
    }
    #servicesSec .separator h3 {
        font-size: 35px;
    }
    .recents-row h3 {
        font-size: 34px;
    }
    .btn-catalog {
        width: 15%;
        font-size: 20px;
    }
    /* #servicesSec h4 {
        font-size: 30px;
    }
    #accordion .panel-title a {
        font-size: 25px;
    } */

    /* Brands */
    #brandsSec .separator {
        height: 140px;
    }

    /* Contact */
    .i-map {
        height: 350px;
    }
}

/*--------------------------------------------------------------
  # Rules for very large screens - Computers
  --------------------------------------------------------------*/
@media screen and (min-width: 1366px) {
    /* Presentation */
    #hero .carousel-container {
        top: 10%;
    }
    .first-slide img {
        width: 650px;
        height: 400px;
    }
    .all-slides {
        margin-top: -60px;
    }
    .all-slides p {
        font-size: 35px;
    }

    /* About us */
    #aboutSec p {
        font-size: 20px;
    }
    .img-about {
        height: 250px;
    }

    /* Services */
    #servicesSec .separator {
        height: 100px;
    }
    #servicesSec .separator h3 {
        font-size: 40px;
    }
    .recents-row h3 {
        font-size: 36px;
    }
    .btn-catalog {
        width: 12%;
    }
    /* #servicesSec h4 {
        font-size: 35px;
    }
    #accordion .panel-title a:before,
    #accordion .panel-title a.collapsed:before {
        font-size: 25px;
    }
    #accordion .panel-title a.collapsed:before {
        font-size: 25px;
    }
    #accordion .panel-title a {
        font-size: 28px;
    }
    #accordion .panel-body p {
        font-size: 22px;
    } */

    /* Brands */
    #brandsSec .separator {
        height: 140px;
    }
    #brandsSec h2 {
        font-size: 45px;
    }

    /* Contact */
    .i-map {
        height: 100%;
    }
}

/*--------------------------------------------------------------
# Rules for extra large screens - Computers
--------------------------------------------------------------*/
@media screen and (min-width: 1600px) {
    /* Presentation */
    #hero {
        height: 100vh;
    }
    #heroCarousel {
        height: 100vh;
    }
    #hero .carousel-item {
        height: 100vh;
    }
    #hero .carousel-container {
        top: 5%;
    }
    #hero h1 {
        font-size: 50px;
    }
    #hero .btn-get-started {
        font-size: 20px;
    }
    .first-slide img {
        width: 700px;
        height: 450px;
    }
    .all-slides {
        margin-top: -40px;
    }
    .all-slides p {
        font-size: 40px;
    }

    /* Services */
    #accordion .panel-title a:before,
    #accordion .panel-title a.collapsed:before {
        font-size: 28px;
    }
    #accordion .panel-title a.collapsed:before {
        font-size: 28px;
    }
    .btn-catalog {
        width: 10%;
    }

    /* About us */
    .img-about {
        height: 260px;
    }

    /* Contact */
    .i-map {
        height: 100%;
    }
}
