/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --white: #fff;
    --black: #000;
    --primary: #0f75bd;
    --secondary: #303030;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* General Styling */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style-type: none;
    font-family: "Poppins", sans-serif;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

section {
    position: relative;
    padding: 6rem 0;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.imgFluid {
    max-width: 100%;
    height: auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

/* ThemeBtn */
.btnWrapper {
    display: flex;
    gap: 0.5rem;
}

.themeBtn {
    width: fit-content;
    display: block;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0.75rem 2.25rem;
}

.themeBtn--light {
    background: var(--white);
    color: var(--secondary);
}

.themeBtn--center {
    margin: 0.5rem auto;
}

.themeBtn--full {
    width: 100%;
}

.themeBtn:hover {
    transform: translateY(-10px);
    color: var(--white);
}

.themeBtn--light:hover {
    color: var(--black);
}

/* Section Heading */
.section-content {
    color: var(--black);
}

.section-content .subHeading {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: capitalize;
}

.section-content .heading {
    font-size: 4rem;
    font-weight: 700;
    text-transform: capitalize;
}

.section-content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2.25;
}

/* navigation css */

header {
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    /* padding: 1rem 0; */
    transition: 0.3s ease-in-out;
}

.header-top {
    background: var(--primary);
    padding: 0.25rem 0;
}

.header-top__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top__links ul {
    display: flex;
    align-items: center;
}

.header-top__links ul li {
    padding: 0 0.25rem;
    /* border-right: 1px solid var(--white); */
}

.header-top__links ul li a {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
}

.header-top__links ul:last-child li a i {
    font-size: 1.25rem;
}

.header-top__links ul .socialIcons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-top__links ul .socialIcons a {
    width: 30px;
    border: 1px solid var(--white);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
}

.header-main__logo {
    width: 10%;
    margin-right: 8rem;
}

.header-main__logo>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-main__nav li a {
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.35rem 0.25rem;
    margin: 0 1rem;
    text-transform: capitalize;
    position: relative;
}

.header-main__nav li a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    right: 0;
    bottom: 0;
    transition: all 300ms ease-in-out;
}

.header-main__nav li a:hover::after,
.header-main__nav li a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

.header-main__nav li a:hover,
.header-main__nav li a.active {
    color: var(--primary);
}

.header-main-two .header-main__nav {
    margin-block-start: 1rem;
}

.header-main-two .header-main__nav li a {
    padding: 0 0.25rem 0.25rem !important;
    margin: 0 0.25rem 0.25rem;
}

/* navigation css */

/* slider css */
.main-slider {
    height: 800px;
    overflow: hidden;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 2rem;
    width: fit-content;
    left: 50%;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
    width: 4.35rem;
    height: 4.35rem;
    font-size: 1rem;
    color: var(--white);
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.homeSlider .swiper-button-next {
    right: 1rem;
}

.homeSlider .swiper-button-prev {
    left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    display: inline-block;
    margin: 0 0.25rem !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
}

.homeSlider .swiper-pagination-bullet-active {
    background: var(--white);
    position: relative;
    transform: scale(0.5);
    background-color: rgba(255, 255, 255, 1);
    outline: 4px solid var(--white);
    outline-offset: 9px;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.main-slider .badge {
    width: 300px;
    background: url(../images/badge.png) no-repeat center/contain;
    padding: 2rem 2rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    color: #000000aa;
}

.main-slider h1 {
    color: var(--white);
    font-size: 113px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.main-slider h1 span {
    font-size: 50px;
}

/* slider css */

/* About Us */
.about__img {
    position: relative;
}

.about__img img:first-child {
    width: 90%;
    height: 800px;
    object-fit: cover;
}

.about__img img:not(:first-child) {
    width: 350px;
    position: absolute;
    right: -20%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0.75rem;
}

.about__img img:nth-child(2) {
    top: 3%;
}

.about__img img:last-child {
    bottom: 3%;
}

/* What We Offer */
.whatOffer--bg {
    background: var(--primary);
    clip-path: polygon(29% 13%, 60% 0, 80% 4%, 100% 0, 100% 100%, 0 100%, 0 0);
    padding: 10rem 0 6rem;
}

.whatOffer-card {
    background-color: var(--white);
    border-radius: 0.75rem;
    text-align: center;
    padding: 1rem 1.5rem;
}

.whatOffer-card>img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.whatOffer-card .title {
    font-size: 1.25rem;
    font-weight: 600;
}

.whatOffer-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #00000090;
}

/* Swiper Styling */
.swiper.offerSlider {
    padding: 2rem 0 4rem;
}

.offerSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--white);
    opacity: 1;
}

