/*----------reset css----------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
    font-family: "Poppins", sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
.primaryText{
    color: #2cb1d2;
}
body {
	line-height: 1;
    box-sizing: border-box;
    overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
input:focus-visible {
    outline: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

.h-50 img{
    object-fit: cover;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.inline-block{
    display: inline-block;
}
.blackText{
    color: #000;
}

.container{
    max-width: 1340px;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  
}
.container-fluid{
    padding-left: 4%;
    padding-right: 4%;
}

p{
    font-size: 18px;
    line-height: 1.8;
}

.text-left{
    text-align: left;
}

h2{
    font-size: 34px;
    font-weight: 600;
    line-height: 1.6;
}
.text-center{
    text-align: center;
}
.mb-50{
    margin-bottom: 50px;
}

img{
display: block;
  max-width: 100%;
  height: auto;
}

.secRowContent {
    display: flex;
    /* align-items: center; */
    margin: 0;
}
.secColContent{
    padding: 0px 16px;
}
.w-col-50{
    width: 50%;
}
.w-col-33{
    width: 33%;
}
.w-100 {
    width: -webkit-fill-available;
    margin-right: 0 !important;
}
.font-bold{
    font-weight: 500;
}

.btn-primary{
    text-decoration: none;
    background-color: #54A1FF;
    margin-right: 27px;
    padding: 20px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 26px;
    color: #fff;
    transition: all .5s ease;
    display: inline-block;
}

.btn-primary:hover{
    background: #54A1FF;
    color: #fff;
}

.wpcf7-spinner {
    visibility: hidden;
    display: inline-block;
    background-color: #23282d;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 24px;
    position: relative;
}
.wpcf7-spinner::before {
    content: '';
    position: absolute;
    background-color: #fbfbfc;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border: none;
    border-radius: 100%;
    transform-origin: 8px 8px;
    animation-name: spin;
    animation-duration: 1000ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spin{
    0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(360deg);
}
}

form.submitting .wpcf7-spinner {
    visibility: visible;
}

/*----------navbar header -------------*/


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px;
    background-color: #e9f8f9;
    color: #000;
}

.contactUsBtn{
    background-color: #2cb1d2;
    padding: 8px 19px !important;
    border-radius: 6px;
    color: #fff !important;
}
.headerContentWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    padding: 0px 22px;
    /* pointer-events: none; */
    font-size: 22px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        text-align: center;
        transition: max-height 0.5s ease-in-out; /* Add smooth transition */
    }

    .navbar.open {
        max-height: 300px; /* Adjust this value based on the content height */
    }

    .navbar ul {
        flex-direction: column;
        padding: 0;
    }

    .navbar ul li {
        padding: 16px 0;
        border-bottom: 1px solid #594f4f;
    }

    .menu-toggle {
        display: block;
    }
}



/*---------bannerSectionWrap------*/

