@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

:root {
    --main-color:rgb(81, 15, 15);
    --shadow-black-100: 0 5px 15px rgba(0, 0, 0, 0.1);
   /* --black-900:# */
    --black-400: #555555;
     --black-100: #3a3a3a;
    --white-400:#ffff;
    --white-100: #f7f7f7;
    
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Kaushan Script', cursive;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: normal;
    background-color: var(--white-100);
}

::before,
::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.full-screen {
    padding: 80px 0 0;
    min-height: 100vh;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
    text-align: center;
}

.section-title .title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--main-color);
    padding: 5px 10px;
    z-index: 1;
    position: relative;
}

.section-title .title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.1;
}

.section-title .subtitle {
    font-size: 30px;
    color: var(--black-900);
    font-weight: 700;
    line-height: 38px;
}

.btn-1 {
    background-color: var(--main-color);
    color:white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease-out;
}

.btn-1:hover {
    border: 1px solid var(--main-color);
    background-color: transparent;
    color: var(--main-color);
}

.effect-wrap .effect {
    position: absolute;
    z-index: -1;
}

.effect-1 {
    width: 30px;
    height: 30px;
    border: 4px solid var(--main-color);
    right: 10%;
    bottom: 10%;
    animation: spin 10s linear infinite;
}

.effect-2 {
    left: 3%;
    bottom: 8%;
    width: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: topbounce 3s ease-in-out infinite;
}

.effect-2 div {
    height: 3px;
    width: 3px;
    background-color: var(--main-color);
    margin: 0 3px 8px;
}

.effect-3 {
    border-top: 30px solid transparent;
    border-left: 30px solid var(--white);
    left: 30%;
    top: 20%;
    animation: spin 15s linear infinite;
}

.effect-3::before {
    content: '';
    border-top: 30px solid transparent;
    border-left: 30px solid var(--white);
    position: absolute;
    left: -35px;
    top: -25px;
    opacity: 0.5;
}

.effect-4 {
    height: 50px;
    width: 50px;
    right: 14%;
    top: 30%;
    display: flex;
    justify-content: space-between;
    border-radius: 50%;
    overflow: hidden;
    animation: spin 15s linear infinite;
}

.effect-4 div {
    width: 1px;
    background-color: var(--main-color);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes topbounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

/* ---- Navbar ------ */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 25px;
    transition: all 0.5s ease;
}

.navbar.sticky {
    padding: 10px 25px;
    box-shadow: var(--shadow-black-100);
    background-color: var(--main-color);
}

.navbar .container {
    padding: 0 20px;
}

.logo-circle {
    height: 26px;
    width: 26px;
    border: 4px solid white ;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -2px;
    position: relative;
}

.logo-circle::before {
    content: '';
    height: 8px;
    width: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
}

.logo a {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

.navbar .menu .nav-item {
    display: inline-block;
    margin-right: 36px;
}

.navbar .menu .nav-item .nav-link {
    color:#fff;
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
}

.menu-btn {
    color: var(--white);
    background-color: var(--main-color);
    height: 34px;
    width: 44px;
    padding: 0;
    border-radius: 5px;
    line-height: 34px;
    text-align: center;
    font-size: 18px;
    display: none;
    box-shadow: var(--shadow-black-100);
}


/* ------- Home Section ---------- */
.home-section {
    position: relative;
}

.home-section::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 160%;
    bottom: 0;
    /* background-image: url('./bg-shape.svg'); */
    background-repeat: no-repeat;
    background-size: cover;
}

.home-section .home-text,
.home-section .home-image {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
}

.home-section .home-text h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 60px;
}

.home-section .home-text h2 span {
    color: var(--main-color);
}

.home-section .home-text p {
    color: var(--white);
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 60px;
    line-height: 28px;
    text-align: justify;
}

.home-section .home-image .img-box {
    max-width: 400px;
    margin: auto;
}

.home-section .home-image .img-box img {
    width: 100%;
    animation: productAnimation 5s linear infinite;
}