.offerSlider .swiper-pagination-bullet-active {
    background: var(--secondary);
    border: none;
}

.offerSlider+.swiper-button-prev+.swiper-button-next:after,
.offerSlider+.swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
}

.offerSlider+.swiper-button-prev,
.offerSlider+.swiper-button-prev+.swiper-rtl .swiper-button-next {
    left: -2%;
}

.offerSlider+.swiper-button-prev+.swiper-button-next,
.offerSlider+.swiper-button-prev+.swiper-rtl .swiper-button-prev {
    right: -2%;
}

/* Bids From Manufacturers */
.manufacturer-card {
    height: 330px;
    position: relative;
}

.manufacturer-card img {
    object-fit: cover;
}

.manufacturer-card .playBtn {
    width: 75px;
    color: var(--white);
    font-size: 1.25rem;
    aspect-ratio: 1/1;
    border: 3px solid var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mighty Buyer */
.mightyBuyer-card {
    width: 20%;
    padding: 2.5rem 2rem;
    color: #fff;
}

.mightyBuyer-card:nth-child(1) {
    background: #8671c0;
}

.mightyBuyer-card:nth-child(2) {
    background: #f7a337;
}

.mightyBuyer-card:nth-child(3) {
    background: #eb6176;
}

.mightyBuyer-card:nth-child(4) {
    background: #afbd79;
}

.mightyBuyer-card:nth-child(5) {
    background: #2c76bf;
}
.mightyBuyer-card .number{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 7px 5px 20px #000000aa, 9px 37px 20px #000000aa, 24px 28px 20px #000000aa, 38px 16px 20px #000000aa;
    overflow: hidden;
}
.mightyBuyer-card .number-img {
    width: 100px;
    margin-bottom: 1rem;
}

.mightyBuyer-card .title {
    font-size: 1.5rem;
}

.mightyBuyer-card p {
    color: #ffffffdd;
    font-size: 1.1rem;
}

/* Services */
.services-card {
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

.services-card--lg {
    height: 500px;
}

.services-card--sm {
    height: 380px;
}

.services-card::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    transition: all 300ms ease-in-out;
    z-index: 1;
}

.services-card>img {
    object-fit: cover;
    object-position: top;
    transition: all 300ms ease-in-out;
}

.services-card__content {
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 1;
    transform: translateY(-50%);
}

.services-card__content .title {
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.25;
}

.services-card__content .viewLink {
    color: var(--white);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.services-card:hover>img {
    transform: scale(1.1);
}

.services-card:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.services-card__content .viewLink:hover {
    border-color: var(--white);
}

/* Article */
.article-card {
    position: relative;
}

.article-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.7s ease;
}

.article-card>img {
    object-fit: cover;
}

.article-card__content {
    color: var(--white);
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 50px;
    padding-bottom: 15px;
    background: linear-gradient(to bottom,
    transparent 5%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.8) 100%);
}

.article-card__content .title {
    font-weight: 600;
}

.article-card:hover::before {
    opacity: 1;
}

/* Cta */
.cta--bg {
    background: url(../images/cta-bg.jpg);
    padding: 2rem 0;
    position: relative;
}

.cta--bg::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0.7;
}

.cta__content {
    position: relative;
}

.cta__content .userImg {
    width: 50px;
}

.cta__content h5 {
    font-size: 1.5rem;
}

.cta__content p {
    font-size: 1.1rem;
    color: #ffffffdd;
}

/* Footer */
.footer-main {
    background: var(--secondary);
    padding: 3rem 0;
}

.footer-main .quickList h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-main .quickList ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-main .quickList p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-main .quickList ul li a:hover {
    color: var(--white);
}

form.newsletter.d-flex {
    gap: 0.5rem;
}

.newsletter input {
    width: 70%;
    background: transparent;
    outline: none;
    border: 1px solid var(--white);
    padding: 0 1rem;
    color: var(--white);
}

.newsletter button {
    width: 30%;
    font-size: 0.75rem;
    border: none;
}

.copyRight {
    background: var(--black);
}

.copyRight .socialIcons {
    gap: 1rem;
}

.copyRight .socialIcons li a {
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.copyRight .socialIcons li:nth-child(1) a {
    background-color: #334980;
}

.copyRight .socialIcons li:nth-child(2) a {
    background-color: #3cf;
}

.copyRight .socialIcons li:nth-child(3) a {
    background-color: #774430;
}

.copyRight .socialIcons li:nth-child(4) a {
    background-color: #cb2027;
}

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.innerBan {
    position: relative;
}

.letDiscuss h5 {
    font-size: 1.5625rem;
    font-weight: 500;
    margin-top: 1.75rem;
}

.contactInfo li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0 0 2rem;
}