.bannerSectionWrap .secHeadingTitle{
    color: #fff;
    font-size: 48px;
}
.bannerSectionWrap{
    background-image: url('../../assets/images/pexels-elevate-digital.jpg');
    background-color: #000000;
    /*background-position: center center;*/
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 100px 0px 100px 0px;
    z-index: 1;
}
section.bannerSectionWrap:after {
    background-color: #006188;
    opacity: 0.4;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    position: absolute;
    height: 100%;
    left: 0;
    right: 0;
    content: '';
    top: 0;
    bottom: 0;
    z-index: -1;

}
.bannerSectionWrap .bannerContent {
    text-align: center;
}
.bannerSectionWrap .bannerContent p {
    margin: 50px 0px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

.bannerSectionWrap .secTitle{
margin: 50px 0px;
    margin-bottom: 83px;
    color: #f2fcff;
}

.bannerBtnList{
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}



.bannerBtnList .listItem a:hover {
    border: 2px solid #0e4da7;
}

.bannerBtnList .listItem a {
    text-decoration: none;
    background: #fff;
    margin-right: 27px;
    padding: 20px 59px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 26px;
    color: #000;
    transition: all .5s ease;
    display: block;
    border: 2px solid transparent;
}


/*------bannerSectionWrap closed----*/


/* printSetupSection  */
section.printSetupSection {
    padding: 90px 0px;
}
.printSetupSection .secHeadingTitle{
    margin-bottom: 20px;
    text-align: left;
}
.printContent p{
    margin-bottom: 40px;
    /* font-size: 22px; */
    line-height: 2;
}

.printBannerContent .printContentWrap.secRowContent {
    border-bottom: 1px solid #fbf1f1;
    padding-bottom: 40px;
}

.printBannerContent .printContentImage{
    display: flex;
    justify-content: flex-end;
}

.smartPrintSetupSection.printSetupSection .secHeadingTitle{
    margin-bottom: 40px;
}
.smartPrintSetupSection.printSetupSection p{
    font-size: 18px;
}

.printSetupSection.smartPrintSetupSection{
    background-color: #e9f8f9;
}

/* section closed  */


/* contentSectionClosed */
.contentSectionClosed {
    background-color: #000;
    color: #fff;
    padding: 70px;
}
.contentSectionClosed p{
    font-size: 20px;
    margin-bottom: 0;
}

/* section closed  */

/* homePrintingSection */


.homePrintingSection{
    background-color: #0D63A5;
    color: #fff;
    padding: 70px;
}


/* form field  */
.formFieldWrap input{
    width: -webkit-fill-available;
    padding: 20px;
    border: 1px solid #efe5e5;
    border-radius: 0px;
    margin-bottom: 16px;
}
.formFieldWrap input::placeholder{
    font-size: 18px;
}
.formFieldWrap {
    margin-bottom: 24px;
}
.formFieldWrap .btn-primary {
    margin-right: 0px;
    padding: 14px 43px;
    border-radius: 0;
    text-transform: capitalize;
    font-size: 22px;
    color: #fff;
    background: #2cb1d2;
    border: none;
}

/* form field closed  */

/* footerSection */
.footerSection{
    padding: 60px;
    background-color: #000;
    text-align: center;
}
.footerSection p{
    color: #fff;
}
/* footerSection closed  */

.errorPageWrap .printContentImage {
    max-width: 800px;
    margin: 0 auto;
}
.errorPageWrap .printContentImage img{width: 100%;}
.errorPageWrap .returnBtnWrap {
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    display: flex;
    gap: 10px;
}

.returnBtnWrap img{
    width: 13px !important;
    filter: contrast(0) brightness(0);
}

/* media query  */
@media (max-width:1460px){
    body .container{
       max-width: 100%; 
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width:860px){
    .bannerBtnList .listItem a {
        margin-right: 10px;
        padding: 20px 24px;
        font-size: 18px;
    }
    .bannerSectionWrap .secHeadingTitle {
        color: #fff;
        font-size: 36px;
        line-height: 1.6;
    }
    p{
        font-size: 18px !important;
    }
    h2{
        font-size: 30px !important;
        line-height: 1.6;
    }
    .w-col-33{
        width: 50%;
        margin-bottom: 30px;
    }
    body img {
        margin: 0 auto;
        width: auto;
    }
    body .w-col-50 {
        width: 100%;
        margin-bottom: 40px;
    }
    body .btn-primary {
        margin-right: 0px;
        padding: 20px 24px;
        font-size: 18px;
        color: #fff;
    }
    section.printSetupSection {
        padding: 50px 0px;
    }
    body .secRowContent {
        display: block;
        /* align-items: center; */
        /* margin: 0px -16px; */
    }
    .secColContent{
        padding: 0;
    }
    .printSetupSection .secHeadingTitle{
        margin-bottom: 20px;
        text-align: center;
    }
    body section.printSetupSection {
        padding: 50px 0px;
        padding-bottom: 30px;
    }
    .printSetupSection p{
        text-align: center;
    }
    body .bannerSectionWrap{
        padding: 100px 0px 100px 0px;
    }
    .bannerSectionWrap .secTitle{
        margin-bottom: 50px;
    }
}

@media (max-width:767px){
    .bannerBtnList{
        display: block;
    }
    .bannerBtnList .listItem a {
        margin-right: 0;
        display: inline-block;
        margin-bottom: 20px;
    }
    body .bannerSectionWrap{
        padding: 70px 0px 70px 0px;
    }
    .menu-toggle {
        color: #000;
        font-weight: 900;
    }
    body .navbar{   
        z-index: 9;
    }
    .navbar ul li a{
        color: #fff;
    }
    body .w-col-33{
        width: 100%;
        margin-bottom: 30px;
    }
    .homePrintingSection{
        padding: 40px 16px;
    }
    .bannerSectionWrap .bannerContent p{
        margin-top: 20px;
    }
    .bannerBtnList {
        display: flex;
        flex-wrap: wrap;
    }

    li.listItem {
        width: 43%;
    }
    .smartPrintSetupSection.printSetupSection .secHeadingTitle{
        text-align: center;
    }
}

@media (min-width:821px){
    .flexdeskcontent{
        display: flex;
        gap: 10px;
    }
    .flexdeskcontent .leftContent{
        margin-right: 20px;
    }
    .h-50{
        min-height: 54.7vh;
    }
}

/* media query closed  */