* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

:root {
    --primary-color: #f97415;
    --secondary-color: #ffeee0;
    --text-color: #2c3e50;
    --bg-color: #f9f9f9;
    --font-family: "Epunda Sans", sans-serif;
}

.red {
    border: 2px solid red;
}

body {
    font-family: var(--font-family);
    /* background-color: var(--bg-color); */
    color: var(--text-color);
}


/* Navbar  */
header {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo {
    width: 200px;
    height: auto;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    /*padding: 0; */
}

.navbar ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 18px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.navbar ul li a:hover {
    color: #7c71fc;
}


.navbar ul li a.active {
    background-color: #a099f1;
    color: white;
    font-weight: 600;
}


/* Hamburger  */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    /* gap: 5px; */
}

.hamburger i {
    font-size: 25px;
}


/* Hero Section */
.hero {
    background-image: url('./Img/HeroBg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}


.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #cbd66e;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}



/* Category Section */
.category {
    padding: 60px 0 100px 0;
    background-color: #fff;
}

.sectionHeading {
    text-align: center;
    margin-bottom: 40px;
}

.sectionHeading h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sectionHeading p {
    font-size: 18px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
}

.categoryCards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}



.cateCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background-color: #f7f7f5;
    /* border-radius: 15px; */
    border: none;
    outline: none;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.cardContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #ffffff;
    /* border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px; */
}

.cardContent h2 {
    font-size: 25px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.cateCard img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    /* border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
    transition: all 0.3s ease;
}

.cateCard a {
    text-decoration: none;

}

.cardContent p {
    font-size: 16px;
    color: #777;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 0 10px;
}

.cateCard:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.cateCard:hover .cardContent {
    color: #7c71fc;
    transition: all 0.3s ease;
}

/*Why Choose Us Section */
.whyChooseUs {
    padding: 60px 0;
    background-color: #f6f5f5;
}

.chooseUs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    text-align: center;

}

.chooseCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
}

.outer-circle {
    width: 55px;
    height: 55px;
    background-color: #d7cfe8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-circle {
    width: 30px;
    height: 30px;
    background-color: #7c71fc;
    border-radius: 50%;
}

.Content {
    text-align: center;
    padding: 0 10px;
}

.Content h4 {
    font-size: 20px;
    font-weight: 600;
}

.Content p {
    font-size: 16px;
    color: #777;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

/* About Section */
.aboutImg {
    width: 80%;
    margin: 50px auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;

}

.aboutImg img {
    width: 100%;
    border-radius: 15px;
}

.aboutContent {
    width: 100%;
    margin: 50px auto;
    text-align: left;
    /* padding: 0 10px; */
}

.aboutContent h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.aboutContent p {
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin-top: 10px;
}



/* Brands Section */
.brands {

    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #f6f5f5;
    overflow: hidden;
}

.brands .sectionHeading {
    margin: 60px 0 0 0;
}

.slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    padding: 20px 0 20px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

.slide {
    flex: 0 0 200px;
    margin: 15px 15px;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    opacity: 0.5;
    transform: scale(0.8);
}

.slide img {
    width: 100%;
    border-radius: 15px;
    object-fit: contain;
    transition: all 0.5s ease;
}


.active {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}


.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    z-index: 2;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}




/* Testimonial */


.Testimonial {
    width: 100%;
    max-width: 1000px;
    height: 520px;
    position: relative;
    overflow: hidden;
}

.Testimonial-container {
    width: 100%;
    height: 80%;
    position: relative;
}


.Testimonial-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
    cursor: grab;
    opacity: 0;
    z-index: 0;
}

.Testimonial-item:active {
    cursor: grabbing;
}


.Testimonial-item.active {
    width: 300px;
    height: auto;
    /* margin-top: 50px; */
    padding: 40px 30px 50px;
    opacity: 1;
    z-index: 2;
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Left card */
.Testimonial-item.left {
    width: 30%;
    height: 100%;
    margin-left: 20px;
    /* margin-top: 20px; */

    opacity: 0.6;
    z-index: 1;
    box-shadow: 70px 0 50px 0 rgba(13, 63, 163, 0.1);
    transform: translate(-150%, -50%) scale(0.9);
}



/* Right card */
.Testimonial-item.right {
    width: 30%;
    height: 100%;
    opacity: 0.6;
    z-index: 1;
    box-shadow: 70px 0 50px 0 rgba(26, 46, 85, .1);
    transform: translate(50%, -50%) scale(0.9);
}

/* Testimonial Card Structure */
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    height: 100%;
}


