:root {
    --white: #fff;
    --black: #000;
    --theme: #155fa2;
    --primary: #ff4646;
    --secondary: #494e62;
}

html {
    /*scroll-behavior: smooth;*/
}

body {
    position: relative;
    background: #000;
    overflow-x: hidden;

    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1170px;
    }
}

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

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    /* font-family: "Poppins", sans-serif; */
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 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;
}

figure {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

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

header.sticky {
    position: fixed;
}

header .topRow {
    padding: 0rem 4rem;
    background-color: var(--white);
}

header .topRow .opt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 2rem;
}

header .topRow .opt a {
    color: var(--secondary);
    position: relative;
    font-size: 1rem;
    padding-right: 0.6rem;
}

header .topRow .cartBtn {
    font-size: 1.75rem;
    color: var(--secondary);
    line-height: 1;
}

header .topRow .cartBtn span {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    font-size: 10px;
    place-items: center;
    width: 14px;
    height: 14px;
    background-color: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}
header .topRow .opt a i {
    padding-right: 0.5rem;
}
.navbar {
    background-color: #35353d;
    padding: 1rem;
}

.logoImg {
    max-width: 250px;
}

.navbar-nav {
    gap: 1rem 1rem;
}

#navbarSupportedContent {
    padding: 0.3rem 7rem;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 15px;
    font-weight: normal;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link i {
    padding-left: 0.2rem;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -21px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--primary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-item.dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar-nav .nav-item.dropdown ul li {
    min-width: 180px;
    position: relative;
    list-style: none;
}

.navbar-nav .nav-item.dropdown ul li a {
    padding: 0.8rem;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: capitalize;
}

.navbar-nav .nav-item.dropdown .nav-link:after {
    content: "\eaa0";
    font-family: "Font Awesome 5 Brands";
    position: absolute;
    right: 15px;
}

.navbar-nav .nav-item.dropdown:hover ul {
    opacity: 1;
    top: 3.2rem;
    left: 0;
    visibility: visible;
}

.navbar-nav .nav-item.dropdown ul li a:hover {
    background: #f24242;
    color: var(--white);
}

.main-slider {
    position: relative;
}

.carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0rem;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0;
}

.btnSec a {
    position: relative;
    top: -3.7rem;
    left: 0;
    right: 0;
    bottom: 0;
}

.btnSec .themeBtn {
    margin: 0 1rem;
    padding: 1.1rem 5.9rem;
}

.main-slider .container {
    position: relative;
}

.main-slider .btnSec {
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
}

/*themeBtn css start*/

.themeBtn {
    color: #fff;
    padding: 0.8rem 4rem;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.themeBtn {
    color: #fff;
    background-color: var(--theme);
    border: 1px solid var(--theme);
    box-shadow: 0 0 5px #155fa2, 0 0 5px #155fa2 inset;
    z-index: 2;
    transition: all 0.3s ease;
    overflow: hidden;
}

.themeBtn:after {
    position: absolute;
    content: ' ';
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.themeBtn:hover {
    color: #fff;
    box-shadow: 0 0 7px #fff, 0 0 7px #fff inset;
}

.themeBtn:hover:after {
    background: var(--primary);
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 1), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 1), inset 4px 4px 6px 0 rgba(116, 125, 136, 0.3);
}

/*themeBtn css end*/

/*aboutSec css start*/

.abtSec h2 {
    font-size: 2.4rem;
    font-weight: 500;
    text-transform: uppercase;
}

.abtSec p {
    font-size: 1.25rem;
    line-height: 2;
    color: #747a80;
    padding-top: 2rem;
}

.abtSec p span {
    background: #be2845;
    color: #fff;
    padding: 0.3rem;
}

/*aboutSec css end*/

/*productSec css start*/
.productSec {
    background-color: #111111;
}

.productSec h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}

