body {
    padding: 0;
    margin: 0;
    background-image: url('../images/Background-pattern.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.container {
    max-width: 1248px;
    margin: 0 auto;
}

/* banner css */
.aim-banner .swiper-slide img {
    height: 558px;
    margin: 0 auto;
    display: block;
}

.aim-banner {
    position: relative;
    /* overflow: hidden; */
}

.fixed-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 2;
}

.box {
    width: 294px;
    height: 109px;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0px;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.aim-banner.swiper {
    position: relative;
    z-index: 1;
}

.box-line {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: #BE1E2D;
    transition: left 1s ease;
    z-index: 1;
    visibility: hidden;
}

.box.active .box-line {
    visibility: visible;
    left: 0;
}

.box.inactive .box-line {
    visibility: hidden;
}

.title-container {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.slide-title {
    font-size: 26px;
    color: #fff;
    font-family: 'Baloo 2';
}

.banner-img-wrapper {
    position: relative;
    max-width: 1036px;
    height: auto;
    margin: 0 auto;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.banner-img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* scroll container Section */
section.scroll-smooth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-container {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}


.logo-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-behavior: smooth;
    text-align: center;
    position: relative;
    background-image: url('../images/Pattern.jpg');
}

.logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url('../images/Background-pattern.png'),
        linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 23%, rgb(255, 255, 255) 100%);
    /* background-size: cover; */
    /* background-position: center; */
    z-index: 2;
    opacity: 0;
    transition: opacity 2s ease;
}

.logo-section.animate::before {
    opacity: 1;
}

.logo-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 23%, rgb(0, 0, 0) 100%);
    z-index: 1;
}

.logo-section .container {
    z-index: 3;
}

.logo-section img {
    width: 30vw;

}

/* header */
header {
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 20px 0;
    background-color: rgba(255 255 255 / 120%);
    box-shadow: 0 0 30px 0 rgba(0 0 0 / 10%);
}

header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .nav-menu img {
    width: 180px;
}

header .nav-menu ul.social-media {
    display: flex;
    align-items: center;
    gap: 30px;
    /* padding-right: 30px; */
    border-right: black;
    /* margin-right: 30px; */
}

header .nav-menu ul.contact a {
    color: black;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 8px;
    position: relative;
}

.social-media li {
    list-style: none;
}

.social-media li a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-family: 'Baloo 2';
    font-weight: 600;
}

.contact-btn a {
    font-family: 'Baloo 2';
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.01em;
    padding: 7px 24px;
    background-color: black;
    color: white !important;
    border-radius: 3px;
    border: 1px solid black;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn a:hover {
    background-color: white;
    color: black !important;
    border: 1px solid black;
}

.divider-border {
    border-bottom: 1px solid rgba(182, 182, 182, 1);
    margin: 0 auto;
}

.main-divider {
    padding-top: 160px;
    padding-bottom: 60px;
}

.maindivider {
    /* padding-top: 60px; */
    padding-bottom: 60px;
}

.last-divider {
    padding-top: 100px;
    padding-bottom: 100px;
}

.header-divider {
    border-left: 2px solid #000;
    height: 24px;
    margin: 0 10px;
}

/* about-section */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.main-title h2 {
    font-family: 'Baloo 2';
    font-size: 48px;
    font-weight: 600;
    line-height: 76.9px;
    text-align: center;
    margin: 0px;
    padding-bottom: 32px;

}

.about-text h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.01em;
    text-align: left;
    color: black;

}

/* our-collection */
.collection-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    /* letter-spacing: 0.01em; */
    padding: 0px;
    margin: 0px;
    line-height: 36px;
    text-align: left;

}

.collection-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.collection-slider.mySwiperr {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.collection-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 310px;
    height: 360px;
    object-fit: cover;
}

.collection-slider .swiper-slide img {
    display: block;
    width: 100%;

}

.swiper-3d .swiper-slide-shadow-left {
    background-image: none;
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

.collection-slider {
    width: 65%;
}

.sec-three {
    margin-bottom: 100px;
    padding: 0px 30px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(241, 241, 241, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.13);
    font-size: 17px;
    position: absolute;
    top: 50%;
    transform: translateY(50%);
    z-index: 20;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 17px;
}

.swiper-button-next::after {
    content: '\f105';
}

.swiper-button-prev::after {
    content: '\f104';
}

.swiper-button-next {
    right: 40px;
}

.swiper-button-prev {
    left: 40px;
}

.collection-logo {
    padding-bottom: 24px;
    width: 121px;
    object-fit: cover;
}

.swiper-wrapper .wud-img {
    height: 360px;

}

.iro-img {
    height: 350px;
}

.sec-five {
    padding: 100px 0px;
}

.collection-btn button {
    font-family: 'baloo 2';
    font-size: 24px;
    background-color: black;
    color: white;
    padding: 7px 24px;
    text-align: center;
    border: 1px solid black;
    border-radius: 4px;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.collection-btn button:hover {

    background-color: white;
    color: black;
    text-align: center;
    border: 1px solid black;
    border-radius: 4px;
}

.collection-btn {
    text-align: center;

}

a {
    text-decoration: none;
}

.collection-btn button a {
    color: white;
}

.collection-btn button:hover a {
    color: black;
}

.visit-btn {
    padding-top: 40px;
}

/* contact-us */

.contact-form .form-group {
    position: relative;
    margin-bottom: 32px;
}

form {
    background-color: transparent;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 10px 10px 50px;
    border: 1px solid rgba(201, 201, 201, 1);
    border-radius: 4px;
    outline: none;
    font-size: 20px;
    line-height: 30px;
    font-family: 'baloo 2';
    background: transparent;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-group img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

::placeholder {
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999;
}

::-ms-input-placeholder {
    color: #999;
}

.contact-form .form-group.textarea-group img {
    top: 15px;
    transform: none;
}

.contact-form {
    background: transparent;
    /* padding: 20px; */
    border-radius: 4px;
    margin: 0 auto;
    width: 60%;
    max-width: 600px;
    min-width: 300px;
}

.error-message {
    color: #BE1E2D;
    display: none;
    font-size: 16px;
    margin-top: 10px;
    font-family: 'baloo 2';
    display: none;
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
}

.contactform-btn button {
    font-family: 'baloo 2';
    font-size: 24px;
    background-color: black;
    color: white;
    padding: 7px 24px;
    text-align: center;
    border: 1px solid black;
    border-radius: 4px;
}

.contactform-btn {
    text-align: center;
    margin: 0 auto;
}

.contactform-btn button:hover {
    background-color: transparent;
    color: black;
    border: 1px solid black;

}

/* footer */
.contact-item span {
    color: rgb(241, 234, 234);
    font-family: 'baloo 2';
    font-size: 20px;
}

.contact-details h2 {
    color: white;
    font-family: 'baloo 2';
    font-size: 24px;
    font-weight: 600;
}

.main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-eight {
    padding: 69px 0px;
    margin-top: 100px;
    background-color: black;
}

.contact-item a {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-item img {
    margin-right: 10px;

}

.sec-nine {
    background-color: rgba(50, 50, 50, 1);
    padding: 13px 0px;
}

.last-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-reserved span {
    color: white;
    font-family: 'baloo 2';
    font-size: 16px;
}

.design-dev span {
    color: white;
    font-family: 'baloo 2';
    font-size: 16px;
    padding-right: 10px;
}

.design-dev a {
    display: flex;
    align-items: center;
}

.design-dev img {
    width: 12px;
}