.testimonial-text {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customer-details h4 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.star {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Dots Navigation */
.Testimonial-nav {
    bottom: -10px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: absolute;
    width: 100%;
}

.Testimonial-nav li {
    background: #ccc;
    border-radius: 50%;
    height: 8px;
    margin: 0 5px;
    width: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.Testimonial-nav li:hover {
    transform: scale(1.2);
}

.Testimonial-nav li.Testimonial-item-selected {
    background: #555;
}


@media only screen and (max-width:350px) {
    .Testimonial-item.active {
        width: 259px;
        padding: 20px 17px 14px
    }
}

/* testimonial end  */



/* shopBanner Section  */

.shopBanner {
    background: linear-gradient(-90deg, #585858 0%, #585858 100%);
    ;
}

.shopImg {
    width: 80%;
    margin: 0 auto;

}

.shopImg img {
    width: 70%;

}

.shopContent {
    text-align: center;
    color: #ffffff;
    padding: 150px 20px;
}

.shopContent h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.shopContent p {
    font-size: 18px;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
    margin-top: 30px;
}

.shopContent a {
    text-decoration: none;
    color: #fff;
    margin-top: 80px;
}

.shopContent .button {
    font-weight: 600;
    padding: 12px 30px;
    background-color: #d7cfe8;
    color: #7c71fc;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shopContent .button:hover {
    background-color: #7c71fc;
    color: #d7cfe8;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* Footer section  */

/* Footer  */
footer {
    width: 100%;
    background-color: #f0f4f5;
}

.footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    padding: 40px 50px;
    text-align: left;


}

.footerAbout p {
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin-top: 10px;
}

.socialIcons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding: 0;
}

.socialIcons li {
    list-style: none;
}

.socialIcons a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 20px;
    transition: all 0.3s ease;
}

.socialIcons a:hover {
    color: #7c71fc;
}

.quickLinks ul {
    padding: 0 10px 0 0;
}

.quickLinks ul li {
    list-style: none;
    margin: 10px 0;
}

.quickLinks ul li a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.quickLinks ul li a:hover {
    color: #7c71fc;
}

.footer h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact p {
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin-top: 10px;
}

.contact a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact p a:hover {
    color: #7c71fc;
}

.footerBottom {
    width: 100%;
    background-color: #ebeff0;
    min-height: 10vh;
}

.footerBottom p {
    font-size: 18px;
}
.copy {
    font-size: 25px;
}


.whatsappIcon a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cbd66e;
    width: 50px;
    height: 50px;
    color: #ffffff;
    font-size: 50px;
    z-index: 9999;
    text-decoration: none;
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    border-radius: 50%;
    /* border: 2px solid red; */
}


/* Men's collection */
.collection {
    padding: 60px 0;
    background-color: #fff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    scroll-behavior: smooth;
    /* padding: 0px 80px; */
    box-sizing: border-box;
}

.collectionCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f5;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    /* border-radius: 15px; */
    width: 250px;
    height: 350px;
    /* padding: 10px 0 0px 0; */
    margin: 10px;

}

.productImg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.productImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.collectionContent {
    text-align: left;
    padding: 0px 20px 0 20px;
    width: 100%;
    background-color: #ffffff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.collectionContent h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.collectionCard:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.collectionCard:hover .collectionContent {
    color: #7c71fc;
    transition: all 0.3s ease;
}



















/* Contact Us Section */

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    /* margin-top: 60px; */
}

.contact-form {
    background: white;
    padding: 25px;
    height: fit-content;
    margin-bottom: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}
.contact-form p{
    font-size: 18px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

#checkbox {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
    cursor: pointer;
    background-color: #7c71fc;
}

input[type="checkbox"] {
  accent-color: #7c7c7c;
}

.contactBtn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    background-color: #d7cfe8;
    color: #7c71fc;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contactBtn:hover {
    background-color: #7c71fc;
    color: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    height: 121px;
    resize: vertical;
}