.prodctBox {
    position: relative;
    background: #363636;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prodctBox .contnt h4 {
    margin: 0 0 1.4rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.prodctBox .contnt .themeBtn {
    padding: 0.4rem 1.4rem;
}

.prodctBox .contnt {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background: rgba(0, 0, 0, 0.5);
}

.productSec .row {
    gap: 3.5rem 0;
}

.prodctBox:hover .contnt {
    transform: scale(1);
}

/*productSec css end*/
/* Begin: workTipSec CSS */

.workTipSec {
    background-color: #f8f8f8;
    padding-bottom: 0;
}

.workTipSec .title {
    margin-bottom: -3rem;
}

.workTipsSlider .swiper-slide .swiper-slide-shadow-left,
.workTipsSlider .swiper-slide .swiper-slide-shadow-right,
.videoThumb > img {
    border-radius: 45px;
}

.workTipsSlider .swiper-slide-active {
    padding: 0 15rem;
    top: 7rem;
}

/* END: workTipSec CSS */

/*printSec css start*/
.printBox {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
}

.printBox:before {
    content: '';
    background: #ff0025;
    position: absolute;
    inset: 0 50px;
    z-index: -1;
    top: 30%;
    border-radius: 30px;
}

.printBox h4 {
    padding-top: 4rem;
    font-size: 2.5rem;
    font-weight: 500;
}

.printBox h2 {
    font-size: 2.9375rem;
    font-weight: 700;
    margin-top: 10rem;
}

.printPic {
    margin-top: 9rem;
    /* transform: scale(1.2); */
}

/*printSec css end*/

/*teamSec css start*/

.teamSec {
    padding-top: 0;
}

.teamSec h2 {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.teamBox .teamCtnt {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background: rgba(0, 0, 0, 0.5);
}

.teamCtnt h4 {
    padding-top: 2rem;
}

.teamSec .row {
    gap: 3.5rem 0;
}

.teamBox:hover .teamCtnt {
    transform: scale(1);
}

/*teamSec css end*/

/* Begin: workTipSec CSS */

.workTipSec {
    background-color: #000;
    padding-bottom: 0;
}

.workTipSec h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
}

.workTipSec .title {
    margin-bottom: -3rem;
}

.workTipsSlider .swiper-slide .swiper-slide-shadow-left,
.workTipsSlider .swiper-slide .swiper-slide-shadow-right,
.videoThumb > img {
    border-radius: 45px;
}

.workTipsSlider .swiper-slide-active {
    padding: 0 15rem;
    top: 7rem;
}

.playVid figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*workSec css start*/
.workSec {
    padding: 0;
}

.workSec h2 {
    font-size: 3.125rem;
    color: #0f1218;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 2rem 0;
}

.workBox .workCtnt {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background: #11416d8a;
    height: 393px;
}

.workCtnt h4 {
    padding-top: 2rem;
}

.workBox:hover .workCtnt {
    transform: scale(1);
}

.workSec .container-fluid {
    padding: 0;
}

/* testimonialSec */

.testimonialSec {
    background-color: #111111;
}

.testimonialSec h2 {
    font-size: 3.125rem;
    font-weight: 500;
    text-transform: uppercase;
}

.testimonialCard {
    border-radius: 3px;
    background: #363636;
    padding: 2rem;
}

.testimonialSlider .col-md-4 {
    flex: 100%;
    max-width: 100%;
}

.testimonialCard .rating {
    display: block;
    color: #ffcc00;
    font-size: 1rem;
}

.testimonialCard .topWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.testimonialCard h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 0.5rem;
    font-family: 'Poppins';
    color: var(--theme-color);
    line-height: 1;
}

.testimonialCard p {
    font-size: 15px;
    font-weight: 500;
    color: #6f6f6f;
    font-style: italic;
    line-height: 1.933;
    text-align: left;
}

.testimonialCard .imgWrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.user-content {
    display: flex;
    gap: 0 20px;
    align-items: center;
}

.testimonialSlider .slick-next::before,
.testimonialSlider .slick-prev::before {
    content: none;
}

.testimonialSlider .slick-dots {
    bottom: -3rem;
}

.slider-h6 span {
    display: block;
    color: #a8a8a8;
}

.slider-h6 {
    margin-bottom: 0;
}

.testimonialSlider .slick-dots li button:before {
    width: 16px;
    height: 16px;
    background: #828282;
    font-size: 0;
    opacity: 1;
    border-radius: 50%;
    top: 4.5px;
    left: 4.99px;
}

.testimonialSlider .slick-dots .slick-active button:before {
    background-color: var(--white);
}

/* Begin: Instagram */

.instaCard {
    position: relative;
}

