
/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&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&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
   --rubik-family: "Rubik", sans-serif;
   --manrope-family: "Manrope", sans-serif;
   --lato-family: "Lato", sans-serif;
   --poppins-family: "Poppins", sans-serif;
   --dmsans-family: "DM Sans", sans-serif;
   --orange-color: #ed8f03;
   --gray-color: #f2f2f2;
   --orange-radial-gradient: radial-gradient(
      50% 918.4% at 50% 50%,
      #ffb75e 0%,
      #ed8f03 100%
   );
   --orange-linear-gradient: linear-gradient(90deg, #ffb75e 0%, #ed8f03 100%);
}
body {
   font-family: var(--manrope-family);
}

img {
   max-width: 100%;
}
.custom-header {
   position: sticky;
   top: 0;
   z-index: 9;
}
.topbar-main {
   background: var(--orange-radial-gradient);
   padding: 5px 80px;
}
.topbar-content a {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 16px;
   line-height: 100%;
   color: #fff;
   text-decoration: none;
   transition: 0.2s all ease-in;
}
.topbar-content a:hover {
   color: #101d38;
}
.topbar-content a img {
   transition: 0.2s all ease-in;
}
.topbar-content a:hover img {
   filter: brightness(0.24);
}
.right-toparea {
   text-align: right;
}
.topbar-content a img {
   max-height: 14px;
   position: relative;
   top: -1px;
   margin-right: 5px;
}
.dsp-logo img {
   max-height: 40px;
}
.dsp-header {
   background: #0f172a;
   padding: 10px 80px;
}
.dsp-menu .nav-item .nav-link {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 18px;
   line-height: 100%;
   text-align: center;
   color: var(--gray-color);
   transition: 0.3s all ease-in;
}
.dsp-menu .nav-item {
   margin: 0 10px;
}
.dsp-menu .nav-item .nav-link.active {
   color: var(--gray-color);
   font-weight: 600;
}
.dsp-menu .nav-item .nav-link:hover {
   color: var(--orange-color);
}
.dsp-buy-btn {
   background: var(--gray-color);
   padding: 12px 36px;
   display: inline-block;
   border-radius: 80px;
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 18px;
   line-height: 100%;
   text-align: center;
   text-decoration: none;
   color: #333;
   position: relative;
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dsp-buy-btn::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 60%;
   height: 100%;
   background: linear-gradient(
      110deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent
   );
   transform: skewX(-20deg);
}

