*{
  margin:0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Alumni Sans Collegiate One', sans-serif;
  font-family: 'Josefin Sans', sans-serif;
  font-family: 'Roboto', sans-serif;
}
.header{ 
  position: fixed; /* Fix the navbar at the top of the page */
  top: 0; /* Align the navbar at the very top */
  left: 0; /* Align the navbar at the left side of the page */
  width: 100%; /* Ensure the navbar stretches across the full width */
  z-index: 1000; /* The navbar should be above all other content */
  background: #fff; /* Add a background color to the navbar if needed */
  transition: box-shadow 0.3s ease-in-out; 
  padding-bottom: 0px;
}
.wraper{
  width:89%;
  margin: 0 auto;
}
.navigationcontenttop{
   padding: 1.5em 0;
   display: flex;
   align-items: center;
}
.sectiongap{
  padding-top:200px;
}
.socialiconsection{
  width:30%;
}
@keyframes rotateYLeftRight {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}
.logosection{
  width:40%;
  display: flex;
  justify-content: center;
}
.logosection img{
   width:60px;
   height: 40px;
   animation: rotateYLeftRight 3s infinite alternate ease-in-out;
}
.contactsection{
  width:30%;
  display: block;
  text-align: right;
}
.social-icon {
  display: inline-block; /* Align icons inline */
  margin-right: 10px; /* Space between icons */
  text-decoration: none!important;
}

/* Specific styles for the circular background and alignment */
.social-circle {
  background-color: #c89211; /* Replace with desired color */
  color: #fff; /* Replace with desired icon color */
  border-radius: 50%; /* Creates the round shape */
  width: 40px; /* Size of the circle */
  height: 40px; /* Size of the circle */
  display: flex; /* Enables flexbox */
  justify-content: flex-start; /* Aligns icon to the left */
  align-items: center; /* Centers icon vertically */
  padding-left: 10px; /* Adjusts icon position from the left */
}

/* Font Awesome icon adjustment */
.social-circle i {
  font-size: 20px; /* Size of the icon */
}


.navigationcontent{
  padding: 1em 0;
  display: flex;
  align-items: center;
  gap:50px;
}
.brand{
  width:22%;
}
.brand img{
  margin-top:-20px;
}
.navigation{
  display: flex;
  width:90%;
  justify-content: flex-end;
  text-align: right;
}
.navigation ul{
 list-style: none;
}
.navigation ul li{
  position: relative;
  padding: 0 1em;
  display: inline-block;
  transition: all .2s linear;
  line-height: 35px;
}

.navigation ul li .dropdown {
  display: none; /* Hide dropdown by default */
  position: absolute; /* Positioning dropdown */
  left: 0;
  top: 100%;
  min-width:320px; /* Set minimum width of dropdown */
  background: #fff; /* Background color of dropdown */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); /* Optional: Adding some shadow */
  z-index: 1;
}
.navigation ul li .dropdown li {
  display: block; /* Dropdown items should stack vertically */
  line-height:0px;
  border-bottom:1px solid silver;
}

.navigation ul li:hover .dropdown {
  display: block; /* Show dropdown on hover */

}

