@import url('https://fonts.googleapis.com/css2?family=News+Cycle:wght@400;700&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 {
    --blue : #2979FF;
    --green:  #00C853;
    --white:  #ffffff;
    --black:  #111111;
}
body {
    font-family: "Poppins" !important;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
}
h1,h2,h3,h4,h5,h6 {
    font-family: "News Cycle" !important;
    margin: 0 !important;
    font-weight: 600 !important;
    line-height: 1.3em !important;
}
a:hover {
    color: var(--blue);
}
.main-header .header-container {
    max-width: 1440px;
    margin: auto;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-header .u-sheet-1 {
    min-height: auto !important;
    margin: 0;
}
.main-header {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 8px 15px;
    width: 100%;
    background: #fff;
    z-index: 5;
}
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
}
.main-header .custom-logo {
    height: 60px;
    object-fit: contain;
    object-position: left center;
}
.main-header .u-header .u-menu,
.main-header .u-menu  {
    margin: 0 !important;
}
.main-header .custom-logo-link {
    display: flex;
    align-items: center;
}
.main-header .u-nav-link {
    font-family: "poppins" !important;
    font-weight: 500;
}

/*Defult css start*/
.container {
    max-width: 1240px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.align-items-center {
    align-items: center;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.col-12 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}
.col-md-6 {
    width: 50%;
}
.col-lg-4 {
    width: 33.33%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.pt-0 {
    padding-top: 0px !important;
}
.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.btn-green {
    background-color: var(--green);
    color: var(--white);
    border-radius: 6px;
    padding: 8px 20px;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    transition: 0.5s linear;
}
.btn-green:hover {
     background-color: var(--blue);
    color: var(--white);
}
b, strong {
    font-weight: 600;
}
.text-center {
    text-align: center;
}
.mb-30 {
    margin-bottom: 30px !important;
}
p {
    margin: 0 !important;
}
p + p {
    margin-top: 10px !important;
}
.f-green {
    color: var(--green);
}
.mb-10 {
    margin-bottom: 10px !important;
}
/*Defult css end*/

/*Hero section start*/
.hero-section {
    background-image: url("https://qrcode.news/wp-content/uploads/2024/09/Untitled-design.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-img-wrapper {
    max-width: 430px;
    height: auto;
    width: 100%;
    margin: auto;
}
.hero-img-wrapper img {
    object-fit: contain;
    animation: spinner 10s infinite linear;
}

@keyframes spinner {
    from {
      -moz-transform: rotateY(0deg);
      -ms-transform: rotateY(0deg);
      transform: rotateY(0deg);
    }
    to {
      -moz-transform: rotateY(-360deg);
      -ms-transform: rotateY(-360deg);
      transform: rotateY(-360deg);
    }
}
.heading-wrapper h2 {
    margin-bottom: 20px !important;
}
.icon-hero-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.icon-hero-list li {
    margin-bottom: 5px;
    display: flex;
    gap: 10px;
}
.icon-hero-list li i.fa-compact-disc {
    font-size: 14px;
}
/*Hero section end*/

/*Featured Articles*/

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.article-card,
.blog-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 50px 8px;
    overflow: hidden;
    transition: 0.5s linear;
}
.article-card:hover,
.blog-card:hover {
      border-radius: 8px 50px;
}
.article-image img,
.blog-image img {
    width: 100%;
    height: auto;
}
.article-card a,
.article-card .article-body a {
    color: var(--black);
}
.article-card .article-body,
.blog-card .blog-body {
   padding: 15px 20px 20px;
}
.article-card .article-title,
.resource-card .process-title {
    margin-bottom: 10px !important;
}
.article-card .article-title {
    margin-bottom: 10px !important;
}
.article-card .read-more-button,
.blog-card .read-more-button {
    color: var(--green) !important;
    margin-top: 10px !important;
    display: block;
    transition: 0.5s linear
}
.article-card .read-more-button:hover ,
.blog-card .read-more-button:hover {
    color: var(--blue) !important;
}
.article-card .article-image,
.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}
.article-card .article-image img,
.blog-card .blog-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s linear;
}
.article-card:hover .article-image img,
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}




.resource-card {
    position: relative;
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 50px 8px;
    width: 50%;
    max-width: 500px;
}

.resource-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 0;
    justify-content: space-between;
}

.resource-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    object-fit: contain;
}

.resource-card:before {
    content: "";
    border: 1px dashed #e0e0e0;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(100% - 34%);
    transform: translateX(152%);
}

.resource-card:nth-child(2):before {
    top: unset;
    bottom: -50px;
    transform: rotate(89deg);
    width: 100px;
    left: 38%;
}

.resource-card:nth-child(4):before {
    display: none !important;!i;!;
}
.resource-card .use-tool-button:hover {
    color: var(--blue);
}
.resource-card:after {
    content: "1";
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--blue);
    opacity: 0.3;
    font-family: 'FontAwesome';
}

.resource-card:nth-child(2):after {
    content: "2";
}
.resource-card:nth-child(3):after {
    content: "4";
}
.resource-card:nth-child(4):after {
    content: "3";
}

/*Featured Articles Ends*/

/*Testimonial start*/
.testimonial-card {
    background-color: #deecfe;
    padding: 30px;
    border-radius: 50px 8px;
}
.testimonial-card:nth-child(even) {
    background-color: #cefde5;
}

.testimonial-card + .testimonial-card {
    margin-top: 20px;
}
.testimonial-card .quote i {
    background: var(--blue);
    border-radius: 50%;
    color: #fff;
    font-size: 23px;
    padding: 14px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.testimonial-card:nth-child(even) .quote i {
    background: var(--green);
}

.testimonial-card .meta-img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.testimonial-card .meta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.testimonial-card .meta-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.testimonial-card .meta-detail h3 {
    font-size: 20px;
}

.testimonial-card .user-title {
    color: #808080;
}

.testimonial-card .review-meta {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.testimonial-card .meta-right .rating {
    margin-top: 12px;
    color: #fdb71a;
    font-size: 14px;
}
.ts-left-heading {
    position: sticky;
    top: 0;
}
/*Testimonial end*/

/*Case studies css start*/

.case-studies-col {
    width: 80%;
}
.case-studies-col:nth-child(even) {
    margin-left: auto;
}

.case-study-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px 8px;
    display: flex;
    /*align-items: center;*/
    overflow: hidden;
    min-height: 250px;
    height: 100%;
}

.case-studies-grid {
    display: flex;
    gap: 25px 0;
    flex-direction: column;
}

.case-stuid-content {
    padding: 25px;
    width: calc(100% - 380px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-studies-img {
    width: 380px;
    height: auto;
    display: flex;
}
.case-studies-img .img-fluid {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.read-more-button:hover {
    color: var(--blue);
}
/*Case studies css end*/

/*CTA section start*/
.cta-section {
    background-image: url("https://qrcode.news/wp-content/uploads/2024/09/qr-code-3970681_1920.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.cta-section:before {
    content: "";
    background-color: rgba(0 0 0 / 60%);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.cta-section .container {
    position: relative;
}

.cta-content {
    padding: 50px 0;
    color: #fff;
    max-width: 800px;
    margin: auto;
}

.cta-content p {
    font-size: 20px;
}
/*CTA section end*/

/*FAQ start*/
.faq-wrapper {
    max-width: 900px;
    width: 100%;
    margin: auto;
}
/*FAQ end*/