.dsp-buy-btn:hover {
   background: var(--orange-linear-gradient);
   color: #333333;
   text-decoration: none;
}
.dsp-buy-btn:hover::before {
   animation: dspBtnShine 0.8s ease;
}
@keyframes dspBtnShine {
   from {
      left: -100%;
   }
   to {
      left: 150%;
   }
}
.dsp-toggler span {
   display: block;
   width: 26px;
   height: 2px;
   background: var(--gray-color);
   margin: 5px 0;
}
.custom-banner {
   padding: 200px 80px;
   background-size: cover !important;
   position: relative;
   z-index: 1;
   overflow: hidden;
}
.custom-banner:before {
   position: absolute;
   content: "";
   background: linear-gradient(90deg, #0f172a 5%, rgba(51, 79, 144, 0) 65%);
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: -1;
}
.banner-subheading {
   font-weight: 400;
   font-size: 28px;
   line-height: 100%;
   color: var(--gray-color);
   margin-bottom: 24px;
}

.banner-heading {
   font-weight: 500;
   font-size: 72px;
   line-height: 100%;
   color: var(--gray-color);
   margin-bottom: 24px;
}

.banner-heading span {
   color: var(--orange-color);
}
.banner-content-widget p {
   font-weight: 500;
   font-size: 20px;
   line-height: 150%;
   color: var(--gray-color);
}
.banner-btn-widget {
   margin-top: 64px;
}
.common-button {
   background: var(--orange-linear-gradient);
   padding: 15px 30px;
   display: inline-flex;
   border-radius: 80px;
   font-weight: 600;
   font-size: 18px;
   line-height: 150%;
   text-align: center;
   text-decoration: none;
   color: #333;
   align-items: center;
   gap: 10px;
   position: relative;
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-transform: uppercase;
   width: 100%;
   justify-content: center;
}
.common-button::before {
   content: "";
   position: absolute;
   top: 0;
   left: -100%;
   width: 60%;
   height: 100%;
   background: linear-gradient(
      110deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent
   );
   transform: skewX(-20deg);
}

.common-button:hover {
   background: var(--orange-linear-gradient);
   color: #333333;
   text-decoration: none;
}
.common-button:hover::before {
   animation: dspBtnShine 0.8s ease;
}

.common-button img {
   max-height: 20px;
}
.btn-title {
   font-weight: 400;
   font-size: 16px;
   line-height: 125%;
   text-align: center;
   color: var(--gray-color);
   margin-bottom: 10px;
}

.btn-desc {
   font-weight: 400;
   font-size: 12px;
   line-height: 125%;
   text-align: center;
   color: var(--gray-color);
   margin-bottom: 0;
}
.main-btn {
   display: inline-block;
   max-width: 280px;
}
.btn-widget {
   margin-bottom: 10px;
}
.outdated-driver-section {
   padding-top: 100px;
   padding-left: 80px;
   padding-right: 80px;
}
.custom-container {
   max-width: 1300px;
   margin: auto;
}
.outdated-driver-section {
   padding-top: 100px;
   padding-left: 80px;
   padding-right: 80px;
}

.custom-container {
   max-width: 1300px;
   margin: auto;
}

.common-maintitle {
   font-weight: 800;
   font-size: 48px;
   line-height: 125%;
   letter-spacing: 0%;
   color: #101d38;
   margin-bottom: 20px;
}

.common-subtitle {
   font-weight: 600;
   font-size: 28px;
   line-height: 125%;
   color: #101d38;
   margin-bottom: 20px;
}

.common-title p {
   font-weight: 400;
   font-size: 20px;
   line-height: 150%;
   letter-spacing: 0%;
   color: #58616e;
}

.common-title {
   text-align: center;
   margin-bottom: 40px;
}
.driver_card {
   border: 1px solid #101d3833;
   padding: 20px;
   border-radius: 12px;
   background: #f7f9fc;
   transition: 0.3s all ease-in;
   height: 100%;
}
.driver_card:hover {
   box-shadow: 0 0 20px #ccc;
}
.row_gap_30 {
   row-gap: 30px;
}
.row_gap_30 {
   row-gap: 30px;
}

.driver_card h4 {
   font-weight: 500;
   font-size: 20px;
   line-height: 125%;
   margin-bottom: 8px;
   color: #0f172a;
}

.driver_card p {
   font-weight: 400;
   font-size: 16px;
   line-height: 125%;
   color: #58616e;
}

.driver_card img {
   height: 40px;
   margin-bottom: 20px;
   width: auto;
}
.window-pc-section {
   position: relative;
   z-index: 1;
   overflow: hidden;
   padding: 100px 80px;
   background-size: cover !important;
}

.window-pc-section:before {
   position: absolute;
   content: "";
   /* background: linear-gradient(90deg, rgba(15, 33, 47, 0.8) 61.9%, rgba(15, 32, 44, 0) 62.16%); */
   background: linear-gradient(
      90deg,
      rgba(15, 33, 47, 0.8) 70.9%,
      rgba(15, 32, 44, 0) 74.16%
   );
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   z-index: -1;
}
.windowpc-content .common-title {
   text-align: left;
}
.windowpc-content .common-maintitle {
   color: var(--gray-color);
}
.windowpc-content .common-title p {
   color: var(--gray-color);
}
.windows-list ul {
   list-style: none;
   margin: 0;
   padding: 0;
}

.windows-list ul li {
   display: inline-block;
   margin-right: 12px;
   width: calc(50% - 24px);
   margin-bottom: 12px;
}
.windows-list ul li a {
   background: #fff;
   border-radius: 30px;
   padding: 15px 30px;
   display: inline-flex;
   text-align: center;
   width: 100%;
   font-weight: 500;
   font-size: 20px;
   line-height: 125%;
   color: #101d38;
   text-decoration: none;
   align-items: center;
   justify-content: center;
   gap: 20px;
}
.windows-list {
   max-width: 500px;
}
.windows-list ul li a img {
   max-height: 28px;
   width: auto;
}

.windows-list ul li a:hover img {
   filter: brightness(0) invert(1);
}
.windows-list ul li a:hover {
   color: #fff;
}
.windowpc-content {
   max-width: 789px;
}
.hardware-section {
   padding: 160px 80px;
}
.hardware-content .common-title {
   text-align: left;
}
.hardware-btn-widget .btn-title,
.hardware-btn-widget .btn-desc {
   color: #333333;
}
.galleryrow {
   display: flex;
   column-gap: 10px;
}

.gallerycol img {
   margin-bottom: 10px;
   border-radius: 8px;
   transition: 0.3s all ease-in;
}
.gallerycol img:last-child {
   margin-bottom: 0;
}
.hardware-content {
   padding-left: 50px;
}
.gallerycol img:hover {
   filter: grayscale(1);
}
.driver-content-colum .common-title {
   text-align: left;
}
.miliontitle {
   /* font-family: var(--rubik-family); */
   font-weight: 800;
   font-size: 96px;
   line-height: 125%;
   letter-spacing: 0%;
   color: #0f172a;
   margin-bottom: 0;
}
.driver-content-colum .common-maintitle {
   font-weight: 600;
}
.million-btn-widget .btn-title {
   text-align: left;
   color: #545454;
   line-height: 150%;
}
.million-btn-widget .btn-title strong {
   font-weight: 500;
}
.million-btn-widget {
   max-width: 100%;
}
.million-btn-widget .common-button {
   width: auto;
}
.performance-content-colum .common-title {
   text-align: left;
   margin-bottom: 28px;
}
.performance-section {
   background: #f7f9fc;
   padding: 65px 80px;
}
.performance-content-colum .common-subtitle {
   font-weight: 600;
   font-size: 24px;
   margin-bottom: 8px;
}
.performance-content-colum .common-maintitle {
   font-weight: 800;
   margin-bottom: 8px;
   font-size: 34px;
}
.performance-content-colum .common-title p {
   font-weight: 500;
   color: #0f172a;
}
.performance-btn-widget .common-button {
   background: #101d38;
   color: var(--gray-color);
}
.performance-btn-widget .common-button img {
   filter: brightness(0) invert(1);
}
.performance-btn-widget :is(.btn-title, .btn-desc) {
   color: #545454;
}
.performance-image-colum {
   text-align: center;
}
.performance-btn-widget .common-button {
   transition: all 0.3s ease-in;
}
.performance-btn-widget .common-button:hover {
   background: var(--orange-linear-gradient);
   color: #333333;
}
.performance-btn-widget .common-button img {
   transition: all 0.3s ease-in;
}
.performance-btn-widget .common-button:hover img {
   filter: none;
}
.driver-counter-section {
   overflow: hidden;
   position: relative;
   z-index: 1;
}

.counter-main-image img {
   width: 100%;
}
.counter-inner-card {
   background: rgb(16 29 56 / 90%);
   padding: 40px;
   position: relative;
   z-index: 1;
}
.counter-inner-card:after {
   background: rgb(16 29 56 / 90%);
   position: absolute;
   z-index: -1;
   content: "";
   width: 100%;
   height: 100%;
   top: 0;
   left: 100%;
}

.counter-inner-card .common-title {
   text-align: left;
}

.counter-inner-card .common-maintitle {
   font-size: 40px;
   color: var(--gray-color);
}
.counter-inner-card .common-title p {
   color: var(--gray-color);
}
.inner-counter-card {
   position: absolute;
   bottom: 80px;
   right: 0;
}
.counter-colum-right {
   margin-left: auto;
}
.container-position {
   position: relative;
}
.counter-number {
   font-weight: 700;
   font-size: 40px;
   line-height: 100%;
   color: var(--gray-color);
   margin-bottom: 12px;
}
.counter-title {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 16px;
   line-height: 125%;
   letter-spacing: 0%;
   color: var(--gray-color);
}
.countercard-widget {
   margin-bottom: 40px;
}

.testimonial-section {
   padding: 100px 80px;
}
.testimonial-section .common-maintitle {
   font-weight: 600;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}
.monial-card {
   background: #f4f4f4;
   padding: 20px;
   border-radius: 12px;
   text-align: center;
}
.monial-card p {
   /* font-family: var(--lato-family); */
   font-weight: 500;
   font-style: Italic;
   font-size: 18px;
   line-height: 150%;
   color: #454545;
}
.monial-card h4 {
   font-weight: 600;
   font-size: 20px;
   line-height: 125%;
   color: #0f172a;
   margin-top: 20px;
}
.testimonial-widget {
   position: relative;
   z-index: 1;
}

.testimonial-widget:before {
   position: absolute;
   content: "";
   background: url(../images/monial-arrow-1.webp) center center no-repeat;
   width: 62px;
   height: 53px;
   right: -40px;
   top: -80px;
   background-size: contain;
   z-index: -1;
}
.testimonial-widget:after {
   position: absolute;
   content: "";
   background: url(../images/monial-arrow-2.webp) center center no-repeat;
   width: 62px;
   height: 60px;
   left: -40px;
   bottom: 20px;
   background-size: contain;
   z-index: 1;
}
.owl-theme .owl-dots .owl-dot span {
   width: 13px;
   height: 13px;
   margin: 0 4px;
}
.owl-dots {
   margin-top: 30px !important;
}
.owl-theme .owl-dots .owl-dot:hover span {
   background: var(--orange-linear-gradient);
}
.owl-theme .owl-dots .owl-dot.active span {
   background: var(--orange-linear-gradient);
   width: 35px;
}

.driver-image-colum {
   text-align: center;
}
.driver-image-colum img {
   max-height: 375px;
}
.million-user {
   padding: 80px 80px;
   position: relative;
   z-index: 1;
   overflow: hidden;
   background: #f4f4f4;
}
.million-user::before {
   position: absolute;
   z-index: -1;
   content: "";
   background: url(../images/usergallery-bg.webp) center center repeat;
   width: 100%;
   height: 100%;
   left: 0;
   top: 0;
   background-size: contain;
   filter: grayscale(1);
   opacity: 0.08;
}

.footertop {
   background: var(--orange-linear-gradient);
   padding: 12px 80px;
}
.footertop p {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 16px;
   line-height: 110%;
   text-align: center;
   color: #fff;
   margin: 0;
}

.footerbar {
   background: #0f172a;
   padding: 100px 80px;
}
.footer-menutitle {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 24px;
   line-height: 125%;
   letter-spacing: 0%;
   color: #fff;
   margin-bottom: 20px;
}
.footermenu-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footermenu-list li a {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 16px;
   line-height: 220.00000000000003%;
   letter-spacing: 0%;
   color: #a3a3a3;
   text-decoration: none;
   transition: 0.3s all ease-in;
}
.footermenu-list li a:hover {
   color: var(--orange-color);
   margin-left: 10px;
}
.footer-third .footermenu-list li {
   display: inline-block;
   width: calc(50% - 20px);
   margin-right: 10px;
}
.footer-logo img {
   max-height: 48px;
}

.footer-logo {
   display: inline-block;
   margin-bottom: 20px;
}
.footer-one p {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 16px;
   line-height: 125%;
   color: #a3a3a3;
   margin-bottom: 20px;
}
.footer-desc strong {
   font-weight: 500;
}
.llc-pera strong {
   font-weight: 500;
   color: #fff;
}
.footer-one p:last-child {
   margin-bottom: 0;
}
.copright-pera {
   margin-top: 40px;
}
.footer-one {
   padding-right: 60px;
}
.footer-second {
   padding-left: 50px;
}
.footer-third {
   padding-left: 50px;
}
.mobile-copyright p {
   /* font-family: var(--rubik-family); */
   font-weight: 400;
   font-size: 14px;
   line-height: 125%;
   color: #a3a3a3;
   margin-bottom: 0;
   text-align: center;
}
.mobile-copyright {
   border-top: 1px solid #383838;
   padding-top: 15px;
   margin-top: 30px;
}
button.navbar-toggler.dsp-toggler:focus {
    box-shadow: none;
}
button.navbar-toggler.dsp-toggler {
    background: var(--orange-linear-gradient);
    padding: 3px 6px;
}
/* loader start  */
.page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #101d38;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-logo img {
    max-height: 50px;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--orange-color);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
    margin: auto;
    margin-top: 10px;
}
@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}
/* loader end  */

.policy-banner-section {
    padding: 100px 80px;
    background-size: cover !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.policy-banner-section:before {
    position: absolute;
    content: "";
    background: #0f172a;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
}
.policy-banner-section .common-title {
    margin-bottom: 0;
}
.policy-banner-section .common-maintitle {
    margin-bottom: 0;
}
.common-spacing {
    padding-top: 90px;
    padding-bottom: 90px;
    padding-left: 80px;
    padding-right: 80px;
}
.policy-body-content {
    border: 1px solid #101d3833;
    padding: 40px;
    border-radius: 12px;
    background: #f7f9fc;
}
.policy-body-content :is(h1,h2,h3,h4,h5,h6) {
    font-weight: 700;
    margin-bottom: 16px;
}
.policy-body-content h2 {
    font-size: 26px;
}
.policy-body-content h3 {
    font-size: 22px;
}
.policy-body-content h4 {
    font-size: 20px;
}
.policy-body-content h5 {
    font-size: 18px;
}
.policy-body-content h6 {
    font-size: 17px;
}
.policy-body-content ul li {
    margin-bottom: 10px;
}
.policy-body-content a {
    color: var(--orange-color);
    font-weight: 500;
    text-decoration: none;
}
.policy-body-content p, .policy-body-content li{
    font-weight: 500;
}
.policy-body-content ul {
    padding-left: 20px;
}
/* download page  */
.download-banner-section {
    background: #FFB75E17;
}
.download-overview-section .common-title {
    text-align: left;
    margin-bottom: 0px;
}
.download-overview-image img {
    max-height: 480px;
}
.download-banner-section .common-title {
    text-align: left;
}
.download-banner-section .common-subtitle {
    color: #545454;
}
.download-banner-section .common-title p {
    color: #545454;
}
.download-overview-image {
    padding-left: 40px;
}
.download-banner-btn :is(.btn-title, .btn-desc) {
    color: #545454;
}
.download-confidence-section {
   position: relative;
   z-index: 1;
   overflow: hidden;
}
.download-confidence-section:before {
   position: absolute;
   content: "";
   background: url(../images/confidence-bg.webp) center top no-repeat;
   width: 100%;
   height: 100%;
   left: 0px;
   top: 0px;
   background-size: cover;
   z-index: -1;
   opacity: 0.05;
}
.confidence-btn-widget :is(.btn-title, .btn-desc) {
    color: #545454;
}
.confidence-btn-widget {
    margin: auto;
    display: table;
    margin-top: 40px;
}
.confidence-btn-widget {
    margin: auto;
    display: table;
    margin-top: 40px;
    max-width: 100%;
}

.confidence-content h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 125%;
    margin-bottom: 8px;
    color: #0f172a;
}