.navigation ul li .dropdown a {
  padding: 10px 0px; /* Padding for dropdown links */
  text-decoration: none;
  display: block; /* Make the whole area clickable */
  color: #000; /* Text color */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.navigation ul li a i {
  margin-left: 5px; /* Add space between the text and icon */
}
.navigation ul li .dropdown li:last-child{
  position: relative;
  left:0px!important;
  color: #000;
  background: white!important;

}
.navigation ul li .dropdown li:last-child a{
  color: #000!important;
  background: white!important;

}
.navigation ul li:last-child{
    border-radius: 25px;
    background: #c89211;
}
.navigation ul li:last-child a{
  color: white!important;
}
.navigation ul li a{
  position: relative;
  text-decoration: none;
  color: #000;
  
}
.navigation ul li .active{
  border-radius: 25px;
  background: #c89211;
  padding: 10px 25px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.sticky {
  position: sticky;
  top: 0; /* Adjust this value as needed */
  z-index: 1000; /* Ensure the navbar is above other content */
  box-shadow: none; /* Start with no shadow */
}
.scrolled {
  box-shadow: 0 2px 5px rgba(200,146,17,0.3); 
}
/*body section*/
.content{
  margin-top:215px;
}
.homecontainer,.ConversionServices{
  display: flex;
  gap:80px;
}
.homecontainer .contentsection{
  width:60%;
}
.homecontainer .imagesection{
  width: 40%;
}
.ConversionServices .contentsection{
  width:50%;
}
.ConversionServices .imagesection{
  width: 50%;
}
.imagesection img{
  padding: 65px 0 0;
  width: 100%;
}

.heading-title{
    color: #060606;
    font-size: 36px;
    line-height: 1;
    font-family: 'Poppins',sans-serif;
    clear: both;
    margin: 20px 0px 30px;
    font-weight: 600;
}
.heading-title2{
    color: #060606;
    font-family: "Poppins",Sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 15px;
    font-weight: 500; 
    margin: 20px 0px 25px;
    line-height: 30px;
}
.middleheader{
    color: #060606;
    font-size: 36px;
    line-height: 1;
    font-family: 'Poppins',sans-serif;
    clear: both;
    text-align: center;
    margin: 19px;
    padding: 70px 0px 0px;
    margin-bottom: 20px;
    font-weight: 600;
}
.middleparagraph{
    line-height: 30px;
    font-weight: 300;
    text-align: center;
    color: #000;
    font-family: "Lato",Sans-serif;
    font-size: 20px;
    margin:25px;
}
.container{
  padding: 90px 0 100px;
}
.paragraph{
  text-align: justify;
  color: #060606;
  --widgets-spacing: 20px;
  margin-bottom: 1.6em;
  line-height: 1.6;
  margin-bottom: 60px;
  font-size: 18px;
}
section{
  padding-bottom:100px;
}

.services{
  background: #f5f5f5;
}
.boxcontent{
    width: 100%;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-top: 100px;
}
.box{
  margin-bottom:30px;
  position: relative;

}
.box h2{
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
}
.box p{
  color: #000;
  font-family: "Lato",Sans-serif;
  font-size: 1.1em;
  --widgets-spacing: 20px;
  text-align: justify;
  font-size: 18px;
  margin-bottom:50px;
}
.contentarea{
  padding-bottom: 80px;
}

/*footer section*/
footer{
  background: #424040;
}
.footercontent{
  padding:60px 0px;
  display: flex;
  gap: 100px;

}
.usefllink h2,.aboutus h2,.companyinformation h2{
  margin-bottom:25px;
  color: #c89211;
}
.usefllink ul{
  list-style: none;
}
.usefllink ul li{
  padding-bottom:10px;
}
.usefllink ul li a{
  text-decoration: none;
  color:#fff;
}

.aboutus img{
  width: 221px;
  height: 50px;
  margin-bottom:25px;
}

.readmore {
    padding: 10px 15px;
    background: #c89211;
    color: white;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
    border-color: #c89211;
    transition: background-color 0.5s ease;
    cursor: pointer;
    border: 2px solid #c89211;
}
.servicebody{
  padding: 40px;
  min-height: 423px;
}
.whywork{
  padding: 40px;
  min-height: 351px;
}
.whywork p{
  margin-bottom: 0px;
}
.whywork i{
    width: 1em;
    height: 1em;
    position: relative;
    display: block;
    fill: #c89211;
    color: #c89211;
    border-color: #c89211;
    font-size: 42px;
    font-weight: 900;
    margin-bottom:16px;
}
.servicereadmore{
    position: absolute;
    bottom: 40px;
    padding: 12px 30px;
}


.readmore:hover{
  background:#fff;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.companyinformation ul{
  color: white;
  list-style: none;
}
.companyinformation ul li{
  padding-bottom:10px;
}
.companyinformation ul li i{
  padding-right:10px;
  font-size: 16px;
}
.socialicon{
  display: flex;
  margin-left: -10px;
}
.socialicon li{
  margin:10px;
  padding: 10px 0px 10px 0px;
  text-align: center;
}

.footerfixed {
  position: fixed; /* Fixed position */
  left: 0; /* Align to the left */
  right: 0; /* Align to the right */
  bottom: 0; /* Align to the bottom */
  z-index: 1000; /* Higher index to keep it above other elements */
  display: flex; /* Use flexbox for inner items */
  justify-content: space-between; /* Space between the items */
  align-items: center; /* Vertically center items */
/*  padding: 10px; */
  background: #fff; /* Background color for visibility */
  border-top: 1px solid #ccc; /* Optional border for aesthetics */
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), /* Shadow at the top */
              0 -2px 4px -1px rgba(0, 0, 0, 0.06); 
}

/* You might want to give a specific width or max-width if necessary */
.footerfixed > div {
  /* Apply any specific styling for the child divs here if necessary */
}

/* Align the copyright section to the left */
.footerfixed .copyrightsection {
   margin-left: 63px;; /* Spacing from the left edge */
}