.contact-info {
    padding: 40px 20px;
    width: 100%;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-method {
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    /* border: 2px solid red; */
    width: 83%;
    padding: 20px 50px 20px 0;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.contact-icon {
    /* padding-left: 20px; */
    margin-left: 15px;
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-icon.phone {
    color: #7c71fc;
}

.contact-icon.email {
    color: #7c71fc;
}

.contact-icon.address {
    color: #7c71fc;
    font-size: 20px;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details .contact-value {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-value a {
    text-decoration: none;
    color: #667eea;
    transition: color 0.3s ease;
}

.contact-details .contact-description {
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-description a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease;
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    height: 500px;
    border-radius: 12px;

}

.map iframe {
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
    border-radius: 12px;
}

/* @media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .header h1 {
        font-size: 2.2rem;
    }

    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
} */



/* About section */

.story {
    /* max-width: 900px; */
    width: 80%;
    margin: 60px auto;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
}

.story h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
}

.story p {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #6b7280;
    text-align: left;
    margin-bottom: 15px;
}

.features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.featureCard {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.featureCard:hover {
    transform: translateY(-5px);
}

.featureCard i {
    font-size: 28px;
    color: #7c71fc;
    margin-bottom: 10px;
}

.featureCard h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #1f2937;
}

.featureCard p {
    font-size: 16px;
    color: #6b7280;
    font-family: 'Poppins', sans-serif;
}

/* Mission Section */
.mission {
    background: #f5f5f5;
    border-radius: 12px;
    width: 80%;
    margin: 30px auto;

    padding: 40px 20px;
    text-align: center;
}

.mission h2 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
}

.mission p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #6b7280;
}



/* Terms and Conditions and Privacy Policy */

.t-c-ol p {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: #555;
}

.t-c-ol>li {
    margin-top: 50px;

}

.t-c-ol h6 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

ol>li::marker {
    font-weight: bold;
    color: #000;
}

.privacy-policy {
    margin-bottom: 40px;
}

.privacy-policy p {
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    color: #555;
}



/* thank you page  */

.thank-you {
    padding: 80px 0;
    background: #f9f9f9;
}

.thank-you-title span {
    color: #7c71fc;
}

.thank-you-icon {
    margin: 0 auto 30px;
    width: 100px;
    filter: drop-shadow(0 2px 5px #d7cfe8);
}

.checkmark {
    width: 100px;
    height: 90px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #7c71fc;

    stroke-miterlimit: 10;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7c71fc;

    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(255, 193, 7, 0.1);
    }
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.thank-you-icon:hover {
    animation: pulse 1.5s infinite;
}

.thank-you-title {
    font-size: 65px;
    font-weight: 600;
}

.thank-you-content p {
    line-height: 3;
    font-size: 16px;
    color: #555;
    font-family: 'Poppins', sans-serif;
}

.next-step {
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.blogText h3 {
    font-weight: 600;
    font-size: 35px;
    padding: 15px 0;
}

.contact-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0
}

.contact-methods a {
    background-color: #d7cfe8;
    color: #7c71fc;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;

    padding: 0 30px;
    font-size: 20px;
    transition: .4s;
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.contact-methods a:hover {
    background-color: #7c71fc;
    color: #fff;
}

.back-to-home a {
    background-color: #d7cfe8;
    color: #7c71fc;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    height: 60px;
    line-height: 62px;

    padding: 0 30px;
    font-size: 20px;
    transition: .4s;
    border: 0 none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.back-to-home a:hover {
    background-color: #7c71fc;
    color: #fff;
}

.shape {
    position: absolute;
    border-radius: 50%;
    /* opacity: 0.6; */
    /* z-index: 1; */
}

.shape li {
    list-style: none;
}



.shape1 {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 20vh;
    left: -300px;
}

.shape1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.shape2 {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 20vh;
    left: -10px;
}

.shape2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.shape3 {
    position: absolute;
    width: 90px;
    height: 90px;
    top: 20vh;
    left: 250px;
    transform: translateX(-50%);
}

.shape3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.star {
    animation: 5s rotate infinite;
    animation-timing-function: linear;
}





/* .star:after {
  transform: rotate(45deg);
} */