.confidence-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #58616e;
}
.confidence-content p:last-child {
    margin-bottom: 0;
}
.confidence-number-style {
    /* font-family: var(--dmsans-family); */
    font-weight: 900;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #101D38;
}
.confidence-box {
    display: flex;
    position: relative;
    padding-top: 60px;
}

.confidence-number {
    max-width: 80px;
    flex: 0 0 80px;
}

.confidence-content {
    max-width: calc(100% - 80px);
    flex: 0 0 calc(100% - 80px);
}
.confidence-yellow-box {
    background: var(--orange-linear-gradient);
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 0;
    display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #888888
}
.confidence-custom-column {
    position: relative;
}
.confidence-custom-column:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    border-top: 2px dashed #888888;
    top: 20px;
}
.confidence-custom-column:last-child:before {
    border-top: 2px dashed #888888;
}
.yellow-inner-dot {
    width: 12px;
    height: 12px;
    background: #888888;
}
.confidence-btn-widget .common-button {
    width: auto;
    margin: auto;
    display: table;
}
.download-performance-btn :is(.btn-title, .btn-desc) {
    color: #333333;
}
.download-performance-section .performance-content-colum .common-title {
    margin-bottom: 0;
}

.dsp-faq .accordion-item {
    border: 0;
    margin-bottom: 10px;
    border-radius: 7px;
    overflow: hidden;
    background: none;
}
    .dsp-faq .accordion-button {
    color: #101D38;
    font-size: 24px;
    font-weight: 500;
    padding: 24px 24px;
    border-radius: 12px !important;
    background: #0000001A;
        box-shadow: none;
}
    .dsp-faq .accordion-button::after {
    content: "+";
    background-image: none;
    font-size: 30px;
    font-weight: 400;
    width: auto;
    height: auto;
    color: #101D38;
    line-height: 1;
}
  .dsp-faq .accordion-button:not(.collapsed) {
    background: var(--orange-linear-gradient);
    color: #101D38;
    border-radius: 12px 12px 0 0  !important;
    padding-bottom: 18px;
}
    .dsp-faq .accordion-button:not(.collapsed)::after {
        content: "×";
        background-image: none;
        transform: none;
        font-size: 30px;
        color: #fff;
    }
    .dsp-faq .accordion-body {
    background: var(--orange-linear-gradient);
    color: #58616E;
    padding: 0 24px 24px;
    font-size: 20px;
    line-height: 140%;
}
    .dsp-faq .accordion-button:focus {
        box-shadow: none;
    }
    .download-cl-icon {
    max-width: 80px;
    flex: 0 0 80px;
}
.download-choose-list-widget {
    display: flex;
    align-items: center;
    background: #253444;
    padding: 30px 40px;
    border-bottom: 1px solid #ed8f0359;
    transition: 0.3s all ease-in;
}
.download-choose-list-widget:hover {
    background: var(--orange-linear-gradient) !important;
}

.download-choose-list-widget:nth-child(3) {
    background: #353846;
}
.download-choose-list-widget:last-child {
    border: none;
}
.download-cl-content {
    flex: 0 0 calc(100% - 80px);
    max-width: calc(100% - 80px);
}
.download-choose-content {
    border-radius: 20px;
    overflow: hidden;
}

.download-cl-content h3 {
    /* font-family: var(--poppins-family); */
    font-weight: 500;
    font-size: 20px;
    line-height: 125%;
    letter-spacing: 0%;
    color: #fff;
    margin-bottom: 14px;
     transition: 0.2s all ease-in;
}
.download-choose-list-widget:hover .download-cl-content h3{
    color: #101d38;
}
.download-cl-content p {
   /* font-family: var(--lato-family); */
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #fff;
     transition: 0.2s all ease-in;
}
.download-cl-content p:last-child {
    margin-bottom: 0;
}
.download-choose-list-widget:hover .download-cl-content p{
    color: #333333;
}
.download-cl-icon img {
    max-width: 60px;
    max-height: 60px;
    transition: 0.2s all ease-in;
}
.download-choose-list-widget:hover .download-cl-icon img {
    filter: brightness(0.2) !important ;
}
.download-choose-section {
   background: #091127;
   position: relative;
   z-index:1;
   overflow: hidden;
}
.download-choose-section:before {
   position: absolute;
   content: "";
   background: url(../images/choose-background.webp) center bottom no-repeat;
   width: 100%;
   height: 100%;
   left: 0px;
   bottom: 0px;
   background-size: cover;
   z-index: -1;
   opacity: 0.21;
}
/* .download-choose-image {
    position: relative;
    top: 90px;
} */
 .about-who-title .common-maintitle {
    margin-bottom: 10px;
}
.about-who-title {
    padding-left: 25px;
}
 .common-title.about-who-title .common-title p {
    margin-bottom: 12px;
}
.grad-color {
     background: var(--orange-linear-gradient);
      background-clip: text;
      color: transparent;
}
.about-banner-section {
    padding-top: 160px;
    padding-bottom: 160px;
        background-size: cover !important;
}
.read-btn {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--orange-color);
    text-decoration: none;
}
.uninstall-banner .common-title {
    margin-bottom: 0 !important;
}
.uninstall-banner  .common-title p:last-child {
    margin-bottom: 0 !important;
}
.uninstall-cards-title h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    letter-spacing: 0%;
    text-align: center;
}

.uninstall-cards-title {
    margin-bottom: 25px;
}
.uninstall-content ul li {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #1E1E1E;
    margin-bottom: 20px;
}
.uninstall-content ul li:last-child {
    margin-bottom: 0px;
}
.uninstall-section-widget {
    margin-bottom: 50px;
}
.uninstall-section-widget:last-child {
    margin-bottom: 0px;
}
.uninstall-problem-widget {
    background: linear-gradient(90deg, rgba(255, 183, 94, 0.03) 0%, rgba(237, 143, 3, 0.03) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #ed8f0352;
    text-align: center;
}
.problem-title {
    font-family: var(--manrope-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    margin-bottom: 15px;
    color: #101D38;
}
.uninstall-heading p {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #101D38;
}
.uninstall-problem-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 30px;
    align-items: center;
}
.uninstall-problem-list ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #101D38;
    text-decoration: none;
}
.uninstall-problem-list ul li a:hover {
    color: var(--orange-color);
}
.uninstall-problem-list ul li a img {
    max-height: 20px;
    width: auto;
    margin-right: 10px;
}
.uninstall-problem-list ul li:first-child a img {
    max-height: 24px;
    position: relative;
    top: -1px;
}
.uninstall-cards-title p {
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #1E1E1E;
    margin-bottom: 30px;
    text-align: center;
}
#scrollToTop {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--orange-linear-gradient);
    color: #101d38;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTop:hover {
    background: #e88d00;
}
.thanku-banner .common-maintitle {
    font-weight: 700;
    color: #2BB700;
}
.thanku-banner .common-title {
    margin-bottom: 90px;
}
.confirm-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #101D38;
    margin-bottom: 12px;
}
.confirm-title strong {
    font-weight: 700;
}
.thankucommon-title p {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #58616E;
    margin-bottom: 12px;
}
.thankucommon-title .note-content {
    font-weight: 700;
    color: var(--orange-color);
}
.thankucommon-title .note-content strong{
    color: #101D38;
}
.main-btn.thanku-btn-widget {
    max-width: 100%;
    margin-top: 24px;
}
.thanku-btn-widget .common-button {
    width: auto;
}
.main-btn.thanku-btn-widget .btn-desc {
    font-size: 18px;
    color: #101D38;
    text-align: left;
}
.main-btn.thanku-btn-widget .btn-title {
    font-weight: 700;
    font-size: 24px;
    text-align: left;
    color: #101D38;
}
.thanku-btn-widget .btn-widget {
    margin-bottom: 20px;
    text-align: left;
}
.tdriver-inner {
    max-width: 295px;
    position: relative;
}
img.check-mark {
    position: absolute;
    right: -24px;
    border: 2px solid #fff;
    border-radius: 100%;
    top: -24px;
    background: #fff;
    max-width: 68px;
}
.thanku-container {
    max-width: 1050px;
    margin: auto;
}
.thanku-driver-content {
    padding-left: 40px;
}
.thanku-card-widget {
    margin-top: 60px;
}
.contact-performance-section {
    background: var(--orange-linear-gradient);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact-performance-section::before {
    position: absolute;
    z-index: -1;
    content: "";
    background: url(../images/cp-banner.webp) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
}
.contact-performance-section .performance-content-colum .common-title p {
    margin: 0;
}
.contact-performance-section .performance-content-colum .common-title {
    margin-bottom: 0;
}
.contact-performance-btn .common-button {
    background: #101d38;
    color: var(--gray-color);
    border: 1px solid #101d38;
}
.contact-performance-btn .common-button img {
    filter: brightness(0) invert(1);
}
.contact-performance-btn .btn-title, .contact-performance-btn .btn-desc{
    color: #333333;
}
.contact-performance-btn .common-button:hover {
    background: var(--orange-linear-gradient);
    color: #333333;
}
.contact-performance-btn .common-button:hover img {
    filter: none;
}
.contact-form-section {
    background: #F4F4F4;
}
.contact-form-widget {
    background: #101D38;
    padding: 40px 32px;
    border-radius: 16px;
}
.contact-form-title h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}
.contact-form-title {
    margin-bottom: 25px;
}
.contact-form .form-control {
    background: #fff;
    padding: 16px 24px;
    border-radius: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #333333;
}
.contact-form .form-control::placeholder {
    color: rgb(51 51 51 / 50%);
}
.contact-submit-button .common-button {
    border: none;
    display: table;
    width: auto;
    margin: auto;
    color: #fff;
    padding: 12px 36px;
}