/* Align the privacy section to the right */
.footerfixed .privacy {
  margin-right: 55px; /* Spacing from the right edge */
}

/*language */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.flag-icon {
  margin-right: 10px;
  width: 20px; /* Adjust size as needed */
}

.dropdown-content {
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-item {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.fa-caret-down {
  margin-left: auto;
}


.custom-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1230px; /* This is an example width. Adjust it according to your needs. */
}
.About_weight{
    color: #000;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 800;
    clear: both;
    font-family: 'Poppins',sans-serif;
}
.About_weights {
    color: #000;
    margin-top: -56px;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 700;
    clear: both;
    font-family: 'Poppins',sans-serif;
}
.middel_subtitle {
    margin-top: -12px;
    color: #000;
    font-family: "Lato",Sans-serif;
    font-size: 19px;
    font-weight: 600;
}
.about_Vectorior {
    text-align: justify;
    line-height: inherit;
    font-weight: 500;
    font-size: 21px;
}
.img-fluids {
    max-width: 77%;
    height: auto;
    margin-left: 52px;
}
.about_Vectorio_conversion{
    line-height: inherit;
    font-weight: 500;
    font-size: 21px;
}
.about_img_Vector_conversion {
    width: 95%;
    margin-right: 0;
    margin-top: -15px;
}
.meet_section{
  background-color: #f5f5f5;
}
.About_meet_head_title{
    font-size: 3rem;
    font-weight: 800;
   font-family: 'Poppins',sans-serif;
}
.about_section_waiting {
    color: #c89211;
    font-weight: bolder;
    font-size: 37px;
}
.meet_section_weight{
  font-weight: bolder;
}
.card_box{
 box-shadow: 0px 5px 40px -10px rgba(86,104,146,.33);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    border-radius: 5px;
}
.footer_image {
    width: 100%;
    height: 100px;
}
.sub_title_Efficiently{
    border: 0;
    font-size: 32px;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}
.pricing_head_title {
    font-size: 41px;
    text-align: justify;
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
}
.heading_title_pricing{
  text-align: justify;
  font-family:'Poppins',sans-serif;
  font-weight: 700;
  color: #000;
}
.pricing_img-fluid {
    max-width: 75%;
    height: auto;
    margin-top: -26px;
}
.pricing_border td{
  border:2px solid #c89211;
}
.pricing_table_head_2{
  height: 30px;
    border-radius: 1px 48px 0px 48px;
    color: white;
    background: #c89211;
     font-family: system-ui;
    font-weight: 700;
    border-top: 7px;
}
.icon_circle{
  color: black;
  font-weight: 900;
}
.heading-titles{
   color: #060606;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins',sans-serif;
    clear: both;
    margin: 20px 0px 30px;
}
.service_img_Vectorizing {
    max-width: 96%;
    height: auto;
    margin-left: 10px;
}
.service1_sub_title_Vectorization{
  line-height: 2;
 text-align: justify;
}
.custom_container_Logo_Vectorization {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 984px;
}
.service1_Embroidery {
    width: 100%;
    margin-top: -43px;
}
.service1_Convert_Logo {
    max-width: 81%;
    height: auto;
    margin-top: -43px;
    margin-left: 52px;
}
.service1_Convert_Logoh2{
  text-align: justify;
  font-family:'Poppins',sans-serif;
  font-weight: 700;
  color: #ffff;
}
.service1_Convert_Logo_p {
  color: #fff;
    text-align: justify;
    line-height: inherit;
    font-weight: 500;
    font-size: 21px;
}
.get_start {
    padding: 10px 15px;
    background: #fff;
    color: #000;
    border-radius: 25px;
    display: inline-block;
    font-weight: 500;
    border-color: #fff;
    transition: background-color 0.5s ease;
    cursor: pointer;
    border: 1px solid #fff;
}

.get_start:hover{
  background:#c89211;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}
.service1_quality_improves {
    padding: 37px 0px 37px 66px;
    background-color: #fff;
    border-style: solid;
    border-width: 0;
    border-radius: 5px;
    box-shadow: 10px 10px 10px 0px rgba(0,0,0,.5);
}
.projectbox i{

   font-size:50px;
}
.increment{
  font-size: 35px;
  font-weight: 600;
}

.imagecomparisonimg{
  width:488px;
}

/*compareimage*/

.comparison-slider {
  position: relative;
}

.image-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Adjust color and opacity as needed */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comparison-slider:hover .image-container:before {
  opacity: 1;
}

  .before,
  .after {
    margin: 0;
  }

  .before figcaption,
  .after figcaption {
    background: #fff;
    border: 1px solid #c0c0c0;
    border-radius: 12px;
    color: #2e3452;
    opacity: 0.8;
    padding: 12px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    line-height: 100%;
  }

  .before figcaption {
    left: 12px;
  }

  .after figcaption {
    right: 12px;
  }
  .comparison-slider.interaction .image-container:before {
   opacity: 0;
  }
  .swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
}

.blogsection{
    position: relative;
    background-image: url('/blog/bg.jpg'); /* Replace 'your-image.jpg' with your image file path */
    background-size: cover;
    background-position: center;
    height: 90vh;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    display: flex;
    align-items: center; /* This centers the h1 vertically */
    justify-content: center; /* This centers the h1 horizontally */
}


.pricing_border{
  border:2px solid #c89211;
}
.mobilepricing{
    display: none;
}
.blogbox{
  position: relative;
}
.blogbox a{
  position: absolute;
  bottom: 70px;
  font-weight: 600!important;
}
.blogbox a:hover{
  color: #C89211!important;
  text-decoration: none;

}
.blogbox .text-muted:hover{
  color: #C89211!important;
}
/*blog read more css start*/
/*readmore*/

.readmore_bg {
    margin-top: 34px;
    background: #c7c7c72e;
}
.blog_read_more_container {
     width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1309px;
}
.read_more_Distinctive{
  font-weight: 800;
  font-family: 'Poppins',sans-serif;
    text-transform: inherit;
    font-size: 1.875rem;
    color: #3a3a3a;
}
.vactorior_btn ul li{
  list-style: none;
}
.vactorior_btn ul li a{
  text-decoration: none;
}
.vactorior_btn ul li a:hover{
  color:#c89211;
transition: all .2s linear;
}
.read_more_Distinctive_img {
    width: 92%;
}
.select_box {
  border:1px solid black ;
    height: 72px;
    width: 92%;
}

.read_more_introdactions {
    font-weight: 800;
    font-family: 'Poppins',sans-serif;
    text-transform: inherit;
    font-size: 38px;
    color: #3a3a3a;
}
.read_more_pragaraph {
    width: 91%;
   text-align: justify;
}
.read_more_Resolution{
     font-weight: 800;
    font-family: 'Poppins',sans-serif;
    text-transform: inherit;
    font-size: 30px;
    color: #3a3a3a;
}
.read_more_serchbar {
    padding: 53px;
    margin: o auto;
}
i.fa.fa-search {
    right: 0;
    margin-left: 48px;
    text-align: center;
    position: absolute;
    /* text-align: right; */
    color: #0000006b;
    left: 232px;
}
.read_more_Recent_Posts{
 font-style: inherit;
    font-weight: inherit;
 font-family: 'Lato',sans-serif;
 line-height: 2;
}
.read_more_Recent_Posts_head{
     font-weight: 800;
    font-family: 'Poppins',sans-serif;
    text-transform: inherit;
    font-size: 20px;
    color: #3a3a3ae3;
}
.blog_read_more_container {
     width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1309px;
}
.blog_readmore_paginitions ul li{
  list-style: none;
}
.blog_readmore_paginitions ul li a{
  text-decoration: none;
}
.read_more_post_img_link li{
list-style: none;
font-weight: 700;
}
.read_more_post_img_link_ul{
  text-align: justify;
  width: 91%;
}
.read_more_post_img_link_ul ul li{
  list-style: none;
  text-align: justify;
}
.read_more_post_img_link_ul ul li a{
  text-decoration: none;
  text-align: justify;
  font-size: 15px;
}
.read_more_post_img_link_ul ul li a:hover{
  color:#c89211;
transition: all .2s linear;
}
.blog_read_more_reply_date {
    font-style: inherit;
    font-size: 13px;
    font-weight: 700;
    color: black;
}
.blog_read_more_reply_date_pragraph{
  font-size: 15px;
}
.blog_input{
  height: 252px;
}
.postcoment_btn {
    padding: 10px 15px;
    background: #0a6bd3;
    color: white;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    /* border-color: #c89211; */
    transition: background-color 0.5s ease;
    cursor: pointer;
    /* border: 2px solid #c89211; */
}
.postcoment_btn:hover{
  background:#c89211;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}
.read_more_post_img1 img{
  width: 77%
}
.read_more_post_img2 img{
  width: 77%
}
.read_more_post_img3 img {
    width: 77%;
}
.box_border{
  box-shadow: 0px 5px 40px -10px rgba(86,104,146,.33);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
    border-radius: 5px;
}
.Advantage_Vector_box_p {
    text-align: justify;
    font-size: 18px;
}
/*readmore*/

/*blog read more css end*/