.instaCard .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background-color: rgba(0, 0, 0, 0.6);
}

.content figure {
    display: flex;
    justify-content: center;
}

.instaCard a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

.instaCard:hover .content {
    transform: scale(1);
}

/* END: Instagram */

/*footer css start*/
.footer {
    background-color: #111111;
    padding-top: 5rem;
}

.footer h4 {
    font-weight: 600;
    padding: 0.3rem 0;
}

.footer p {
    color: #a8a8a8;
    margin: 0;
}

.footer ul li a {
    color: #a8a8a8;
    line-height: 2.3;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer .col-md-3 {
    border-right: 2px solid #393939;
    padding: 0 2rem;
}

.socialIo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 8px;
    padding: 1rem 0;
}

.socialIo li a {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    font-size: 1.375rem;
    display: grid;
    place-items: center;
    background: var(--white);
}

.socialIo li a:hover {
    background-color: var(--theme);
    color: white !important;
}

.terms {
    display: flex;
    gap: 1rem;
    color: #949494;
}

.footer .themeBtn {
    padding: 0.5rem 1rem;
    margin: 1rem 0;
}

.lastCol {
    border-right: unset !important;
}

/*footer css end*/

/* Inner Pages Css */
.abtSec.aboutInner p {
    font-size: 0.975rem;
    color: #b6b6b6;
    line-height: 2;
}

.prodctBox.signBnnr {
    flex-direction: column;
    padding: 2rem 0;
    justify-content: space-between;
}

.teamSec.teamInner {
    padding-top: 0;
    margin-top: -5rem;
}

.galleryWrap {
    display: block;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--black);
}

.galleryWrap img {
    opacity: 0.75;
    width: 100%;
    transition: opacity, ease all 2s;
    transform: scale(1);
}

.galleryWrap:hover img,
.galleryWrap:focus img {
    opacity: 1;
    transform: scale(1.1);
}

.signInSection h2,
.contactSec h2,
.gallerySec h2 {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}

.contactInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contactInfo span {
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
    font-family: 'Montserrat';
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
}

.contactSec .form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}

.contactSec .form-group .form-control {
    background-color: rgb(255, 255, 255);
    min-height: 56px;
    border: 0;
    border-radius: 0;
}

.contactSec .form-group textarea.form-control {
    height: 290px;
    margin: 0.5rem 0 2rem;
}

.form-check-input {
    margin-top: 0;
}

.contactSec button.themeBtn {
    background-color: rgb(255, 70, 70);
    height: 60px;
    width: 100%;
    border: 0;
}

.signInSection {
    background: url(../images/signBg.jpg) right center/auto no-repeat;
    display: flex;
    align-items: center;
    min-height: 850px;
}

.signInSection .form-group {
    margin-bottom: 2rem;
}

.signInSection .form-group .form-control {
    background: transparent;
    border: 2px solid #707070;
    height: 70px;
}

.signInSection .btn-group {
    gap: 1rem;
    display: flex;
    width: 100%;
}

.signInSection .btn-group .themeBtn {
    width: 100%;
    height: 70px;
    display: inline-flex;
    align-items: center;
    border: 0;
    justify-content: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.signInSection .btn-group .themeBtn:first-child {
    background-color: var(--primary);
}

.signInSection p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    margin: 1rem 0;
    text-transform: uppercase;
}

.signInSection p a {
    color: var(--white);
    font-size: 1rem;
    text-decoration: underline !important;
}

.signInSection p a:hover {
    color: var(--primary);
}

.signInSection h3 {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    flex: 1;
    margin: 1rem 0 2rem;
}

.signInSection h3 span {
    flex: 1;
    height: 2px;
    background-color: var(--white);
}

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

.signInSection ul li {
    flex: 1;
}

.signInSection ul li a {
    display: grid;
    place-items: center;
    height: 70px;
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 7px;
    background-color: rgb(255, 255, 255);
    font-size: 1.5rem;
}

.shippingSec h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 600;
}

.shippingSec p {
    font-size: 0.925rem;
    font-weight: 400;
    color: #b6b6b6;
    line-height: 2;
}

