:root{
    --web-font: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --web-bg-color:#f9f9f9;
    --web-bg-dark:#111111;
    --web-bg-dark-color:#f0f0f0;
    --web-white-color:#fff;
    --web-nax-box-shadow:0 2px 5px rgba(0, 0, 0, 0.1);
    --web-flex:flex;
    --web-downloader-bg-dark:#191919;
}     
     
     
     body {
            margin: 0;
            font-family:var(--web-font) ;
            background: #fff;
            scroll-behavior: smooth;
            padding-bottom: 100px;
        }
 *, ::after, ::before {
    box-sizing: border-box; 
 }
        nav {
            
            padding: 12px 14px;
            background:var(--web-white-color);
            box-shadow: var(--web-nax-box-shadow);
        }
        .wrapper{
            max-width: 1250px;
            margin: 0 auto;
            width: 100%;
            display: var(--web-flex);
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        /* body, nav, .downloader {
  transition: background 0.3s, color 0.3s;
} */
        body.dark nav {
            background: var(--web-bg-dark);
        } 
        /* dark theme */
        body.dark .logo,
        body.dark .info__text-block-text,
        body.dark .six-items__content ,
        body.dark .main-content,
        body.dark .dropdown,
        body.dark p,
        body.dark .features-container,
        body.dark .features-content h3,
        body.dark .grid-container-header h2,
        body.dark .info__text-block-title,
        body.dark .all-header ,body.dark .faqs-heading,
        body.dark .accordion-title,body.dark .accordion-text,
        body.dark .site-footer a,
        body.dark .footer-col h3{
        color: #fff;
        }
        body.dark .accordion-item{
            border: 1px solid #fff;
        }
        body.dark .footer-bottom{
            border-top: 1px solid #fff;
        }
        body.dark .icon-faq{
            stroke: #ffffff;
        }
        body.dark .btn-accordion{
            background: transparent;
        }
        body.dark .thick-arrow-down{
            border-color: #fff;
        }
        body.dark{
            background: var(--web-bg-dark);
        }
        body.dark .downloader{
            background: var(--web-downloader-bg-dark);
        }
        .logo {
            font-size: 24px;
            font-weight: 600;
        }
        .logo span{
            color: #0d6efd;
        }
        .logo a{
            text-decoration: none;
            color: inherit;
        }
        .logo a:hover{
            text-decoration: underline;
            color: #0d6efd;
        }

        .nav-actions {
            display: var(--web-flex);
            align-items: center;
            gap: 15px;
        }

        /* Theme Toggle */
        .theme-toggle {
            background: #fff;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            cursor: pointer;
            display: var(--web-flex);
            align-items: center;
            justify-content: center;
            color: white;
            padding: 10px;
            font-size: 20px;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            transition: background 0.3s;
        }
        /* Dropdown */
        .dropdown {
            position: relative;
        }
        .dropdown-menu.open {
         display: flex;
        }
        .language-btn{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .thick-arrow-down {
  width: 12px;
  height: 12px;
  border: 3px solid #000;
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
  transition: 0.2s ease-in-out;
}
.thick-arrow-down.rotate {
  transform: rotate(223deg);
}
        .dropdown-toggle {
            cursor: pointer;
            font-size: 18px;
            display: var(--web-flex);
            align-items: center;
            gap: 6px;
            padding: 8px;
        }
        .dropdown-menu {
            position: absolute;
            top: 40px;
            right: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            display: none;
            flex-direction: column;
            z-index: 1000;
        }
        body.dark .dropdown-menu {
            background: #2a2a2a;
            border-color: #444;
        }

        .dropdown-menu ul {
            display: var(--web-flex);
            flex-wrap: wrap;
            list-style: none;
            margin: 0;
            padding: 0;
            width: 300px;
        }

        .dropdown-menu li {
            flex: 1 1 45%;
        }

        .dropdown-menu a {
            display: var(--web-flex);
            align-items: center;
            text-decoration: none;
            color: inherit;
            gap: 10px;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 2px;
            position: relative;
        }
        #langMenu a.selected::after {
        content: "•";
        color: #0348dd;
        position: absolute;
        right: 10px;
        font-size: 24px;
}
#langMenu a.selected {
    pointer-events: none; /* Disable clicking */
    opacity: 0.5;
  }
  #langMenu a:not(.selected):hover {
    background-color: #3a86ff;
    color: #fff;
  }

        body.dark .dropdown-menu a:hover {
            background: #3a3a3a;
        }

        .flag {
            font-size: 18px;
        }
        @media screen and (min-width:600px){
            .symbol{
                display: none;
            }

        }
        @media screen and (max-width:600px){
            .language-btn{
                display: none;
            }
            .dropdown-toggle{
                background: #0d6efd;
                border-radius: 50%;
                display: var(--web-flex);
                width: 35px;
                height: 35px;
                padding: 6px 3px 0px 1px;
                align-items: center;
                justify-content: center;
            }
        }
       /*  */
      .downloader {
    display: var(--web-flex);
    flex-direction: column;
    align-items: center;
    padding: 24px 10px 12px 10px;
    gap: 10px;
    background: linear-gradient(54.09deg, #0348dd 2.03%, #8142f5 48.63%, #ee4dd4 96.22%);
    background-size: 300% 300%;
    animation: gradientBG 10s ease infinite;
    color: #fff;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 25%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.disappear-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 5px 12px 5px;
    gap: 10px;
}
.downloader .hero-heading {
    text-align: center;
}
.downloader .heading-item.main-heading {
    display: block;
}
.downloader .hero-heading .title {
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
}
.downloader .hero-heading .sub {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 0;
}
.tabs-tik{
    margin: 5px 0;
    width: fit-content;
}
.tabs-tik ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.tabs-tik ul li{
    display: var(--web-flex);
    text-align: center;
}
.tabs-tik ul li a{
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    width: 100%;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 4px;
}
.tabs-tik ul li a:hover{
    background: #fff;
    color: #000;
}.tabs-tik a.active-tab {
  background: #fff;
  color: #000;
}
.downloader form {
    width: 100%;
}
.input-left {
    display: var(--web-flex);
    flex-direction: row;
    align-items: center;
    padding: 0;
    position: relative;
}
.input-left .form-control {
    padding: 14px 14px;
    font-style: normal;
    font-weight: 400;
    padding-right:5.5rem;
    font-size: 16px;
    line-height: 19px;
    color: #212529;
    border: none;
    border-radius: 8px;
    height: 46px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
button, input, select {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.input-left .paste-wrap {
    position: absolute;
    right: 6px;
    box-sizing: border-box;
    border-radius: 6px;
}
.input-left .paste-wrap .paste {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 6px;
}
.flex-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.btn.btn-paste {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 10px;
    font-weight: 500;
    background: none;
    font-size: 14px;
    line-height: 20px;
    color: #252638;
    border: none;
    gap: 4px;
}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
i.icon, i.icon+span {
    display: table-cell;
}
.icon {
    width: 1.5em;
    height: 1.5em;
    fill: currentColor;
    position: relative;
}
.icon.icon-paste {
    background: url(public/img/icon/paste-icon.svg) center no-repeat;
    width: 1rem;
    height: 1rem;
}
.icon.icon-clear{
    background: url(public/img/icon/clear.svg) center no-repeat;
    width: 1rem;
    height: 1rem;
}
.btn.btn-get {
    flex-direction: row;
    padding: 12px;
    gap: 12px;
    width: 100%;
    background: #3a86ff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    border-radius: 8px;
    margin-top: 8px;
    border: none;
}
.loader-inline {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.alert.alert-box {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(calc(-100% - 5px));
    color: #ff0000;
    background: #fff;
    padding: 2px 12px;
    display: none;
    word-break: break-all;
    padding: 10px 10px;
}
.alert.alert-box:after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -11px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    clear: both;
}

  .alert-box::after {
    content: "";
    position: absolute;
    bottom: -6px; /* arrow pointing down */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #ff0000 transparent transparent transparent;
  }
  .error-message{
    /* color: #ff0000; */
    text-align: center;
    font-weight: 700;
  }

  .input-error {
    border: 2px solid #ff0000 !important;
  }

.icon.icon-download {
    background: url(public/img/icon/download-button-icon.svg);
    width: 24px;
    height: 24px;
}

       @media (min-width: 820px) {
        .downloader .hero-heading {
        margin-top: .5rem;
    }
        .downloader .hero-heading .sub {
        font-weight: 400;
        font-size: 1rem;
        line-height: 19px;
    }
    .downloader .hero-heading .title {
        font-weight: 600;
        font-size: 2rem;
        line-height: 13px;
    }
    .downloader {
        padding: 24px 16px 64px 16px;
    }
    .downloader form {
        display: var(--web-flex);
        flex-direction: row;
        align-items: flex-start;
        width: auto;
        gap: 8px;
    }
        .input-left {
        width: 567px;
    }
        .btn.btn-get {
        margin-top: 0;
        width: auto;
        padding-right: 30px;
        padding-left: 22px;
    }
    .tabs-tik ul{
        grid-template-columns: repeat(4, auto);
    }
}
.howto {
    align-items: center;
    display: var(--web-flex);
    flex-direction: column;
    gap: 32px;
    margin: 64px auto;
    max-width: 987px;
    padding: 0 10px;
}
.howto .background-border {
    background-clip: content-box, border-box;
    background-image: linear-gradient(#3a86ff, #3a86ff);
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 hsla(0, 0%, 60%, .3);
    width: 100%;
}
.howto .container, .howto__list {
    display: var(--web-flex);
    flex-direction: column;
}
.howto .container {
    gap: 50px;
    padding: 60px 100px;

}
.howto-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 46px;
    margin: 0;
    padding: 0;
    text-align: center;
}
.question-anchor{
    color: #ffffff;
}
.question-anchor:hover{
    color: #0348dd;
}
.howto__list {
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.howto__element {
    display: var(--web-flex);
    flex: 1;
    flex-direction: column;
    gap: 10px;
}
.howto__element-title-h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    margin: 0;
    padding: 0;
}
.howto__element-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    padding: 0;
}
.info {
    align-items: center;
    display: var(--web-flex);
    flex-direction: column;
    gap: 32px;
    margin: 64px auto;
    max-width: 1250px;
    padding: 0 10px;
    width: 80%;
}
.info .container {
    display: var(--web-flex);
    flex-direction: row;
    gap: 42px;
}
.info__text-block {
    display: var(--web-flex);
    flex-direction: column;
    gap: 35px;
}
.info__text-block-title {
    color:#252e69;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-align: start;
}
.info__text-block-text {
    color: #252e69;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    padding: 0;
}
.six-img-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 16px;
    width: 100%;
    text-align: center;
}
.six-img-items{
    width: 100%;
    height: auto;
}
.six-img{
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    width: 100%;
}
.six-img::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background: #3a86ff;
    opacity: 1;
    filter: blur(70px);
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
}
.six-items__content{
    font-style: normal;
    font-size: 18px;
    font-weight: 700;
    color: #00062b;
    line-height: 25px;
    text-align: center;
}
.s-width{
    max-width: 987px;
}
.main__content_-container{
    display: var(--web-flex);
    flex-direction: row;
    padding: 0px 15px;
}
.f-direction{
    flex-direction: row-reverse;
}
.main-content,.features-content{
    color: #252e69;
}
.main-content h3{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
}
.main-content p{
    font-size: 18px;
    font-weight: 500;
}
.main-container{
    flex-direction: column ;
}
.mt-88{
    margin-top: 91px;
}
.all-header-box{
    max-width: 987px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    height: auto;
    color: #252e69;
    margin-bottom: 50px;
}
.all-paragraph{
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.all-header{
    font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    margin: 32px 0 16px 0;
    text-align: center;
}
.features-container{
    max-width: 987px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    color:#252e69;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.features-img-item{
    height: 100px;
    width: 100px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.features-head-item{
    margin-top: 12px;
    
}
.features-head-item h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 10px;
    margin: 0;
    padding: 0;
}
.features-head-item p{
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.fast{
    background:rgba(168,85,247,.2);
}
.star{
    background: rgba(59,130,246,.2);
}
.shield{
    background-color: rgba(34, 197, 94, .2);
}
.tv{
    background-color: rgba(168, 85, 247, .2);
}
.disclaimer-container {
  width: 987px;              /* Fixed width */
  max-width: 100%;           /* Responsive fallback */
  margin: 40px auto;
  padding: 25px 10px;
  border-radius: 8px;
  line-height: 1.65;
}
.disclaimer-container h2 {
      font-size: 34px;
    font-weight: 700;
    line-height: 42px;
    margin: 32px 0 16px 0;
    text-align: left;
    color: #252e69;
}
.disclaimer-container p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
    color: #252e69;
}
.share-btn{
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #3a85ff ;
    color: #fff;
    height: 50px;
    width: 50px;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    display: none;
    z-index: 1000;
  }
  .share-btn:hover {
    transform: scale(1.1);
  }
.target{
    max-width:999px;
    width: 100%;
    height: auto;
}
.ads-slot{
    height: 150px;
    width: 100%;
}
.background{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    width: 100%;
    border-radius: 5px;
    margin: 0 auto;
    background-blend-mode: overlay;
}
.background{
    background-color:rgba(15, 0, 70, 0.85);
    padding: 15px;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.6);
}
.result-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.contentbar{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.profile-part .result_author{
    width: 160px;
    height: auto;
    border: 2px solid #8142f5;
    object-fit: cover;
    border-radius: 10px;
}
.title-part .maintext{
    font-size: 20px;
    font-weight: 700;
    font-style: normal;
}
.title-part .result-title{
    font-size: 15px;
    list-style: none;
    font-weight: 400;
    font-style: normal;
}
#dl_btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}
.dl-buttons{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.dl-buttons .pure-button{
    background: #5540f1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}
.dl-buttons .pure-button:hover{
    background: #7664fa;
    text-decoration: none;
    color: #fff;
}
.main-for-icon{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: space-evenly;
}
.icon-result{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.profile-part{
    position: relative;
    width: 160px;
    height: auto;
}
.avatar-download-box .avatar-download{
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background: #5540f1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    bottom: 10px;
}
/*  */
/*  */
.margin-top{
    margin-top: 80px;
}
.faqs-main-container{
    max-width: 987px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
    height: auto;
}
.faqs-heading{
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    color: #252e69;
    margin: 64px 0 32px 0;
}
.accordion-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #252e69;
    border-radius: 4px;
}
.btn-accordion{
    background: #fff;
    border-radius: 4px;
    width: 100%;
    border: none;
    padding: 0px 10px;
    cursor: pointer;
    display: var(--web-flex);
    align-items: center;
    justify-content: space-between;
    outline: none;
}
.icon-faq{
    fill: none;
    stroke: rgb(37, 46, 105);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}
.accordion-title{
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    padding: 0;
    text-align: left;
    color: #252e69;
}
.accordion-text{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding: 5px 5px;
    color: #252e69;
}
.accordion-content {
  max-height: 1000px; /* open */
  overflow: hidden;
}
.accordion-item:not(.open) .accordion-content {
  max-height: 0;
}
.accordion-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
/* footer has started */
.site-footer {
  width: 100%;
  max-width: 987px;
  padding: 40px 10px;
  margin: auto;
}

.site-footer a {
  color: #252e69;
  text-decoration: none;
  transition: 0.2s;
  font-size: 18px;
}

.site-footer a:hover {
  color: #0348dd;
  text-decoration: underline;
}

.footer-top {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
}

.footer-col h3 {
  font-size: 16px;
  color: #252e69;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid #252e69;
  text-align: center;
  font-size: 18px;
  color: #aaa;
}

/*  */
@media screen and (max-width: 992px) {
    .howto .container {
        gap: 25px;
        padding: 30px;
    }
    .howto .howto-title {
        font-size: 32px;
        line-height: 34px;
        margin-top: 0;
    }
    .howto .container .howto__list {
        gap: 16px;
    }
        .howto .container .howto__list .howto__element.howto__element {
        flex-direction: column;
        gap: 16px;
    }
        .info {
        width: 100%;
    }
        .info .container {
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: 95%;
    }
.main-content h3{
    text-align: center;
}
}
@media (max-width: 768px) {
    .info__text-block-title {
        font-size: 32px;
        line-height: 32px;
    }
    .six-img-container{
        grid-template-columns: 1fr 1fr;
    }
.main__content_-container{
    flex-direction: column ;
}

    
}
@media (max-width: 596px) {
    /* .info .info__text-block-title {
        text-align: center;
    } */
    .six-img-container{
        grid-template-columns: 1fr;
    }
    .main-content-img-item img{
        width: 100%;
        height: auto;
    }
    .features__list{
        width: 100%;
    }
    .features-item,.footer-top {
        flex-direction: column;
        /* text-align: center; */
    }
.features div:nth-child(even) {
    flex-direction: column;
}
.result-content{
    flex-direction: column;
    align-items: center;
}
.features-container{
    grid-template-columns: 1fr;
    gap: 50px;
}
.features-img-item{
    margin: auto;
    width: 100%;
    height: 120px;
}
.features-head-item{
    text-align: center;
}
.all-header ,.faqs-heading {
    line-height: 34px;
    font-size: 32px;
}
.share-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
}
/*  */
/*  */