.contactInfo li figure .addressImg {
    width: 60px;
    height: 68px;
    object-fit: contain;
}

.contactInfo li figure .phoneImg {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.contactInfo li div :is(h6, a span) {
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
}

.contactInfo li div h6 {
    font-size: 20px !important;
    text-transform: capitalize;
    color: #5a5b5d !important;
}

.contactForm {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 6%));
}

.contactForm .subHeading {
    margin: 0 0 1.7rem;
    font-size: 42px;
    color: #000;
    font-weight: 600;
}

.contactForm .inputField :is(input, textarea) {
    display: block;
    width: 100%;
    padding: 0.7rem;
    background-color: var(--white);
    border: 1px solid #d9d9d9;
    font-size: 1rem;
    color: #7d7f82;
    margin: 0 0 1.25rem;
    resize: none;
    border-radius: 8px;
}

.contactForm .inputField label {
    font-size: 1.125rem;
    color: #7d7f82;
    margin-bottom: 0.75rem;
}

.contactForm .inputField .formBtn {
    display: block;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #1a75bd;
    color: #fff;
    border: unset;
    display: inline-block;
    padding: 0.68rem;
    margin-top: 0.5rem;
    transition: all 0.5s ease;
    border-radius: 10px;
}

.contactForm .inputField .formBtn:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: var(--white);
}

.letDiscuss .subHeading {
    font-size: 50px;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 600;
}

.letDiscuss ul li {
    font-size: 18px;
    list-style: disc;
    color: #7d7f82;
    list-style-position: inside;
}

.contactInfo li div :is(h6, a strong) {
    color: #000;
    font-size: 26px;
}

.accounttype {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.accounttype label {
    font-size: 25px;
    color: #5a5b5d;
}

.accounttype .checkbtn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.accounttype .checkbtn label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000;
}

form.formone .form-group label,
.buyeraccountForm .form-group label {
    font-size: 18px;
    font-weight: 500;
    color: #5a5b5d;
    margin-bottom: 10px;
    margin-top: 20px;
}

form.formone .form-group input,
.buyeraccountForm .form-group input {
    height: auto;
    border-color: #c6c8c9;
    border-radius: 8px;
    padding: 0.85rem 0.75rem;
}

form.formone {
    background: #fff;
    box-shadow: 0px 4px 22px 0 rgb(0 0 0 / 12%);
    padding: 70px 60px;
    border-radius: 20px;
}

section.accountform,
.buyerSec,
.sellerSec {
    margin-top: -12rem;
    padding-top: 0;
}

.creatbtn button.formBtn:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: var(--white);
}

.creatbtn button.formBtn,
.creatbtn a.formBtn {
    display: block;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    background-color: #1a75bd;
    color: #fff;
    border: unset;
    display: inline-block;
    padding: 0.68rem;
    margin-top: 0.5rem;
    transition: all 0.5s ease;
    border-radius: 10px;
}

form.formone h2 {
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
}

section.aboutinnr h2 {
    font-size: 4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a75bc;
}

section.aboutinnr h3 {
    font-size: 2rem;
    color: #1a75bc;
    font-weight: 700;
}

section.aboutinnr p {
    font-size: 1.1rem;
}

figure.abutmc {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.buyerwrap {
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 22px rgb(0 0 0 / 12%);
    padding: 2rem 2rem;
    border-radius: 20px;
}

.buycntnt h3 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 1rem;
}

.buycntnt p {
    font-size: 1.15rem;
    color: #000;
}

.buyerwrap figure {
    border: 1px solid #1a75bd;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    align-items: center;
    background: #1a75bd;
    margin: auto;
}

section.abtbuyer {
    background: url(../images/benfitbg.png) center/cover no-repeat;
}

.parabuy p {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 2rem;
}

.buyerwrap:hover {
    background: #1a75bd;
}

.buyerwrap:hover figure {
    border-color: #fff;
}

.buyerwrap:hover .buycntnt h3 {
    color: #fff;
}

.buyerwrap:hover .buycntnt p {
    color: #fff;
}

/* buyer css */

.buyerProfile {
    box-shadow: 0 4px 22px rgb(0 0 0 / 12%);
    border-radius: 20px;
    padding: 3rem;
    background: var(--white);
}

.profileHeading {
    font-size: 2.625rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 1.4rem;
}