@keyframes productAnimation {

    0%,
    100% {
        transform: translateY(15px);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* ---------- About Section ------------ */
.about-img,
.about-text {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.about-img .img-box {
    width: 365px;
    margin: auto;
}

.about-img .img-box img {
    width: 100%;
    transition: 0.5s;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .about-content {
    font-size: 16px;
    line-height: 26px;
    color: var(--black-400);
    text-align: justify;
}

.color-container {
    margin-bottom: 30px;
}

.color-container .title {
    color: var(--black-100);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.colors {
    display: flex;
    align-items: center;
}

.color {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 5px solid;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.5s;
}


.color.blue {
    background-color: #05255a;
    border-color: #05255a;
}

.color.lightpink{
    background-color:lightpink;
    border-color: lightpink;
}

.color.brown{
    background-color:brown;
    border-color: brown;
}

.color.grey {
    background-color:grey;
    border-color:grey;
}

.color.green {
    background-color:darkgreen;
    border-color: darkgreen;
}


.color.black {
    background-color: black;
    border-color: black;
}

.color.active {
    border-color:#fff;
    box-shadow: 0 0 10px 0.5px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.price {
    margin-bottom: 30px;
}

.price .title {
    color: var(--black-100);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.price .new-price {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    padding-right: 10px;
    color: var(--black-100);
    text-decoration: line-through;
}

.price .old-price {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    color: var(--main-color);
}

.configurate {
    color: #358ed7;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 40px;
}

/*  ----------- Product Section ---------- */
.product-item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 20px;
}

.product-item .product-item-inner {
    padding: 15px;
    box-shadow: var(--shadow-black-100);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    padding: 20px 25px;
    transition: all 0.5s ease-in;
}

.card-name {
    position: absolute;
    left: -28%;
    top: 0;
    width: 3.2rem;
    height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-100);
    color: white;
    font-weight: bold;
    transition: all .5s ease-in;
}

.card-icon {
    font-size: 1.2rem;
    color: var(--black-100)
}

.card-icon:hover {
    color: var(--main-color);
}

.card-prices {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: all 0.5s ease-in;
}

.card-price {
    display: block;
    text-align: center;
}

.card-price-before {
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--main-color);
}

.card-price-now {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--black-100);
}

.product-item .product-item-inner:hover .card-name {
    left: 0;
}

.product-item .product-item-inner:hover .card-img {
    margin-left: 3rem;
}

.product-item .product-item-inner:hover .card-prices {
    margin-left: 3rem;
    padding: 0 1.5rem;
}

/* --------------- Contact Section ------------- */
.contact-info {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 20px;
}

.contact-form {
    flex: 0 0 66.66%;
    max-width: 66.66%;
    padding: 20px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--black-100);
    font-weight: 600;
    margin: 0 0 40px;
}

.contact-info-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 30px;
}

.contact-info-item i {
    position: absolute;
    height: 40px;
    width: 40px;
    left: 0;
    top: 0;
    border-radius: 50%;
    font-size: 16px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    text-align: center;
    line-height: 38px;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--black-100);
}

.contact-info-item p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
    color: var(--black-400);
}

.contact-form .left,
.contact-form .right {
    flex: 0 0 50%;
    max-width: 50%;
}

.contact-form .left {
    padding-right: 10px;
}

.contact-form .right {
    padding-left: 10px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 52px;
    width: 100%;
    border: 1px solid transparent;
    box-shadow: var(--shadow-black-100); 
    border-radius: 30px;
    padding: 0 24px;
    color: var(--black-400);
    background-color: var(--white-100);
    transition: 0.5s;
}

.contact-form .form-control:focus {
    border-color: var(--main-color);
}

.full-width {
    width: 100%;
}

.contact-form textarea.form-control {
    height: 140px;
    padding: 14px;
    resize: none;
}

/* -------- Footer Section -------- */
footer {
     background-color: rgb(213, 212, 212); 
}

.logo-circle1 {
    height: 26px;
    width: 26px;
    border: 4px solid  ;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: -2px;
    position: relative;
}

.logo-circle1::before {
    content: '';
    height: 8px;
    width: 8px;
    background-color: rgb(81, 15, 15);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -4px;
    margin-top: -4px;
}

.logo1 a {
    font-size: 32px;
    color: rgb(81, 15, 15);
    font-weight: 700;
    text-transform: capitalize;
}

.navbar .menu .nav-item {
    display: inline-block;
    margin-right: 36px;
}

.right-col,
.left-col {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
}

.social-media {
    margin: 20px 0;
}

.social-media a {
    color: var(--white);
    margin-right: 25px;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
}

.social-media a:hover {
    color: var(--main-color);
}

.left-text {
    color: var(--white);
}


.right-col h1 {
    color: var(--white);
}

.border {
    width: 100px;
    height: 4px;
    margin: 10px 0;
    background-color: var(--main-color);
}

.right-col p {
    color: var(--white);
    margin-bottom: 8px;
}


.newsletter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.txtb {
    flex: 1;
    padding: 16px 40px;
    background-color: var(--white-100);
    font-weight: 700;
    border-radius: 8px;
    outline: none;
    max-width: 360px;
}

.newsletter-form .btn-1 {
    margin-left: 6px;
}

/* --------- Media Queries -------- */
@media screen and (max-width:991px) {
    .navbar .menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--main-color);
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: all 0.5s ease;
    }

    .navbar .menu.active {
        left: 0;
    }

    .navbar.sticky .menu {
        background-color: var(--white);
        top: 65px;
    }

    .navbar .menu .nav-item {
        display: block;
        margin: 18px 0;
    }

    .navbar.sticky .menu .nav-item .nav-link {
        color: var(--main-color);
    }

    .navbar .menu-btn {
        display: block;
        z-index: 999;
        cursor: pointer;
    }

    .navbar .container {
        padding: 0;
    }

    .home-section .home-text h2 {
        font-size: 48px;
        line-height: 48px;
    }

    .home-section .home-text p {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .home-section .home-image .img-box {
        max-width: 380px;
    }

    .product-items .product-item {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .contact-form .left,
    .contact-form .right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .contact-info {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .contact-form {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .right-col,
    .left-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .left-col {
        order: 2
    }

    .right-col {
        order: 1;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:767px) {
    .effect-3 {
        left: 14%;
        top: 45%;
    }

    .effect-4 {
        top: 32%;
        right: 4%;
    }

    .contact-section .contact-info,
    .contact-section .contact-form,
    .about-section .about-img,
    .about-section .about-text,
    .home-section .home-image,
    .home-section .home-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .home-section .full-screen {
        padding: 100px 0;
    }

    .home-section .home-image .img-box {
        max-width: 350px;
        margin-top: 60px;
    }

    .about-section .about-img .img-box {
        padding-bottom: 30px;
        max-width: 300px;
    }

    .product-items .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width:500px) {
    .product-items .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .newsletter-form .txtb {
        max-width: 200px;
        padding: 16px 20px;
    }

}