.shippingSec ul li {
    font-size: 0.925rem;
    font-weight: 400;
    color: #b6b6b6;
    line-height: 2;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.shippingSec ul li::before {
    content: '';
    height: 10px;
    width: 10px;
    background-color: var(--white);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
}

/* Step 2 Css Start */

.checkOutStyle {
    padding: 4em 0px;
}

.checkOutStyle .title h4 {
    line-height: 24px;
    font-size: 24px;
    font-weight: 600;
}

.checkOutStyle .title p {
    line-height: 16px;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.checkOutStyle .title p a {
    color: var(--primary);
    font-weight: 600;
}

.formStyle label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
}

.formStyle .form-control {
    height: 50px;
    margin-bottom: 20px;
}

.formStyle textarea.form-control {
    height: auto;
    resize: none;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox input[type='checkbox'] {
    display: none;
}

.checkbox input[type='checkbox'] + label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--white);
    cursor: pointer;
}

.checkbox input[type='checkbox'] + label:last-child {
    margin-bottom: 0;
}

.checkbox input[type='checkbox'] + label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.checkbox input[type='checkbox']:checked + label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-summery hr {
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.order-summery .applyCoupon {
    display: flex;
}

.order-summery .applyCoupon .form-control {
    width: calc(100% - 150px);
    margin: 0;
    border-radius: 5px 0 0 5px;
}

.order-summery .applyCoupon .btnStyle {
    width: 150px;
    border-radius: 0 5px 5px 0;
}

.order-summery strong,
.order-summery span {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.order-summery strong {
    color: var(--white);
}

.cartItemCard {
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #d2d2d2;
    text-align: center;
}

.cartItemCard img {
    width: 100%;
}

.cartItemCard .price {
    color: var(--white);
}

.proCounter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter .minus,
.proCounter .plus {
    width: 50px;
    height: 50px;
    background: #ccc;
    border: 1px solid #ccc;
    color: #616161;
    font-size: 25px;
    padding: 4px 5px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter input {
    height: 50px;
    width: 60px;
    text-align: center;
    font-size: 16px;
    border: 0;
    background: transparent;
    border: 1px solid #ccc;
}

.cartItemCard .delete i {
    color: #000;
    font-size: 24px;
}

.shipping-billing-col {
    list-style: none;
    border-top: 1px solid #ccc;
    margin-top: 22px;
    padding: 0;
}

.shipping-billing-col p,
.shipping-billing-col a {
    position: relative;
    color: var(--white);
    font-size: 16px;
    line-height: 26px;
}

.shipping-billing-col p {
    margin: 0px;
    padding: 20px 0 20px 40px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #ccc;
}

.shipping-billing-col p i {
    position: absolute;
    top: 24px;
    left: 0;
    font-size: 18px;
    color: var(--white);
}

.shipping-billing-col .edit {
    color: var(--white);
    text-transform: capitalize;
    font-size: 16px;
    padding: 0;
    float: right;
}

.privacy-sec {
    padding: 4rem 0rem;
}

.privacy-sec h2 {
    font-size: 2rem;
    font-weight: 600;
}

.privacy-sec h6 {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem 0rem;
}

.btnStyle {
    background-color: var(--theme-color);
    padding: 1em 2em;
    display: inline-block;
    border-radius: 50px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--theme-color);
}

.btnStyle:hover {
    background-color: var(--white);
    color: var(--theme-color);
}

.title h2 {
    font-size: 2.25rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
    margin: 0;
}

.title {
    margin-bottom: 1em;
}

.checkOutStyle .btnStyle {
    border: 1px solid var(--white);
}

/* Step 2 Css End */

/* Begin: Access Pages CSS */
.accountAccesSec {
    padding: 8rem 0;
    text-align: center;
}

.accountAccesSec .whitebg {
    background: #fff;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 20px 6px rgb(0 0 0 / 4%);
}

.accountAccesSec h2 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 3rem;
    color: #000;
}

.accountAccesSec h2 span {
    display: block;
    font-weight: 200;
    font-size: 40px;
}

.accountAccesSec .formStyle {
    padding: 0;
    border: 0;
}

.accountAccesSec .formStyle label {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    text-align: left;
    color: #000;
}

.accountAccesSec .formStyle .form-control {
    padding: 6px 20px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.accountAccesSec .formStyle .forgetPass {
    color: #231f20;
    border-bottom: 1px solid #231f20;
    text-decoration: none;
}

.or {
    margin: 30px 0 10px;
    border-top: 1px solid #ccc;
}

.or span {
    position: relative;
    top: -13px;
    background: #fff;
    padding: 3px 10px;
}

.accountAccesSec p a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

.socialIo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.socialIo li a {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    line-height: 44px;
    font-size: 18px;

    color: var(--black);
    border: 1px solid var(--black);
}

.socialIo li a:hover {
    background-color: var(--black);
    color: var(--white);
}

section.accountAccesSec p {
    color: #000;
}

/* END: Access Pages CSS */
.myAccount {
    padding: 8rem 0;
}

.tabNavStyle {
    background: #f1f2f2;
    border: 10px solid #fff;
    box-shadow: 3px 3px 16px 0px rgb(0 0 0 / 0.05);
    border-radius: 8px;
}

.tabNavStyle .userNamePic {
    display: flex;
    width: 100%;
    padding: 10px;
}

.tabNavStyle .userNamePic img {
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

.tabNavStyle .userNamePic .content {
    padding-left: 14px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
}

.tabNavStyle .userNamePic .content h4 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: #01284b;
    margin: 0;
}

.tabNavStyle .userNamePic .content p {
    margin: 0;
    line-height: 20px;
}

.tabNavStyle .nav-item {
    width: 100%;
}

.tabNavStyle li a,
.tabNavStyle .nav-item .nav-link {
    padding: 12px 10px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b3e40;
    border-top: 1px solid #fff;
    border-radius: 0;
}

.tabNavStyle .nav-item .nav-link.active {
    background: var(--theme-color);
}

.tabNavStyle .nav-item .nav-link i {
    width: 30px;
    font-size: 22px;
}

.myAccount .tab-pane {
    box-shadow: 3px 3px 16px 0px rgb(0 0 0 / 0.05);
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    min-height: 370px;
}

.myAccount h2.title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    border-bottom: 1px solid #f1f2f2;
    padding: 10px 0 20px;
    margin-bottom: 30px;
}

.myAccount #address h2.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 20px;
}

