/* ----- base styling ----- */

* {
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}

*::selection {
    background: cadetblue;
    color: #000;
}

html {
    font-size: 100%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body.vegas-container {
    background: rgba(0, 0, 0, .5);
}

section {
    padding: 2rem 9%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading {
    text-align: center;
    font-size: 3rem;
    color: #333;
    padding: 2.5rem 0
}

.heading span {
    font-size: 3.5rem;
    background: rgba(0, 0, 0, .5);
    color: cadetblue;
    border-radius: .5rem;
    padding: .2rem 1rem;
}

.heading span.space {
    background: none;
}

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: cadetblue;
    color: #fff;
    padding: .8rem 3rem;
    border: .2rem solid cadetblue;
    border-radius: 5rem;
    cursor: pointer;
    font-size: 1.7rem;
}

.btn:hover {
    background: rgba(255, 165, 0, .2);
    color: cadetblue;
}

.first {
    color: cadetblue;
}


/* ----- header navigation ----- */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #808080;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
}

header .navlogo {
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
}

header .navlogo span {
    color: cadetblue;
}

header .navmenu a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 2.5rem;
}

header .navmenu a:hover {
    color: cadetblue;
}

header .icons i {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

header .icons i:hover {
    color: cadetblue;
}

header .searchbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: #808080;
    border-top: .1rem solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .searchbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .searchbar #search-bar {
    width: 100%;
    padding: .5rem;
    text-transform: none;
    color: #333;
    font-size: 1.5rem;
    border-radius: .5rem;
    letter-spacing: 2px;
}

header .searchbar label {
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    margin-left: 1.5rem;
}

header .searchbar label:hover {
    color: cadetblue;
}


/* ----- login form ----- */

.login {
    position: fixed;
    top: -120%;
    left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login.active {
    top: 0;
}

.login form {
    margin: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: #fff;
    width: 50rem;
}

.login h3 {
    font-size: 2.5rem;
    color: #808080;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}

.login form .box {
    width: 100%;
    padding: .5rem;
    font-size: 1.5rem;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0, 0, 0, .3);
    text-transform: none;
}

.login form .box:focus {
    color: cadetblue;
}

.login form #remember {
    margin: 2rem 0;
}

.login form label {
    font-size: 1.5rem;
}

.login form .btn {
    display: block;
    width: 100%;
}

.login form p {
    padding: 1rem 0;
    font-size: 1.5rem;
    color: #333;
}

.login form p a {
    color: cadetblue;
}

.login form p a:hover {
    color: #333;
    text-decoration: none;
}

.login #form-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
}

#menu-bar {
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}


/* ----- home page ----- */

#home {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
}

#home .content {
    text-align: center;
}

#home .content h3 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0, 0, 0, .1);
}

#home .content p {
    font-size: 1.5rem;
    color: #fff;
    padding: .5rem 0;
}

#home .content a {
    margin: 2rem 1rem;
}


/* ----- about page ----- */

#about {
    position: relative;
    width: 100%;
    background: #fff;
}

#about .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#about .content .text {
    padding: 2rem;
    line-height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ----- block ----- */

#about h3 {
    display: block;
}

#about .content h3 {
    color: #333;
    font-size: 3rem;
}

#about .content .info {
    padding: 2rem;
    max-width: 80%;
    letter-spacing: 2px;
    font-size: 1.8rem;
    text-align: justify;
}


/* ----- buying section ----- */

#buying {
    background: rgba(0, 0, 0, .5);
    padding: 5rem;
}

.buying .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.buying .box-container .box {
    flex: 1 1 30rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    background: #333;
}

.buying .box-container .box img {
    height: 20rem;
    width: 100%;
    object-fit: cover;
}

.buying .box-container .box .content {
    padding: 2rem;
}

.buying .box-container .box .content h3 {
    font-size: 1.5rem;
    color: #fff;
}

.buying .box-container .box .content h3 i {
    color: cadetblue;
}

.buying .box-container .box .content p {
    font-size: 1rem;
    color: #fff;
    padding: 1rem 0;
}

.buying .box-container .box .content .stars i {
    font-size: 1rem;
    color: cadetblue;
}