.contact-submit-button {
    margin-top: 24px;
}
.contactform-widget{
   margin-bottom: 16px;
}
.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--orange-color);
}
.contact-faq-widget .common-maintitle {
    font-weight: 600;
    font-size: 44px;
    text-align: left;
}
.contact-faq-widget .dsp-faq .accordion-button {
    font-size: 20px;
    padding: 12px 0px;
    background: #F4F4F4;
}
.contact-faq-widget .dsp-faq .accordion-button:not(.collapsed) {
    border-bottom: 1px solid #ECEDF0;
    background: var(--orange-linear-gradient);
    padding: 12px 24px;
}
.contact-faq-widget .dsp-faq .accordion-body {
    font-size: 18px;
    padding-top: 16px;
}
.contact-faq-widget {
    padding-left: 16px;
}
.contact-faq-widget .common-title {
    margin-bottom: 30px;
}
.contactpage-banner .common-subtitle {
    font-weight: 400;
    font-size: 36px;
    color: #333333;
    margin-bottom: 10px;
}
.contactpage-banner .common-maintitle {
    font-weight: 600;
    margin-bottom: 10px;
}
.contactpage-banner .common-title p {
    color: #333333;
}
.contactpage-banner {
    background: #F4F4F4;
}
.contact-address-section {
    background: #101D38;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact-address-section::before {
    position: absolute;
    z-index: -1;
    content: "";
    background: url(../images/adrs-bg.webp) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.08;
}
.address-box {
    background: #fff;
    border-radius: 12px;
    padding: 24px 24px;
    text-align: center;
    height: 100%;
    transition: 0.3s all ease-in;
    border: 1px solid #fff;
}
.address-box:hover {
    /* background: #F4F4F4; */
    border-color: var(--orange-color);
        transform: scale(1.04);
}
.adrs-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #101D38;
    margin-bottom: 12px;
}
.address-content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #545454;
}
.address-link a {
    font-weight: 600;
    font-size: 18px;
    line-height: 125%;
    text-decoration: none;
    display: inline-block;
}
.address-link a.grad-color:hover {
    color: #101d38;
}
.address-content {
    min-height: 90px;
    margin-bottom: 20px;
}
.address-icon {
    background: var(--orange-linear-gradient);
    width: 64px;
    height: 64px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.address-icon img {
    max-height: 31px;
    width: auto;
}
@media (max-width: 1700px) {
   .banner-heading {
      font-size: 66px;
   }
   .common-maintitle {
      font-size: 44px;
   }
   .common-subtitle {
      font-size: 26px;
   }
   .hardware-section {
      padding: 130px 80px;
   }
   .counter-inner-card .common-maintitle {
      font-size: 38px;
   }
   .countercard-widget {
      margin-bottom: 30px;
   }
   .counter-inner-card .common-title {
      margin-bottom: 35px;
   }
   .counter-number {
      font-size: 38px;
   }
   .miliontitle {
      font-size: 90px;
   }
   .about-banner-section {
    padding-top: 140px;
    padding-bottom: 140px;
}
}
@media (max-width: 1600px) {
   .banner-heading {
      font-size: 58px;
   }
   .topbar-main {
      padding: 5px 60px;
   }
   .dsp-header {
      padding: 7px 60px;
   }
   .custom-banner {
      padding: 150px 60px;
   }
   .banner-content-widget p {
      font-size: 19px;
   }
   .banner-btn-widget {
      margin-top: 50px;
   }
   .outdated-driver-section {
      padding-top: 80px;
      padding-left: 60px;
      padding-right: 60px;
   }
   .common-maintitle {
      font-size: 40px;
      margin-bottom: 15px;
   }
   .common-subtitle {
      font-size: 24px;
      margin-bottom: 15px;
   }
   .common-title p {
      font-size: 19px;
   }
   .read-btn {
    font-size: 19px;
}
   .driver_card h4 {
      font-size: 19px;
   }
   .window-pc-section {
      padding: 80px 60px;
   }
   .windows-list ul li a {
      padding: 13px 27px;
      font-size: 19px;
   }
   .windows-list {
      max-width: 470px;
   }
   .windows-list ul li a img {
      max-height: 26px;
   }
   .hardware-section {
      padding: 100px 60px;
   }
   .hardware-content {
      padding-left: 30px;
   }
   .performance-section {
      padding: 65px 60px;
   }
   .performance-content-colum .common-maintitle {
      font-size: 32px;
   }
   .counter-inner-card .common-maintitle {
      font-size: 34px;
   }
   .counter-inner-card .common-title p {
      font-size: 18px;
   }
   .counter-number {
      font-size: 36px;
   }
   .countercard-widget {
      margin-bottom: 25px;
   }
   .counter-inner-card .common-title {
      margin-bottom: 30px;
   }
   .inner-counter-card {
      bottom: 60px;
   }
   .testimonial-section {
      padding: 80px 60px;
   }
   .monial-card h4 {
      font-size: 19px;
   }
   .million-user {
      padding: 80px 60px;
   }
   .miliontitle {
      font-size: 86px;
   }
   .footerbar {
      padding: 70px 60px;
   }
   .dsp-menu .nav-item .nav-link {
      font-size: 17px;
   }
   .dsp-buy-btn {
      font-size: 17px;
   }
   .common-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 60px;
    padding-right: 60px;
}
.confidence-content h4 {
    font-size: 19px;
}
.confidence-content p {
    font-size: 16px;
}
.download-cl-content h3 {
    font-size: 19px;
}
.dsp-faq .accordion-button {
    font-size: 22px;
}
.dsp-faq .accordion-body {
    font-size: 18px;
}
.confidence-number-style {
    font-size: 84px;
}
.confidence-number {
    max-width: 70px;
    flex: 0 0 70px;
}
.confidence-content {
    max-width: calc(100% - 70px);
    flex: 0 0 calc(100% - 70px);
}
.about-banner-section {
    padding-top: 140px;
    padding-bottom: 140px;
}
.uninstall-cards-title h2 {
    font-size: 28px;
}
.uninstall-content ul li {
    font-size: 22px;
}
.uninstall-cards-title p {
    font-size: 22px;
}
.contactpage-banner .common-subtitle {
    font-size: 30px;
}
.address-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.address-icon img {
    max-height: 28px;
}
.adrs-title {
    font-size: 22px;
}
.address-link a {
    font-size: 17px;
}
.contact-faq-widget .common-maintitle {
    font-size: 40px;
}
.contact-faq-widget .dsp-faq .accordion-button {
    font-size: 19px;
}
.contact-faq-widget .dsp-faq .accordion-body {
    font-size: 17px;
}
}
@media (max-width: 1399px) {
   .topbar-main {
      padding: 5px 50px;
   }
   .dsp-header {
      padding: 3px 50px;
   }
   .dsp-logo img {
      max-height: 38px;
   }
   .topbar-content a {
      font-size: 15px;
   }
   .topbar-content a img {
      max-height: 12px;
   }
   .custom-banner {
      padding: 130px 50px;
   }
   .banner-subheading {
      font-size: 24px;
      margin-bottom: 20px;
   }
   .banner-heading {
      font-size: 50px;
      margin-bottom: 20px;
   }
   .banner-content-widget p {
      font-size: 17px;
   }
   .banner-btn-widget {
      margin-top: 35px;
   }
   .dsp-menu .nav-item .nav-link {
      font-size: 16px;
   }
   .dsp-buy-btn {
      font-size: 16px;
   }
   .outdated-driver-section {
      padding-top: 60px;
      padding-left: 50px;
      padding-right: 50px;
   }
   .common-maintitle {
      font-size: 36px;
   }
   .common-subtitle {
      font-size: 22px;
   }
   .common-title p {
      font-size: 17px;
   }
   .read-btn {
    font-size: 17px;
}
   .driver_card img {
      height: 36px;
      margin-bottom: 18px;
   }
   .driver_card h4 {
      font-size: 17px;
   }
   .driver_card p {
      font-size: 15px;
   }
   .driver_card p:last-child {
      margin-bottom: 0;
   }
   .row_gap_30 {
      row-gap: 20px;
   }
   .window-pc-section {
      padding: 60px 50px;
      background-position: calc(100% - -60px) center !important;
   }
   .windows-list ul li a {
      padding: 13px 20px;
      font-size: 18px;
      gap: 15px;
   }
   .windows-list {
      max-width: 430px;
   }
   .hardware-section {
      padding: 80px 50px;
   }
   .performance-section {
      padding: 60px 50px;
   }
   .performance-content-colum .common-maintitle {
      font-size: 30px;
   }
   .performance-content-colum .common-subtitle {
      font-size: 23px;
   }
   .common-button {
      font-size: 17px;
      padding: 14px 30px;
   }
   .common-button img {
      max-height: 18px;
   }
   .counter-inner-card .common-maintitle {
      font-size: 32px;
   }
   .counter-inner-card .common-title p {
      font-size: 17px;
   }
   .countercard-widget {
      margin-bottom: 20px;
   }
   .counter-number {
      font-size: 32px;
   }
   .counter-inner-card {
      padding: 30px;
   }
   .counter-inner-card .common-title {
      margin-bottom: 25px;
   }
   .testimonial-section {
      padding: 60px 50px;
   }
   .testimonial-section .common-maintitle {
      max-width: 480px;
      font-size: 32px;
   }
   .testimonial-widget:before {
      width: 56px;
      height: 50px;
      right: -20px;
      top: -54px;
   }
   .testimonial-widget:after {
      width: 46px;
      height: 50px;
      left: -25px;
      bottom: 20px;
   }
   .monial-card h4 {
      font-size: 18px;
   }
   .monial-card p {
      font-size: 16px;
   }
   .owl-dots {
      margin-top: 20px !important;
   }
   .million-user {
      padding: 70px 50px;
   }
   .miliontitle {
      font-size: 80px;
   }
   .driver-content-colum .common-maintitle {
      font-size: 32px;
   }
   .footertop p {
      font-size: 15px;
   }
   .footertop {
      padding: 12px 60px;
   }
   .footerbar {
      padding: 60px 50px;
   }
   .footer-logo img {
      max-height: 42px;
   }
   .footer-one p {
      margin-bottom: 17px;
   }
   .copright-pera {
      margin-top: 30px;
   }
   .footer-menutitle {
      font-size: 20px;
   }
   .footer-third {
      padding-left: 10px;
   }
   .footer-second {
      padding-left: 20px;
   }
   .common-spacing {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 50px;
    padding-right: 50px;
}
.policy-banner-section {
    padding: 90px 60px;
}
.policy-body-content {
    padding: 40px 35px;
}
.policy-body-content h2 {
    font-size: 23px;
}
.policy-body-content h3 {
    font-size: 20px;
}
.policy-body-content h4 {
    font-size: 18px;
}
.policy-body-content h5 {
    font-size: 17px;
}
.policy-body-content h6 {
    font-size: 16px;
}
.confidence-content h4 {
    font-size: 17px;
}
.confidence-content p {
    font-size: 15px;
}
.confidence-number-style {
    font-size: 70px;
}
.confidence-number {
    max-width: 58px;
    flex: 0 0 58px;
}
.confidence-content {
    max-width: calc(100% - 58px);
    flex: 0 0 calc(100% - 58px);
}
.confidence-yellow-box {
    width: 36px;
    height: 36px;
}
.confidence-box {
    padding-top: 53px;
}
.confidence-btn-widget {
    margin-top: 30px;
}
.download-cl-content h3 {
    font-size: 17px;
}
.download-cl-content p {
    font-size: 15px;
}
.download-cl-icon img {
    max-height: 54px;
    max-width: 54px;
}
.download-choose-image img {
    max-width: 400px;
}
 .download-choose-image {
    text-align: center;
}
.download-choose-list-widget {
    padding: 25px 40px;
}
.download-performance-btn .common-button {
    padding: 13px 23px;
}
.dsp-faq .accordion-button {
    font-size: 19px;
        padding: 18px 20px;
}
.dsp-faq .accordion-button:not(.collapsed) {
    padding-bottom: 10px;
}
.dsp-faq .accordion-body {
    font-size: 16px;
    padding: 0 18px 20px;
}
.confidence-custom-column:before {
    top: 18px;
}
 .about-banner-section {
    padding-top: 110px;
    padding-bottom: 110px;
}
.about-who-title {
    padding-left: 15px;
}
.uninstall-cards-title h2 {
    font-size: 26px;
}
.uninstall-content ul li {
    font-size: 20px;
}
.uninstall-cards-title p {
    font-size: 20px;
}
.problem-title {
    font-size: 23px;
}
.uninstall-heading p {
    font-size: 17px;
}
.uninstall-problem-list ul li a {
    font-size: 17px;
}
.uninstall-problem-list ul li a img {
    max-height: 18px;
}
.uninstall-problem-list ul li:first-child a img {
    max-height: 22px;
}
.contactpage-banner .common-subtitle {
    font-size: 26px;
}
.adrs-title {
    font-size: 20px;
        margin-bottom: 10px;
}
.address-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
}
.address-icon img {
    max-height: 25px;
}
.address-link a {
    font-size: 16px;
}
.address-content {
    min-height: 100px;
    margin-bottom: 15px;
}
.contact-faq-widget .common-maintitle {
    font-size: 34px;
}
.contact-faq-widget .dsp-faq .accordion-button:not(.collapsed) {
    padding: 12px 20px;
}
.contact-faq-widget .dsp-faq .accordion-button {
    font-size: 18px;
}
.contact-faq-widget .dsp-faq .accordion-body {
    font-size: 16px;
    padding-top: 15px;
}
.contact-form-title h3 {
    font-size: 18px;
}
.contact-form-title {
    margin-bottom: 20px;
}
}

