@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;
}
html,body {
    overflow-x: hidden;
}
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;
    flex-wrap: wrap;   /*optional*/
    align-items: center;
    justify-content: space-between;
}
.main-header .u-sheet-1 {
    min-height: auto !important;
    margin: 0;
}
.main-header {
    border-bottom: 1px solid #ebebeb;
    padding: 8px 15px;
    width: 100%;
    background: var(--white);
    z-index: 5;
    height: 80px;
}
.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;
}
body .main-header a.u-button-style.u-button-style.u-text-hover-palette-2-base:hover:hover {
    color: var(--green) !important;
}
.main-header .custom-logo-link {
    display: flex;
    align-items: center;
}
.main-header .u-nav-link {
    font-family: "poppins" !important;
    font-weight: 500;
}
.main-header .u-nav-popup ul {
    min-width: 200px;
    border-top: 3px solid var(--blue);
    border-radius: 5px;
    margin-top: 6px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}
.main-header .u-nav-popup .u-v-spacing-10 > .u-nav-item > a {
    padding: 15px 20px;
}
.main-header .u-nav-popup .u-v-spacing-10 > .u-nav-item + .u-nav-item > a  {
    border-top: 1px solid #dddddd;
}
.main-header .u-nav-popup .u-v-spacing-10 > .u-nav-item > a:hover {
    color: var(--green) !important;
    background-color: #fff !important;
}
.main-header .menu-item-has-children:before {
    content: "\f078";
    width: 12px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    font-family: 'FontAwesome';
    position: absolute;
    top: 11px;
    right: 20px;
    font-size: 12px;
    line-height: normal;
}

.main-header .menu-item-has-children a {
    position: relative;
    padding-right: 40px !important;
}
/*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-6 {
    width: 50%;
}
.col-lg-3 {
    width: 25%;
}
.col-lg-4 {
    width: 33.33%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.p-0 {
    padding: 0 !important;
}
.pt-0 {
    padding-top: 0px !important;
}
.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-80 {
    padding-bottom: 80px;
}
.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;
    height: 100%;
    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;
}
.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;
    width: calc(100% - 100px);
}
.testimonial-card .meta-right {
    width: 100px;
}

.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: 80px;
}
/*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;
    background-attachment: fixed;
}

.cta-section:before {
    content: "";
    background-color: rgba(0 0 0 / 70%);
    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-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
}
.faq-item:last-child {
    border: 0;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    position: relative;
    padding-right: 20px;
}
.faq-item summary:hover {
    color: var(--blue);
}
.faq-item summary:after {
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 5px;
}
.faq-item p {
    padding: 10px 5px 0;
}

/*FAQ end*/

/*contact start*/
.contact-form input,.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #000;
    outline: none;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--green);
}
.contact-form-wrapper {
    padding: 30px;
    height: 100%;
    border-radius: 50px 8px;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
}
.contact-details {
    padding: 30px;
    height: 100%;
    border-radius: 50px 8px;
    background-color: #deecfe;
    border: 1px solid #e0e0e0;
}
.contenct-info-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    gap: 0 10px;
    align-items: center;
}

.contenct-info-card i {
    font-size: 16px;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-links a {
    background-color: var(--green);
    color: var(--white) !important;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.5s;
}

.social-links a:hover {
    background-color: var(--blue);
    color: var(--white);
}
.newsletter-section {
    background-color: #f2f2f2;
}
.newsletter-wrapper {
    max-width: 800px;
    margin: auto;
    width: 100%;
}
.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: auto;
    background-color: #fff;
    padding: 12px;
    border-radius: 6px;
}
.newsletter-form input[type="email"] {
    width: calc(100% - 160px);
    padding: 0 20px 0 5px;
    border: 0;
    outline: none;
}
.newsletter-form button[type="submit"] {
    width: 160px;
}
/*contact end*/