.buying .box-container .box .content .price {
    font-size: 2rem;
    color: #fff;
    padding-top: 1rem;
}

.buying .box-container .box .content .price span {
    color: red;
    font-size: 1.5rem;
    text-decoration: line-through;
}

#buying .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

#buying .heading {
    font-size: 3rem;
    letter-spacing: 2px;
    color: #fff;
    padding: 2rem;
}


/* ----- reviews page ----- */

#review {
    background: #fff;
    width: 100%;
    height: 50vh;
}

.swiper {
    width: 80%;
    height: 100%;
}

@media (max-width: 980px) {
    .swiper {
        width: 100%;
        height: 100%;
    }
}

.swiper-slide {
    text-align: center;
    font-size: 1rem;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 50%;
    height: 50%;
    object-fit: cover;
}


/* .review .review-slider {
    padding-bottom: 2rem;
}

.review .box {
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}

.review .box img {
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review .box h3 {
    color: #333;
    font-size: 2.5rem;
}

.review .box p {
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}

.review .box .stars i {
    color: var(--orange);
    font-size: 1.7rem;
} */


/* ----- contact ----- */

#contact {
    background: #fff;
    margin-top: 5rem;
}

.contact .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.contact .row .image {
    flex: 1 1 35rem;
}

.contact .row .image img {
    width: 100%;
}

.contact .row form {
    flex: 1 1 50rem;
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1);
    border-radius: .5rem;
}

.contact .row form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact .row form .inputBox input,
.contact .row form textarea {
    width: 49%;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1.7rem;
    color: #333;
    background: #f7f7f7;
    text-transform: none;
}

.contact .row form textarea {
    height: 15rem;
    resize: none;
    width: 100%;
}


/* ---------- preloader ---------- */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #fff;
}

@-moz-keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spinner-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* :not(:required) hides this rule from IE9 and below */

.spinner-loader:not(:required) {
    -moz-animation: spinner-loader 1500ms infinite linear;
    -webkit-animation: spinner-loader 1500ms infinite linear;
    animation: spinner-loader 1500ms infinite linear;
    -moz-border-radius: 0.5em;
    -webkit-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-box-shadow: rgba(0, 0, 0, 0.8) 1.5em 0 0 0, rgba(0, 0, 0, 0.8) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) 0 1.5em 0 0, rgba(0, 0, 0, 0.8) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) -1.5em 0 0 0, rgba(0, 0, 0, 0.8) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.8) 0 -1.5em 0 0, rgba(0, 0, 0, 0.8) 1.1em -1.1em 0 0;
    -webkit-box-shadow: rgba(0, 0, 0, 0.8) 1.5em 0 0 0, rgba(0, 0, 0, 0.8) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) 0 1.5em 0 0, rgba(0, 0, 0, 0.8) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) -1.5em 0 0 0, rgba(0, 0, 0, 0.8) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.8) 0 -1.5em 0 0, rgba(0, 0, 0, 0.8) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.8) 1.5em 0 0 0, rgba(0, 0, 0, 0.8) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) 0 1.5em 0 0, rgba(0, 0, 0, 0.8) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.8) -1.5em 0 0 0, rgba(0, 0, 0, 0.8) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.8) 0 -1.5em 0 0, rgba(0, 0, 0, 0.8) 1.1em -1.1em 0 0;
    display: inline-block;
    font-size: 1rem;
    width: 1em;
    height: 1em;
    margin: 1.5em;
    overflow: hidden;
    text-indent: 100%;
}


/* ----- media queries ----- */

@media (max-width:1200px) {
    html {
        font-size: 65.5%;
    }
    #about .text::before,
    #about .text::after {
        display: none;
    }
}

@media (max-width:991px) {
    header {
        padding: 1rem;
    }
    section {
        padding: 2rem;
    }
}

@media (max-width:768px) {
    #menu-bar {
        display: initial;
    }
    header .navmenu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        border-top: .1rem solid rgba(255, 255, 255, 0);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navmenu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header .navmenu a {
        display: block;
        font-size: 2rem;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        background: none;
        color: #fff;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }
    .heading span {
        font-size: 2.5rem;
    }
    /* .contact .row form .inputBox input {
        width: 100%;
    } */
}