@media (max-width: 1199px) {
   div#dspNavbar {
    background: #ffffff08;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    border: 1px solid #faad4840;
    transition: 0.25s all ease-in;
}
   .dsp-menu .nav-item .nav-link {
      text-align: left;
   }
   .dsp-menu .nav-item {
      margin: 0;
      margin-bottom: 10px;
   }
   .dsp-buy-btn {
      margin-top: 10px;
   }
   .topbar-main {
      padding: 5px 33px;
   }
   .dsp-header {
      padding: 3px 33px;
   }
   .custom-banner {
      padding: 90px 33px;
   }
   .banner-heading {
      font-size: 44px;
   }
   .banner-content-widget p {
      font-size: 16px;
   }
   .banner-btn-widget {
      margin-top: 25px;
   }
   .common-button {
      font-size: 16px;
      padding: 13px 28px;
      width: auto;
      margin: auto;
   }
   .outdated-driver-section {
      padding-top: 50px;
      padding-left: 33px;
      padding-right: 33px;
   }
   .common-maintitle {
      font-size: 34px;
   }
   .common-title p {
      font-size: 16px;
   }
   .read-btn {
    font-size: 16px;
}
   .driver_card {
      padding: 15px;
   }
   .driver_card img {
      height: 34px;
      margin-bottom: 15px;
   }
   .row_gap_30 {
      row-gap: 15px;
   }
   .driver_card h4 {
      font-size: 16px;
   }
   .driver_card p {
      font-size: 14px;
   }
   .outdated-driver-cardwidget {
      padding-bottom: 40px;
   }
   .btn-widget {
      text-align: center;
   }
   .window-pc-section {
      padding: 50px 33px;
      background-position: calc(100% - -72px) center !important;
   }
   .windowpc-content .common-maintitle {
      font-size: 32px;
   }
   .windows-list ul li a {
      padding: 12px 20px;
      font-size: 16px;
      margin: 0;
   }
   .windows-list ul li {
      margin-right: 8px;
      width: calc(50% - 16px);
      margin-bottom: 10px;
   }
   .windowpc-content .common-title {
      margin-bottom: 35px;
   }
   .windows-list {
      max-width: 380px;
   }
   .windows-list ul li a img {
      max-height: 24px;
   }
   .hardware-section {
      padding: 65px 33px;
   }
   .hardware-content .common-maintitle {
      font-size: 30px;
   }
   .hardware-content .common-subtitle {
      font-size: 20px;
   }
   .hardware-content {
      padding-left: 20px;
   }
   .performance-section {
      padding: 50px 33px;
   }
   .performance-content-colum .common-maintitle {
      font-size: 24px;
   }
   .performance-content-colum .common-subtitle {
      font-size: 22px;
   }
   .counter-inner-card .common-maintitle {
      font-size: 28px;
   }
   .counter-inner-card .common-title p {
      font-size: 16px;
   }
   .counter-number {
      font-size: 28px;
   }
   .counter-inner-card {
      padding: 25px;
   }
   .inner-counter-card {
      bottom: 40px;
   }
   .testimonial-section {
      padding: 50px 33px;
   }
   .testimonial-section .common-maintitle {
      max-width: 460px;
      font-size: 30px;
   }
   .monial-card h4 {
      font-size: 17px;
   }

   .million-user {
      padding: 60px 33px;
   }
   .miliontitle {
      font-size: 72px;
   }
   .driver-content-colum .common-maintitle {
      font-size: 28px;
   }
   .million-btn-widget .btn-widget {
      text-align: left;
   }
   .driver-content-colum .common-title {
      margin-bottom: 30px;
   }
   .million-btn-widget .btn-title {
      font-size: 15px;
   }
   .footertop {
      padding: 10px 45px;
   }
   .footerbar {
      padding: 50px 33px;
   }
   .footer-menutitle {
      font-size: 18px;
   }
   .footer-third {
      padding-left: 0px;
   }
   .footer-logo img {
      max-height: 38px;
   }
   .footer-one p {
      font-size: 15px;
   }
   .footermenu-list li a {
      font-size: 15px;
   }
   .footer-one p {
      font-size: 14px;
   }
   .footer-one {
      padding-right: 0;
   }
   .footer-second {
      padding-left: 40px;
   }
   .common-spacing {
    padding-left: 33px;
    padding-right: 33px;
}
.confidence-yellow-box {
    width: 32px;
    height: 32px;
}
.confidence-custom-column:before {
    top: 16px;
}
.confidence-number-style {
    font-size: 56px;
}
.confidence-number {
    max-width: 44px;
    flex: 0 0 44px;
}
.confidence-content {
    max-width: calc(100% - 44px);
    flex: 0 0 calc(100% - 44px);
}
.confidence-content h4 {
    font-size: 16px;
}
.confidence-content p {
    font-size: 14px;
}
.download-choose-image img {
    max-width: 340px;
}
.download-choose-list-widget {
    padding: 20px 22px;
}
.download-cl-content h3 {
    font-size: 16px;
        margin-bottom: 12px;
}
.download-cl-content p {
    font-size: 14px;
}
.download-cl-icon img {
    max-height: 44px;
    max-width: 44px;
}
.download-cl-icon {
    max-width: 60px;
    flex: 0 0 60px;
}
.download-cl-content {
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
}
.dsp-faq .accordion-button {
    font-size: 18px;
    padding: 16px 20px;
}
.dsp-faq .accordion-body {
    font-size: 15px;
    padding: 0 16px 20px;
}
.dsp-faq .accordion-button::after {
    font-size: 24px;
}
.about-banner-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-who-title {
    padding-left: 0;
}
.uninstall-cards-title h2 {
    font-size: 24px;
}
.uninstall-content ul li {
    font-size: 19px;
}
.uninstall-cards-title p {
    font-size: 19px;
}
.problem-title {
    font-size: 22px;
}
.confirm-title {
    font-size: 19px;
}
.thankucommon-title p {
    font-size: 19px;
}
.tdriver-inner {
    max-width: 280px;
}
.thanku-container {
    max-width: 900px;
}
.thanku-banner .common-title {
    margin-bottom: 75px;
}
.main-btn.thanku-btn-widget .btn-title {
    font-size: 21px;
}
.main-btn.thanku-btn-widget .btn-desc {
    font-size: 16px;
}
.common-spacing.thanku-banner {
    padding-bottom: 0;
}
.contactpage-banner .common-subtitle {
    font-size: 24px;
}
.address-box {
    padding: 20px 15px;
}
.address-content p {
    font-size: 15px;
}
.adrs-title {
    font-size: 18px;
}
.address-icon {
    width: 52px;
    height: 52px;
}
.address-icon img {
    max-height: 22px;
}
.address-content {
    min-height: 95px;
}
.address-link a {
    font-size: 15px;
}
.contact-faq-widget .common-maintitle {
    font-size: 30px;
}
.contact-faq-widget .dsp-faq .accordion-button:not(.collapsed) {
    padding: 12px 16px;
}
.contact-faq-widget {
    padding-left: 0px;
}
.contact-form-widget {
    padding: 25px 17px;
}
.contact-form .form-control {
    padding: 14px 14px;
}
}
@media (max-width: 991px) {
   .topbar-main {
      padding: 5px 23px;
   }
   .dsp-header {
      padding: 5px 23px;
   }
   .navbar-brand.dsp-logo {
      padding: 0;
   }
   .custom-banner {
      padding: 70px 23px;
   }
   .banner-subheading {
      font-size: 22px;
   }
   .banner-heading {
      font-size: 38px;
   }
   .banner-content-widget p {
      font-size: 15px;
   }
   .custom-banner:before {
      background: linear-gradient(
         90deg,
         #0f172a 15%,
         rgba(51, 79, 144, 0) 115%
      );
   }
   .banner-btn-widget {
      margin-top: 15px;
   }
   .btn-title {
      font-size: 15px;
   }
   .common-button {
      width: 100%;
   }
   .main-btn {
      max-width: 250px;
   }
   .outdated-driver-section {
      padding-left: 23px;
      padding-right: 23px;
      padding-bottom: 60px;
   }
   .common-maintitle {
      font-size: 32px;
      margin-bottom: 12px;
   }
   .common-subtitle {
      font-size: 20px;
      margin-bottom: 12px;
   }
   .outdated-driver-image {
      text-align: center;
      display: none;
   }
   .row_gap_30 {
      row-gap: 24px;
   }
   .outdated-driver-cardwidget {
      padding-bottom: 0;
   }
   .window-pc-section {
      padding: 50px 23px;
      background-position: calc(100% - -80px) center !important;
   }
   .windowpc-content .common-maintitle {
      font-size: 28px;
   }
   .windowpc-content .common-title p {
      font-size: 15px;
   }
   .window-pc-section:before {
      background: linear-gradient(
         90deg,
         rgba(15, 33, 47, 0.8) 56.9%,
         rgba(15, 32, 44, 0) 74.16%
      );
   }
   .windows-list ul li a img {
      max-height: 22px;
   }
   .windows-list {
      max-width: 370px;
   }
   .hardware-content .common-maintitle {
      font-size: 26px;
   }
   .hardware-content .common-subtitle {
      font-size: 18px;
   }
   .hardware-content .common-title {
      margin-bottom: 25px;
   }
   .hardware-section {
      padding: 60px 23px;
   }
   .performance-content-colum .common-maintitle {
      font-size: 24px;
   }
   .performance-content-colum .common-subtitle {
      font-size: 19px;
   }
   .performance-section {
      padding: 50px 23px;
   }
   .performance-content-colum .common-title {
      margin-bottom: 24px;
   }
   .inner-counter-card {
      bottom: 0;
      position: relative;
   }
   .counter-colum-right {
      margin-left: 0;
   }
   .container-position {
      max-width: 100%;
      padding: 0;
   }
   .counter-inner-card {
      padding: 50px 35px;
   }
   .counter-inner-card .common-title {
      text-align: center;
   }
   .verified-box {
      text-align: center;
   }
   .counter-btn-widget {
      margin-left: auto;
      margin-right: auto;
      display: table;
   }
   .monial-card p {
      font-size: 15px;
   }
   .testimonial-section {
      padding: 50px 23px;
   }
   .monial-card h4 {
      font-size: 16px;
   }
   .miliontitle {
      font-size: 64px;
   }
   .driver-content-colum .common-maintitle {
      font-size: 26px;
   }
   .main-btn.million-btn-widget {
      max-width: 100%;
   }
   .million-btn-widget .btn-title {
      font-size: 13px;
   }
   .million-user {
      padding: 50px 23px;
   }
   .footertop p {
      font-size: 14px;
   }
   .footertop {
      padding: 10px 35px;
   }
   .footer-one {
      text-align: center;
      margin-bottom: 40px;
   }
   .footer-second {
      padding-left: 0;
   }
   .footer-menutitle {
      margin-bottom: 15px;
   }
   .footerbar {
      padding: 45px 23px 20px;
   }
   .footer-one .copright-pera {
      display: none;
   }
   .counter-inner-card {
    background: rgb(16 29 56 / 100%);
}
.common-spacing {
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 60px;
    padding-bottom: 60px;
}
.policy-banner-section {
    padding: 80px 40px;
}
.policy-body-content {
    padding: 35px 30px;
}
.confidence-box {
    padding-top: 45px;
    padding-bottom: 25px;
}
.confidence-btn-widget {
    margin-top: 15px;
}
.download-choose-image img {
    max-width: 270px;
}
.dsp-faq .accordion-button {
    font-size: 17px;
}
.dsp-faq .accordion-button:not(.collapsed) {
    padding-bottom: 7px;
}
.about-banner-section {
    padding-top: 60px;
    padding-bottom: 40px;
}
.uninstall-cards-title h2 {
    font-size: 22px;
}
.uninstall-content ul li {
    font-size: 17px;
        margin-bottom: 17px;
}
.uninstall-cards-title p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 140%;
}
.uninstall-heading p {
    font-size: 16px;
}
.uninstall-problem-list ul li a {
    font-size: 16px;
}
.thanku-banner .common-title {
    margin-bottom: 50px;
}
.confirm-title {
    font-size: 17px;
    margin-bottom: 10px;
}
.thankucommon-title p {
    font-size: 17px;
    margin-bottom: 10px;
}
.thanku-driver-content {
    padding-left: 20px;
}
.main-btn.thanku-btn-widget {
    margin-top: 18px;
}
.main-btn.thanku-btn-widget .btn-title {
    font-size: 18px;
}
.main-btn.thanku-btn-widget .btn-desc {
    font-size: 15px;
}
img.check-mark {
    right: -20px;
    top: -20px;
    max-width: 58px;
}
.address-link a {
    font-size: 14px;
}
.address-content p {
    font-size: 14px;
}
.adrs-title {
    font-size: 17px;
}
.address-box {
    padding: 20px 10px;
}
.address-content {
    min-height: 105px;
}
.contact-faq-widget .common-maintitle {
    font-size: 26px;
}
}
@media (min-width: 768px) and (max-width: 920px) {
.about-banner-section {
    background-position: -270px !important;
}
}
@media (max-width: 767px) {
   .banner-heading {
      font-size: 34px;
   }
   .banner-subheading {
      font-size: 20px;
   }
   .common-maintitle {
      font-size: 28px;
   }
   .common-subtitle {
      font-size: 18px;
   }
   .window-pc-section:before {
      background: linear-gradient(
         90deg,
         rgba(15, 33, 47, 0.8) 56.9%,
         rgba(15, 32, 44, 0) 100%
      );
   }
   .windowpc-content {
      max-width: 100%;
      text-align: center;
   }
   .windowpc-content .common-title {
      text-align: center;
   }
   .windows-list {
      margin: auto;
   }
   .banner-main-content {
      text-align: center;
   }
   .custom-banner:before {
      background: linear-gradient(
         90deg,
         #0f172a 15%,
         rgba(51, 79, 144, 0) 155%
      );
   }
   .hardware-content {
      padding-left: 0;
      margin-top: 35px;
      text-align: center;
   }
   .hardware-content .common-maintitle {
      font-size: 24px;
   }
   .hardware-content .common-title {
      text-align: center;
   }
   .hardware-section {
      padding: 60px 23px 50px;
   }
   .performance-content-colum {
      text-align: center;
      margin-top: 35px;
   }
   .performance-content-colum .common-title {
      text-align: center;
   }
   .counter-inner-card .common-maintitle {
      font-size: 24px;
   }
   .counter-number {
      font-size: 24px;
   }
   .counter-title {
      font-size: 13px;
   }
   .countercard-widget {
      margin-bottom: 35px;
   }
   .counter-inner-card .common-title {
      margin-bottom: 30px;
   }
   .testimonial-section .common-maintitle {
      max-width: 390px;
      font-size: 26px;
   }
   .common-title {
      margin-bottom: 35px;
   }
   .testimonial-widget:before {
      width: 38px;
      height: 38px;
      top: -45px;
   }
   .testimonial-widget:after {
      width: 35px;
      height: 40px;
      left: -14px;
      bottom: 0;
   }
   .driver-content-colum .common-title {
      text-align: center;
   }
   .driver-content-colum {
      margin-top: 30px;
      text-align: center;
   }
   .million-btn-widget .btn-widget {
      text-align: center;
   }
   .miliontitle {
      font-size: 60px;
   }
   .driver-content-colum .common-maintitle {
      font-size: 24px;
   }
   .million-btn-widget .btn-title {
      text-align: center;
   }
   .mobile-copyright {
      padding-top: 15px;
   }
   .policy-body-content {
    padding: 30px 25px;
}
.download-banner-section .download-overview-image img {
    max-width: 400px;
}
.download-overview-image {
    padding-left: 0;
    text-align: center;
    margin-bottom: 40px;
}
.download-banner-section {
    padding-top: 50px;
}
.download-banner-section .common-title {
    text-align: center;
            margin-bottom: 30px;
}
.main-btn.download-banner-btn {
    margin: auto;
    display: table;
}
.download-overview-section .download-overview-image img {
    max-height: 300px;
}
.download-overview-section .common-title {
    text-align: center;
}
.confidence-content h4 {
    font-size: 17px;
}
.confidence-content p {
    font-size: 15px;
}
.confidence-content p {
    font-size: 15px;
}
.confidence-custom-column:before {
    width: calc(100% - 32px);
}
.yellow-inner-dot {
    width: 10px;
    height: 10px;
    background: var(--gray-color);
}
.download-choose-section .windowpc-content {
    margin-bottom: 40px;
}
.download-performance-section .performance-content-colum {
    margin-top: 0;
}
.confidence-custom-column:last-child:before {
    border-top: 2px dashed #888888;
}
.download-performance-section .performance-content-colum .common-title {
    margin-bottom: 35px;
}
.main-btn {
    display: table;
    margin: auto;
}
.about-banner-section {
    background: #fdfdfd !important;
    background: #FFB75E17 !important;
}
.about-banner-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.about-banner-section .download-overview-image img {
    max-width: 500px;
    width: 100%;
    border: 1px solid #ccc;
}
.download-overview-image.about-overview-image img {
    max-height: unset !important;
    max-width: 500px;
    width: 100%;
}
.uninstall-cards-title h2 {
    font-size: 20px;
}
.uninstall-image {
    text-align: center;
    margin-bottom: 35px;
}
.uninstall-content ul li {
    font-size: 16px;
    margin-bottom: 13px;
}
.uninstall-cards-title p {
    font-size: 16px;
}
.uninstall-content ul {
    margin-bottom: 0;
}
.uninstall-section-widget {
    margin-bottom: 40px;
}
.uninstall-problem-widget {
    padding: 25px 20px;
}
.problem-title {
    font-size: 20px;
}
.tdriver-inner {
    margin: auto;
    margin-bottom: 40px;
}
.thankucommon-title {
    text-align: center;
}
.thanku-btn-widget .btn-widget {
    text-align: center;
}
.main-btn.thanku-btn-widget .btn-title {
    text-align: center;
}
.main-btn.thanku-btn-widget .btn-desc {
    text-align: center;
}
.thanku-card-widget {
    margin-top: 40px;
}
.thanku-driver-content {
    padding-left: 0;
}
.contactpage-banner .common-subtitle {
    font-size: 22px;
}
.address-box {
    padding: 25px 20px;
    height: auto;
    margin-bottom: 25px;
}
.col-md-4:last-child .address-box {
    margin-bottom: 0;
}
.address-content {
    min-height: auto;
}
.adrs-title {
    font-size: 19px;
}
.address-content p {
    font-size: 16px;
}
.address-link a {
    font-size: 16px;
}
.contact-form-widget {
    padding: 35px 30px;
}
.contact-form-title h3 {
    font-size: 22px;
    font-weight: 600;
}
.contact-faq-widget {
    margin-top: 40px;
}
.contact-faq-widget .common-maintitle {
    text-align: center;
}
.contact-performance-section .performance-content-colum {
    margin-top: 0;
}
.contact-performance-section .performance-content-colum .common-title {
    margin-bottom: 35px;
}
.main-btn.contact-performance-btn {
    max-width: 270px;
}
}
@media (max-width: 575px) {
   .topbar-content a {
      font-size: 13px;
   }
   .topbar-main {
      padding: 3px 13px;
   }
   .dsp-header {
      padding: 5px 13px;
   }
   .dsp-logo img {
      max-height: 34px;
   }
   .banner-heading {
      font-size: 30px;
      margin-bottom: 15px;
   }
   .banner-subheading {
      font-size: 18px;
      margin-bottom: 15px;
   }
   .outdated-driver-section {
      padding-left: 13px;
      padding-right: 13px;
      padding-bottom: 55px;
   }
   .common-maintitle {
      font-size: 26px;
   }
   .common-subtitle {
      font-size: 17px;
   }
   .common-title p {
      font-size: 15px;
   }
   .read-btn {
    font-size: 15px;
}
   .window-pc-section {
      padding: 50px 13px;
      /* background-position: right center !important; */
   }
   .window-pc-section:before {
      background: linear-gradient(90deg, rgba(15, 33, 47, 0.8) 80.9%, rgba(15, 32, 44, 0) 100%);
       background: none;
   }
   .windowpc-content .common-maintitle {
      font-size: 26px;
   }
   .hardware-section {
      padding: 50px 13px 50px;
   }
   .hardware-content .common-subtitle {
      font-size: 17px;
   }
   .hardware-content .common-maintitle {
      font-size: 24px;
      margin-bottom: 10px;
   }
   .performance-section {
      padding: 50px 13px;
   }
   .counter-inner-card {
      padding: 35px 25px 50px;
   }
   .verified-box {
      text-align: center;
      margin-bottom: 24px;
      background: #ffffff05;
      border: 1px solid #656565;
      padding: 20px 10px;
      border-radius: 10px;
   }
   .countercard-widget {
      margin-bottom: 10px;
   }
   .testimonial-section {
      padding: 50px 13px;
   }
   .testimonial-widget:before {
      width: 34px;
      height: 34px;
      top: -35px;
      right: -10px;
   }
   .owl-theme .owl-dots .owl-dot span {
      width: 11px;
      height: 11px;
   }
   .owl-theme .owl-dots .owl-dot.active span {
      width: 30px;
   }
   .owl-dots {
      margin-top: 15px !important;
   }
   .testimonial-widget:after {
      bottom: -10px;
   }
   .million-user {
      padding: 50px 13px;
   }
   .driver-image-colum img {
      max-height: 340px;
   }
   .miliontitle {
      font-size: 54px;
   }
   .driver-content-colum .common-maintitle {
      font-size: 22px;
   }
   .driver-content-colum .common-title {
      margin-bottom: 25px;
   }
   .million-btn-widget .btn-title {
      margin-bottom: 0;
   }
   .footertop p {
      font-size: 13px;
   }
   .footertop {
      padding: 10px 25px;
   }
   .footerbar {
      padding: 45px 13px 17px;
   }
   .footermenu {
      text-align: center;
      margin-bottom: 25px;
   }
   .footermenu-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
   }
   .footermenu-list li {
      display: inline-block;
      line-height: normal;
      margin: 0 10px 5px;
      position: relative;
   }
   .footermenu-list li a {
      font-size: 15px;
      line-height: normal;
   }
   .footermenu-list li:after {
      position: absolute;
      content: "";
      background: #a3a3a3;
      width: 2px;
      height: 15px;
      right: -10px;
      top: 5px;
   }
   .footermenu-list li:last-child:after {
      display: none;
   }
   .footer-third .footermenu-list li {
      width: auto;
   }
   .footer-third {
      margin-bottom: 0 !important;
   }
   .footer-menutitle {
      position: relative;
      padding-bottom: 10px;
   }
   .footer-menutitle:before {
      position: absolute;
      content: "";
      background: #a3a3a3;
      width: 70px;
      height: 1px;
      left: 0;
      right: 0;
      margin: auto;
      bottom: 0;
   }
   .footer-menutitle:after {
      position: absolute;
      content: "";
      background: var(--orange-radial-gradient);
      width: 40px;
      height: 4px;
      left: 0;
      right: 0;
      margin: auto;
      bottom: -1px;
      border-radius: 10px;
   }
   .footer-one {
      margin-bottom: 30px;
   }
   .mobile-copyright {
      margin-top: 20px;
   }
   .footermenu-list li a:hover {
      margin-left: 0;
   }
  .custom-banner {
    padding: 70px 13px;
    background: url(../images/mobile-banner.webp) center bottom no-repeat !important;
    background-size: cover !important;
    background-position: center bottom !important;
    padding-bottom: 450px;
}
.custom-banner:before {
    background: linear-gradient(180deg, #0F172A 0%, rgba(15, 23, 42, 0.34) 45.58%, rgba(15, 23, 42, 0) 62.88%);
}
.common-spacing {
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.policy-body-content {
    padding: 25px 20px;
}
.policy-body-content p, .policy-body-content li {
    font-size: 15px;
}
.policy-body-content ul li {
    margin-bottom: 7px;
}
.policy-body-content h2 {
    font-size: 20px;
}
.policy-body-content h3 {
    font-size: 18px;
}
.policy-body-content h4 {
    font-size: 16px;
}
.policy-body-content h5 {
    font-size: 15px;
}
.policy-body-content h6 {
    font-size: 14px;
}
.driver_card {
    text-align: center;
}
.window-pc-section {
    background: url(../images/window-mobile-banner.webp) center bottom no-repeat !important;
    background-size: cover !important;
    background-position: center bottom !important;
    padding-bottom: 450px;
}
.download-banner-section .download-overview-image img {
    max-width: 350px;
}
.download-overview-image {
    margin-bottom: 30px;
}
.download-overview-section .download-overview-image img {
    max-height: 260px;
}
.confidence-number-style {
    font-size: 46px;
}
.dsp-faq .accordion-button {
    font-size: 16px;
}
.about-banner-section .download-overview-image img {
    max-width: 400px;
}
.download-overview-image.about-overview-image img {
    max-width: 400px;
}
.uninstall-cards-title h2 {
    font-size: 18px;
}
.uninstall-image {
    margin-bottom: 30px;
}
.uninstall-problem-list ul {
    gap: 12px;
    flex-direction: column;
}
.tdriver-inner {
    max-width: 210px;
}
.adrs-title {
    font-size: 18px;
}
.contactpage-banner .common-subtitle {
    font-size: 20px;
}
.address-content p {
    font-size: 15px;
}
.address-link a {
    font-size: 15px;
}
.contact-form-title h3 {
    font-size: 20px;
}
}
@media (max-width: 480px) {
   .topbar-main {
      padding: 2px 0px 3px;
   }
   .topbar-content a img {
      max-height: 10px;
   }
   .dsp-header {
      padding: 5px 3px;
   }
   .banner-heading {
      font-size: 28px;
   }
   .common-button {
      font-size: 15px;
   }
   .common-maintitle {
      font-size: 24px;
   }
   .windowpc-content .common-maintitle {
      font-size: 24px;
   }
   .windows-list ul li a {
      padding: 12px 15px;
      font-size: 14px;
      gap: 7px;
   }
   .windows-list ul li a img {
      max-height: 20px;
   }
   .counter-inner-card .common-title p {
      font-size: 15px;
   }
   .verified-box {
      padding: 20px 20px;
   }
   .testimonial-section .common-maintitle {
      font-size: 24px;
   }
   .miliontitle {
      font-size: 50px;
   }
   .footermenu-list li a {
      font-size: 14px;
   }
   .window-pc-section {
    /* background-position: calc(100% - -30px) center !important; */
            padding-bottom: 320px;

}
/* loader css  */
.loader-logo img {
    max-height: 40px;
}
.loader-spinner {
    width: 35px;
    height: 35px;
}
.dsp-logo img {
    max-height: 28px;
}
.dsp-toggler span {
    width: 22px;
    margin: 4px 0;
}
.download-banner-section .download-overview-image img {
    max-width: 290px;
}
.download-overview-section .download-overview-image img {
    max-height: 230px;
}
.download-overview-section .common-title p:last-child {
    margin-bottom: 0;
}
.confidence-content h4 {
    font-size: 16px;
}
.confidence-yellow-box {
    width: 28px;
    height: 28px;
}
.confidence-custom-column:before {
    top: 14px;
}
.confidence-number-style {
    font-size: 40px;
}
.confidence-number {
    max-width: 38px;
    flex: 0 0 38px;
}
.confidence-content {
    max-width: calc(100% - 38px);
    flex: 0 0 calc(100% - 38px);
}
.confidence-content p {
    font-size: 14px;
}
.download-choose-image img {
    max-width: 230px;
}
.download-choose-list-widget {
    padding: 16px 15px;
}
.download-cl-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.download-cl-icon img {
    max-height: 38px;
    max-width: 38px;
}
.download-cl-icon {
    max-width: 50px;
    flex: 0 0 50px;
    position: relative;
    top: 10px;
}
.download-cl-content {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
}
.download-choose-content {
    border-radius: 10px;
}
.download-choose-list-widget {
    align-items: baseline;
}
.dsp-faq .accordion-body {
    font-size: 14px;
}
.dsp-faq .accordion-button {
    font-size: 15px;
}
.about-banner-section .download-overview-image img {
    max-width: 400px;
}
.uninstall-cards-title h2 {
    font-size: 17px;
}
.uninstall-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
}
.uninstall-problem-widget {
    padding: 23px 15px;
}
.problem-title {
    font-size: 18px;
}
.uninstall-heading p {
    font-size: 14.5px;
}
.uninstall-problem-list ul li a {
    font-size: 15px;
}
.uninstall-cards-title p {
    font-size: 15px;
}
.tdriver-inner {
    max-width: 180px;
            margin-bottom: 30px;
}
.thanku-banner .common-title {
    margin-bottom: 40px;
}
img.check-mark {
    right: -15px;
    top: -15px;
    max-width: 46px;
}
.confirm-title, .thankucommon-title p {
    font-size: 15px;
    line-height: 140%;
}
.contactpage-banner .common-subtitle {
    font-size: 18px;
}
.address-content p {
    font-size: 14.5px;
}
.adrs-title {
    font-size: 17px;
}
.address-box {
    padding: 25px 15px;
    margin-bottom: 20px;
}
.contact-form-widget {
    padding: 30px 15px;
}
.contact-form .form-control {
    padding: 12px 12px;
}
.contact-faq-widget .common-maintitle {
    font-size: 24px;
}
.contact-faq-widget .common-title {
    margin-bottom: 23px;
}
.contact-faq-widget .dsp-faq .accordion-button {
    font-size: 16px;
}
.contact-faq-widget .dsp-faq .accordion-body {
    font-size: 14px;
    padding-top: 13px;
}
}