.myAccount #address h2.title .btnStyle {
    padding: 16px 20px;
    border-radius: 4px;
}

.myAccount .tab-pane h4 {
    font-size: 18px;
    font-weight: 600;
}

.myAccount .tab-pane p {
    margin: 0;
}

.myDashboardTab .noRecord {
    background: #f1f2f2;
    padding: 12px 15px;
}

.orderTable {
    border: 1px solid #ededee;
}

.orderTable thead {
    background: #f6f6f6;
}

.orderTable thead tr th {
    font-weight: 500;
}

.orderTable thead tr th,
.orderTable tbody tr td {
    vertical-align: middle;
    width: 15%;
    border-color: #ededee;
}

.orderTable tbody tr td {
    font-size: 0.9rem;
}

.orderTable tbody tr td span {
    display: none;
}

.orderTable tbody tr td .btnStyle,
.wishlistItemTable .remove .removeBtn {
    background: #fff;
    color: #231f20;
    border: 1px solid #b7b7b7;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 5px;
    text-align: center;
    font-size: 14px;
    text-transform: capitalize;
}

.orderTable tbody tr td .btnStyle.btn-block {
    min-width: 100%;
    margin: 0 0 4px;
}

.orderTable tbody tr td .btnStyle.btn-block,
.orderTable tbody tr td .btnStyle:hover {
    text-decoration: none;
}

.orderTable tbody tr td:last-child {
    text-align: justify;
    width: 20%;
}

.accounTab .formStyle label span {
    color: var(--theme-color);
}

.accounTab .formStyle .form-control {
    border-radius: 6px;
    border-color: #d1d3d4;
}

.formStyle .CNum {
    border: 1px solid #d1d3d4;
    border-radius: 6px;
}

.formStyle .CNum .dropdown-toggle {
    border: 0;
    border-right: 1px solid #d1d3d4;
    background: transparent;
    font-size: 14px;
}

.formStyle .CNum .dropdown-toggle:hover,
.formStyle .CNum .dropdown-toggle:focus {
    color: #231f20;
    background: #fff;
    box-shadow: none;
}

.formStyle .CNum .form-control {
    margin: 0;
    border: 0;
}