.jhnProfile {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    box-shadow: 0 3px 6px rgb(0 0 0 / 6%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.jhnProfile h3 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 7px;
}

.jhnProfile p {
    font-size: 1.125rem;
    color: #8e8e8e;
    line-height: 1.8;
    margin: 0;
}

.jhnProfile figure {
    flex-shrink: 0;
}

.personalInformation {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 1.8rem; */
    box-shadow: 0 3px 6px rgb(0 0 0 / 6%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.personalInformation ul li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.personalInformation ul li strong {
    width: 165px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
}

.personalInformation ul li span {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
}

.personalInformation ul li+li {
    margin: 1rem 0 0;
}

.adMore {
    box-shadow: 0 3px 6px rgb(0 0 0 / 6%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #f1f1f1;
}

.moreForm {}

.moreForm label {
    font-size: 1.125rem;
    color: #5a5b5d;
    margin: 0 0 10px;
    display: block;
    font-weight: 500;
}

.yearBox {
    border: 1px solid #c6c8c9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.yearBox ul {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.yearBox ul li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.yearBox ul li span {
    font-size: 1rem;
    color: rgb(90 91 93 / 50%);
    font-weight: 500;
}

.yearBox ul li input {
    width: 107px;
    height: 36px;
    background: rgb(198 200 201 / 20%);
    border: 1px solid rgb(90 91 93 / 20%);
    border-radius: 12px;
    padding: 0 10px;
    margin: 0;
}

.moreForm input {
    width: 100%;
    height: 60px;
    border: 1px solid #c6c8c9;
    border-radius: 8px;
    font-size: 16px;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

.radioText {
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    gap: 7px;
}

.moreForm .d-flex {
    gap: 2.5rem;
}

.radioText .fmle {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 500;
}

.radioText input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.preferForm {
    box-shadow: 0 3px 6px rgb(0 0 0 / 6%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid #f1f1f1;
}

.preferForm label {
    font-size: 1.125rem;
    color: #5a5b5d;
    margin: 0 0 10px;
    display: block;
    font-weight: 500;
}

.preferForm :is(input, select) {
    width: 100%;
    height: 60px;
    border: 1px solid #c6c8c9;
    border-radius: 8px;
    font-size: 16px;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

a.forgot {
    display: table;
    margin-left: auto;
    margin-bottom: 15px;
    font-size: 22px;
    color: #bb230d;
    font-weight: 500;
    border-bottom: 1px solid;
    margin-top: 1rem;
}

.creatbtn.loginBtn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.creatbtn.loginBtn .formBtn {
    text-transform: capitalize;
    padding: 0.9rem 0;
    border: 2px solid transparent;
}

.creatbtn.loginBtn .formBtn+.formBtn {
    border: 2px solid #5a5b5d;
    background: transparent;
    color: #5a5b5d;
}

.header-top__links ul:nth-child(1) li {
    border-right: 1px solid var(--white);
    padding: 0 0.9rem;
}

/* buyer css end */

/* Adds */
.adds {
    width: 10%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    animation: scroll 5s linear infinite;
}

.adds--left {
    left: 5%;
}

.adds--right {
    right: 5%;
}

.adds img {
    width: 100%;
    height: 15%;
    margin: 1rem 0;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.header-main .heading {
    color: red;
    text-transform: capitalize;
}

.header-main .heading span {
    color: var(--primary);
}

.header-main__nav {
    width: 65%;
}

.header-main__form .uploadPhoto,
.buyeraccountForm .uploadPhoto {
    width: min-content;
    border: 3px solid var(--primary);
    padding: 1rem 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
}

.buyeraccountForm .uploadPhoto {
    padding: 2rem 1.75rem;
}

.header-main__form .title {
    font-size: 1.75rem;
    font-weight: 600;
}

.header-main__form>input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #000;
    margin: 0.5rem 0;
}

.buyeraccountForm .form-group {
    position: relative;
}

.buyeraccountForm .form-group span {position: absolute;right: 0;margin-block-start: -2.35rem;margin-right: 1rem;cursor: pointer;}

.buyeraccountForm-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.buyeraccountForm-flex .profileHeading {
    margin: 0;
}

.buyeraccountForm .form-group-flex {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.buyeraccountForm .radioBtn-wrap {
    gap: 6rem;
}

.buyeraccountForm .form-group select {
    height: auto;
    border-color: #c6c8c9;
    border-radius: 8px;
    padding: 0.85rem 0.75rem;
}

.buyeraccountForm-btn {
    margin-block-start: 2rem;
    gap: 1rem;
}

.buyeraccountForm-btn button {
    padding: 0.5rem 2.25rem;
    text-transform: capitalize;
    border: none;
    outline: none;
}