/*footer start*/
.footer-column {
    text-align: left;
}
.footer-logo {
    width: 100%;
    height: 70px;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-column ul li + li {
    margin-top: 6px;
}
.footer-column ul li a {
    color: #fff;
    font-weight: 500;
}
.footer-column ul li a:hover {
    color: var(--blue);
}
.footer-column h4 {
    margin-bottom: 20px !important;
}
.footer-text {
    font-size: 14px;
}
.footer-bottom {
    border-top: 1px solid #545454;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    font-size: 14px;
}
.footer-bottom-menu a {
    font-weight: 500;
    color: var(--white) !important;
}
.footer-bottom-menu a:hover {
    color: var(--blue) !important;
}

/*footer end*/

@media (max-width:  1100px) {
    .resource-card {
        max-width: 45%;
    }
    .resource-grid {
        gap: 40px 0;
    }
}

@media (max-width: 991px) {
    .col-md-6 {
        width: 50%;
    }
    .blog-grid {
        gap: 20px 0;
    }
    .case-stuid-content {
        width: 60%;
    }
    .case-studies-img {
        width: 50%;
    }
    .case-studies-col {
        width: 90%;
    }
    .col-md-12 {
        width: 100%;
    }
    .footer-row {
        gap: 30px 0;
    }
    .main-header .u-nav-link {
        font-size: 18px !important;
        text-align: left !important;
    }
    .main-header .menu-item-has-children:before {
        right: 0;
        top: 10px;
    }
    .main-header .u-nav-popup ul {
        background-color: #424242;
        padding: 0 20px;
    }
    .main-header .u-nav-popup .u-v-spacing-10 > .u-nav-item > a {
        font-size: 16px !important;
    }
    .main-header .u-nav-popup ul {
        border-top: 2px solid var(--blue);
    }
    .main-header .u-nav-popup .u-v-spacing-10 > .u-nav-item > a:hover {
        background-color: #424242 !important;
    }
    .main-header .custom-logo {
        height: 40px;
    }
    .main-header {
        height: 60px;
    }
    .pt-80 {
        padding-top: 60px;
    }
    .pb-80 {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        width: 100%;
    }
    .hero-img-wrapper {
        max-width: 360px;
        margin: 20px auto 0;
    }
    .ts-left-heading {
        position: unset;
        text-align: center;
        margin-bottom: 30px;
    }
    .resource-card {
        max-width: 48%;
    }
    .resource-grid {
        gap: 30px 0;
    }
    .blog-grid .col-md-6 {
        width: 50%;
    }
    .row.contact-container {
        gap: 30px 0;
    }
    .py-30 {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .py-60 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .mb-30 {
        margin-bottom: 25px !important;
    }
    .cta-content {
        padding: 30px 0;
    }
    .footer-column.col-md-6 {
         width: 50%; 
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2px;
    }
    .main-header {
        padding: 4px 15px;
        height: 50px;
    }
    .pt-80 {
        padding-top: 50px;
    }
    .pb-80 {
        padding-bottom: 50px;
    }
    .footer-logo {
        height: 60px;
    }
}

@media (max-width:  574px) {
    .hero-img-wrapper {
        max-width: 280px; 
    }
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .article-card, .blog-card,
    .case-study-card {
        border-radius: 30px 5px;
    }
    .resource-grid,
    .article-grid {
        gap: 15px;
    }
    .resource-card {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        border-radius: 30px 5px;
    }
    .resource-card:after {
        font-size: 40px;
        top: 20px;
        right: 20px;
    }
    .resource-card:before {
        display: none;
    }
    .resource-card img {
        width: 60px;
        height: 60px;
        padding-top: 10px;
    }
   .resource-card:nth-child(3) {
        order: 2;
    }
    .testimonial-card + .testimonial-card {
        margin-top: 15px;
    }
    .testimonial-card + .testimonial-card {
        margin-top: 15px;
    }
    .blog-grid {
        gap: 15px 0;
    }
    .case-studies-col,
    .blog-grid .col-md-6 {
        width: 100%;
    }
    .cta-content {
        padding: 0;
    }
    .contact-details,
    .contact-form-wrapper,
    .testimonial-card {
        border-radius: 30px 5px;
        padding: 20px;
    }
    .case-study-card {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .case-studies-img,
    .case-stuid-content {
        width: 100%;
    }
    .case-studies-img {
        height: 200px;
    }
    .case-stuid-content {
        padding: 20px; 
    }
    .faq-item {
        padding: 10px 5px;
    }
    .contenct-info-card {
        border-radius: 6px;
        padding: 12px;
    }
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100% !important;
    }
    .cta-content p {
        font-size: 18px;
    }
    .footer-column.col-md-6,
    .col-lg-3 {
         width: 100%; 
    }
}

@media (max-width:  375px) {

    .testimonial-card .review-meta {
        flex-direction: column-reverse;
        margin-top: 0;
    }
    .testimonial-card .meta-left,
    .testimonial-card .meta-right {
        width: 100%;
    }
}