.custom-control-input {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.custom-radio input + label.custom-control-label:before {
    width: 22px;
    height: 22px;
    left: -33px;
    top: -3px;
    background: #fff;
    border-color: var(--theme-color);
}

.custom-radio input:checked + label.custom-control-label:before {
    background: #fff;
    border-color: var(--theme-color);
}

.custom-radio input + label.custom-control-label:after {
    background-color: var(--theme-color);
    background-image: none !important;
    border-radius: 100px;
    top: 3px;
    left: -27px;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.custom-checkbox input + label.custom-control-label::before {
    width: 22px;
    height: 22px;
    border-color: var(--theme-color);
    border-radius: 0;
    left: -38px;
    top: -3px;
}

.custom-checkbox input:checked + label.custom-control-label::before {
    background: #fff;
    border-color: var(--theme-color);
}

.custom-checkbox input + label.custom-control-label::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    color: var(--theme-color);
    font-size: 14px;
    top: 2px;
    left: -34px;
    opacity: 0;
}

.custom-checkbox input:checked + label.custom-control-label::after,
.custom-radio input:checked + label.custom-control-label:after {
    opacity: 1;
}

.accounTab .custom-control {
    margin-bottom: 20px;
    padding-left: 40px;
    margin-right: 0;
}

.accounTab .changePassword {
    width: 100%;
    border-top: 1px solid #dedfe0;
    padding-top: 20px;
    margin-top: 10px;
}

.orderTab .alert {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
    background: #f2fbeb;
    border-color: #d7e5cc;
    border-radius: 0;
    text-align: left;
}

.orderTab .alert span {
    flex: 0 0 50%;
    color: #548630;
    font-size: 14px;
    line-height: 1.8;
}

.wishlistItemTable .itemCell .item,
.wishlistItemTable .item-header .item {
    width: 55%;
}

.wishlistItemTable .itemCell .price {
    width: 20%;
    text-align: left;
}

.wishlistItemTable .itemCell .remove {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}

.wishlistItemTable .itemCell .remove .btnStyle {
    border-radius: 4px;
    padding: 6px 12px;
    /*color: #fff;*/
}

.wishlistItemTable .item-header .price {
    text-align: left;
    width: 20%;
}

.wishlistItemTable .itemCell .remove .removeBtn {
    color: #231f20;
}

.myAccount .adressCard {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 6px 6px 22px rgb(0 0 0 / 0.06);
}

.myAccount .adressCard .edit,
.myAccount .adressCard .remove {
    width: 35px;
    height: 35px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.myAccount .adressCard .edit {
    right: 50px;
}

#OrderDetailModal .modal-dialog {
    max-width: 900px;
}

#OrderDetailModal .modal-dialog .modal-body {
    padding: 15px;
}

#OrderDetailModal .orderTable thead tr th,
#OrderDetailModal .orderTable tbody tr td {
    width: auto;
}

#OrderDetailModal .orderTable tbody tr td p {
    margin: 0;
}

.orderTable tbody tr td .btnStyle.btn-block {
    min-width: 100%;
    margin: 0 0 4px;
}

.myAccount .adressCard {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 6px 6px 22px rgb(0 0 0 / 0.06);
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    min-width: 270px;
    margin-right: 10px;
    padding: 10px;
    position: relative;
}

.adressCard .tag {
    background: var(--black);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.myAccount .adressCard address {
    margin: 20px 0 0;
    font-size: 0.9rem;
    line-height: 1.8;
}

.myAccount .adressCard address span {
    display: block;
}

.myAccount .adressCard .edit,
.myAccount .adressCard .remove {
    width: 35px;
    height: 35px;
    border: 1px solid var(--black);
    color: var(--theme-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.myAccount .adressCard .edit {
    right: 50px;
}

.wishlistTable .img-fluid {
    width: 70px;
    margin-right: 5px;
}

.wishlistTable .d-flex {
    align-items: center;
}

.wishlistTable .d-flex p {
    margin: 0;
    font-size: 15px;
}

.wishlistTable thead tr th,
.wishlistTable tbody tr td,
.wishlistTable tbody tr td:last-child {
    width: auto;
}

.wishlistTable tbody tr td:last-child {
    text-align: right;
}

.btn-border {
    display: inline-block;
    padding: 9px 40px;
    border: 1px solid var(--theme-color);
    color: #010101;
    background: #fff;
    border-radius: 4px;
    text-transform: capitalize;
    text-align: center;
    font-size: 16px;
    line-height: 21.333333333333332px;
    font-weight: 500;
}

section.myAccount h4 {
    color: #000;
}

section.myAccount p {
    color: #000;
}

.accounTab label {
    color: #000;
}

/* END: My Account CSS */
.product-detail-nav {
    padding-top: 15px;
}

.product-detail-nav img {
    width: 171px;
}

.product-detail-slider img {
    width: 95.8%;
}

.productDetail {
    padding: 100px 0;
}

.product-detail-nav .slick-next {
    display: none !important;
}

.product-detail-nav .slick-prev {
    display: none !important;
}

.proCounter .minus,
.proCounter .plus {
    width: 50px;
    height: 50px;
    background: #ccc;
    border: 1px solid #ccc;
    color: #616161;
    font-size: 25px;
    padding: 4px 5px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter input {
    height: 50px;
    width: 60px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border: 0;
    background: transparent;
    border: 1px solid #ccc;
}

.proCounter {
    margin: 20px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.count {
    justify-content: left;
}

.cartBtn .themeBtn {
    background-color: var(--theme-color);
    padding: 1em 2em;
    display: inline-block;
    border-radius: 50px;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    border: 1px solid var(--theme-color);
}

.cartBtn .themeBtn:hover {
    background-color: var(--white);
    color: var(--white);
}

.prodctdetailContent h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
}

.prodctdetailContent span {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}

.prodctdetailContent p {
    color: #fff;
    padding: 20px 0;
    font-weight: 400;
    width: 78%;
    line-height: 1.6;
}

.prodctdetailContent p span {
    font-weight: 800;
    font-size: 15px;
    color: #fff;
}

.sku p {
    font-weight: 400;
    color: #fff;
}

.sku {
    padding-top: 25px;
}

.cartBtn {
    margin-left: 20px;
}

.product-detail-slider img {
    width: 98%;
}

.orderTable .themeBtn {
    padding: 12px 27px;
}

/* multi form css */

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset {
}

.form-card {
    text-align: left;
}

/*#msform fieldset:not(:first-of-type) {*/
/*    display: none;*/
/*}*/

#msform input,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2c3e50;
    background-color: #eceff1;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673ab7;
    outline-width: 0;
}

#msform .action-button {
    width: auto;
    background: #ff4646;
    font-weight: 600;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 13px 24px;
    margin: 1rem 0 0 0;
    /* float: right; */
    display: table;
    text-transform: uppercase;
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #311b92;
}

#msform .action-button-previous {
    width: auto;
    background: #616161;
    font-weight: 600;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 14px 17px;
    margin: -50px 0 0 8rem;
    display: table;
    font-size: 15px;
    text-transform: uppercase;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000;
}

.card {
    z-index: 0;
    border: none;
    position: relative;
    background: transparent;
}

.fs-title {
    font-size: 25px;
    color: #673ab7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: #673ab7;
    font-weight: normal;
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.fieldlabels {
    color: gray;
    text-align: left;
}

#progressbar {
    margin-bottom: 4rem;
    overflow: hidden;
    color: lightgrey;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

#progressbar .active {
    color: #673ab7;
}

#progressbar li {
    /* list-style-type: none; */
    /* font-size: 15px; */
    /* width: 25%; */
    /* float: left; */
    position: relative;
    /* font-weight: 400; */
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: '\f13e';
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: '\f007';
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: '\f030';
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: '\f00c';
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 17px;
    /* background: #e8e8e8; */
    position: absolute;
    left: 0;
    top: 65px;
    z-index: -1;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #ff4646;
    width: 144%;
}

.progress {
    height: 20px;
}

.progress-bar {
    background-color: #673ab7;
}

.fit-image {
    width: 100%;
    object-fit: cover;
}

#progressbar li {
    /* width: 100%; */
}

#progressbar li span {
    font-size: 50px;
    color: var(--white);
    line-height: 1.2;
    border-width: 2px;
    border-color: rgb(255, 70, 70);
    border-style: dashed;
    border-radius: 50%;
    background-color: rgb(59, 69, 88);
    width: 141px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#progressbar li span small {
    font-size: 22px;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
}

#progressbar:before {
    content: '';
    width: 93%;
    height: 17px;
    background: #e8e8e8;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: -1;
}

.count {
    /* display: block; */
    position: relative;
    padding-left: 36px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hide the browser's default radio button */
.count input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 16px;
    left: 15px;
    /* background-color: transparent; */
    border-radius: 50%;
    /* border: 1px solid #e5e5e5; */
    width: 35px;
    height: 35px;
    background: #fff;
}

/* On mouse-over, add a grey background color */
.count:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.count input:checked ~ .checkmark {
    background-color: #ff4646;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.count input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.count .checkmark:after {
    top: 9px;
    left: 13px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.count input:checked ~ .checkmark:after {
    display: block;
}

/* .count .checkmark:after {
	top: 6px;
	left: 6px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #00a79d;
} */
.setCheck {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 6rem 0;
    position: relative;
    border: 2px solid #ffffff;
    min-height: 429px;
    margin-bottom: 2rem;
}

.setCheck .count {
    position: absolute;
    left: 1rem;
    top: 1rem;
    width: 100%;
    height: 100%;
    padding: 0;
    top: 0;
    left: 0;
}

.setCheck h6 {
    position: absolute;
    bottom: 10px;
    color: var(--black);
    font-size: 1rem;
    color: #d1d3d5;
}

.setCheck.active {
    background: #fff;
    color: white;
}

.setCheck.active h6 {
    color: #515151;
}

.vehicleContent h2 {
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    margin: 0 0 7px;
}

.vehicleContent p {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 0;
}

.vehicleContent {
    margin: 0 0 3rem;
}

.wrapContent {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 1rem;
}

.estimatorForm label {
    display: flex;
    align-items: center;
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 600;
    margin: 0 0 0.7rem;
}

.estimatorForm select {
    width: 100%;
    height: 59px;
    font-size: 1rem;
    color: #494949;
    font-weight: 500;
    padding: 0 1rem;
    margin: 0 0 2rem;
}

.seContent h6 {
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
}

.chkBox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
}

.seContent .chkBox input {
    width: 20px !important;
    height: 20px;
    margin: 0 !important;
}

.seContent .chkBox label {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    font-weight: 400;
}

.estimatorHeading {
    margin: 0 0 1.5rem;
}

.seContent {
    margin: 0 0 2rem;
}

.estimatorForm input {
    width: 100%;
    height: 59px;
    font-size: 1rem;
    color: #494949;
    font-weight: 500;
    padding: 0 1rem;
    margin: 0 0 2rem;
}

.lastOne .setCheck {
    min-height: 307px;
}

.sectionHeading {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 2rem;
}

.stepSix li {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 2;
}

.stepSix li span {
    font-size: 1rem;
    font-weight: 400;
    padding-left: 0.5rem;
}

.stepSix {
    margin: 3rem 0;
}

.BtnGroup {
    display: flex;
    gap: 10rem;
}

.countdown ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    justify-content: space-between;
    width: 100%;
}

.countdown ul li {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.countdown ul li span {
    display: block;
    font-size: 4.0625rem;
    font-weight: 600;
}

.workSec .workSlider {
    width: 100%;
    padding: 5rem 1rem 15rem;
}

.workSec .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

.workSec .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 0rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -1rem;
}

.workSec .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 0.8rem;
    color: #000;
    background: #fff;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 0rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -1rem;
}

/*.calendarSec {*/
/*    background: #fff;*/
/*}*/
#calendar {
    background: #fff;
}

.calendarSec .fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0rem;
    background: #000;
    padding-bottom: 1rem;
}

.calendar-form label {
    font-size: 1.4rem;
    text-transform: capitalize;
    color: #fff;
}

.calendar-form input, .calendar-form select {
    height: 3rem;
    padding-left: 1rem;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
}

.calendar-form {
    background: #999999;
    padding: 2rem 8rem;
    margin: 3rem 0;
}

.calendar-form h4 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
}

.calendar-form h4 span {
    display: block;
    font-size: 1.2rem;
    margin: 0.5rem 0 2rem;
}

.calendar-form .form-Btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 0;
}

.workBox {
    display: block;
}
