/*Main Css */
:root {
    --primary: #2563EB;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "DM Serif Display" , sans-serif;
    --font-accent: "DM Sans" , sans-serif;
    --font-body: "DM Sans" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #000;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #626262;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1433.79px;
}

body.inner-header {
    padding-top: 100px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: normal;
    color: #1A1A1A;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 50px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 8px;
    width: 30px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: #B6B9FC;
    width: 55px;
}

/*header css*/
header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    position: relative;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
    height: 75px;
    margin-top: -10px;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--primary);
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    /* border-radius: 140px; */
    /* border: 1px solid rgba(228, 228, 228, 0.40); */
    /* background: #262626; */
    /* padding: 20px 50px; */
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 49px;
}
.menu > li > a {
    display: block;
    color: #FFF;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.header-btn {
    background: var(--primary);
    color: white !important;
    padding: 20px 28px;
    font-weight: 400 !important;
    border-radius: 51px;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: var(--primary);
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
    position: relative;
    z-index: 1;
}
.dropdown {
    position: absolute;
    background: white;
    /* padding: 1rem; */
    border-radius: 0px 0px 10px 10px;
    top: 42px;
    width: 264px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
    border: 1px solid rgb(228 228 228 / 6%);
    background: #262626;
}

@keyframes slide{
    0% {
      height: 0;
    }
    100% {
      height: auto;
    }
}
.dropdown .dropdown {
    left: 100%;
    top: 0;
}
.dropdown ul li a {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    padding: 10px 20px;
}
.dropdown li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
.chev.rotate {
    transform: rotate(180deg);
}
.chev {
    transition: .5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-size: inherit;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 125px 0 223px;
}
h1.banner-heading {
    margin-bottom: 15px;
    font-size: 107px;
    font-weight: 400;
    line-height: 104px; /* 97.196% */
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: var(--primary);
    font-weight: 500;
}
p.banner-text {
    margin-bottom: 30px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
    opacity: 0.67;
}
.menu-wrapper {
    border-radius: 140px;
    border: 1px solid rgba(228, 228, 228, 0.40);
    background: #262626;
    padding: 20px 50px;
}
.header-wrapper {
    padding-top: 18px;
    margin: 15px 10rem 0px 60px;
}
h1.banner-heading span {
    color: var(--primary);
}
.banner-content-inner ul li {
    color: #FFF;
    font-family: "DM Sans";
    font-size: 20px;
    font-weight: 400;
    line-height: 30px; /* 150% */
    margin-bottom: 8px;
    opacity: 0.67;
}
.btn-wrap .theme-btn span {
    display: flex;
    padding: 15px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 40px;
    border: 2px solid #FFF;
}
.banner-img {
    position: absolute;
    bottom: 0.5vw;
    right: 5vw;
    max-width: 40%;
}
ul.menu.btns {
    margin-right: -2vw;
}

/* --------------------section-1------------------------- */
.features {
  max-width: 900px;
  margin: auto;
  height: 560px;
  overflow-y: auto;
  padding-right: 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;        
  -ms-overflow-style: none;    
}
.features::-webkit-scrollbar {
  display: none;
}
.features {
  overscroll-behavior: contain;
}
.feature-item {
  display: flex;
  gap: 18px;
  padding: 24px 24px 31px;
  margin-bottom: 30px;
  border-radius: 18px;
  transition: all 0.6s cubic-bezier(.4,0,.2,1);
  opacity: 0.25;
  transform: translateY(30px) scale(0.98);
  filter: grayscale(1);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.feature-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: none;
}
.icon {
  min-width: 107.77px;
  height: 80.9px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f0ff, #f5f9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.5s ease;
}
.feature-item.active .icon {
  color: #fff;
}
.content h4 {
  margin-bottom: 16px;
  transition: color 0.4s ease;
  color: #1A1A1A;
  font-family: "DM Serif Display";
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  border-bottom: 1px solid #E4E4E4;
  width: fit-content;
  padding: 0 0 10px;
}
.feature-item.active h4 {
  color: #111827;
}
.content p {
  transition: color 0.4s ease;
  color: #626262;
  font-family: "DM Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.8;
}
.feature-item.active p {
  color: #4b5563;
}
.content {
    padding-left: 6vw;
}
section.sec-1 {
    padding: 117px 0;
}

/* -------------------------counter CSS------------------------  */
ul#counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.counter-wrapper .counter {
    display: flex;
    align-items: center;
    gap: 20px;
}
.counter-wrapper .counter span.count {
    font-weight: 700;
    font-size: 45px;
    color: #000;
}
ul#counter li .counter>div {
    flex-shrink: 0;
    color: #2563EB;
    font-family: "DM Serif Display";
    font-size: 50px;
    font-weight: 400;
    /* line-height: normal; */
}
ul#counter li {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #E4E4E4;
}
ul#counter li .counter span.text {
    color: #626262;
    font-family: "DM Sans";
    font-size: 17px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    opacity: 0.8;
}
.sec1-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
ul#counter {
    margin-top: 26.68px;
}
/* -------------------------counter CSS------------------------  */

/* --------------------section-1------------------------- */

/* --------------------section-2------------------------- */
section.sec-2 {
    border-radius: 60px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(37, 99, 235, 0.05);
    margin: 0 2rem;
    padding: 90px 0;
}
.process-card {
    display: flex;
    align-items: center;
    border-radius: 35px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 26px 80.047px 29px 53px;
}
.process-detail h3 {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #E4E4E4;
    width: fit-content;
    padding-bottom: 13px;
    margin-bottom: 13px;
}
.process-detail p {
    color: #626262;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; 
}
.process-card span {
    position: absolute;
    left: -5vw;
}
.process-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-left: -55px;
}
/* --------------------section-2------------------------- */

/* --------------------section-3------------------------- */
.sec3-wrapper {
    border-radius: 37px;
    background: #F59E0B;
    padding: 36.63px 36.86px;
}
section.sec-3 {
    background-repeat: no-repeat;
    background-position: center;
    padding: 132.27px 0;
}
.sec3-image {
    position: absolute;
    left: 4vw;
    bottom: 75px;
}
.sec3-wrapper .sec-heading .sub-heading {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

/* --------------------section-3------------------------- */


.testi-card {
    box-shadow: 4px 4px 64px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    padding: 14px 15px 20px 15px;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    margin-bottom: 23px;
}
section.testimonials-sec {
    border-radius: 60px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(37, 99, 235, 0.05);
    margin: 0 2rem;
}
.testi-card p {
    border-radius: 14px;
    border: 1px solid rgba(217, 217, 217, 0.18);
    background: #F4F7FE;
    padding: 15.115px 11.016px 26.885px 15.124px;
    color: #626262;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    opacity: 0.8;
    margin-bottom: 20px;
}
.testi-card-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testi-card-bottom span.name {
    color: #1A1A1A;
    font-family: "DM Serif Display";
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: capitalize;
    display: block;
}
.testi-card-bottom span.des {
    color: #626262;
    font-family: "DM Sans";
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
    display: block;
}
.sec3-image2 {
    position: absolute;
    bottom: 38px;
    right: 63px;
}
/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
    border-radius: 15px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 18px 12px;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    font-size: 24px;
    color: #666666;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #9CA3AF;
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    font-weight: 600;
    top: 0;
    background: rgb(235 232 232);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    top: 11px;
    background: #fff;
    color: var(--primary);
    right: 8px;
}
.answer p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
    opacity: 0.8;
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.accordion-list>li.active span {
    border-radius: 10px;
    background: #3F76ED;
}
.accordion-list>li.active span h3 {
    font-family: "DM Serif Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 10.25px;
    color: #fff;
}
/* Accordian */

/* packages */
.pckg {
    color: #000;
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    height: 100%;
    padding: 8.18px 4.23px;
    border-radius: 26px;
    border: 1px solid rgba(37, 99, 235, 0.37);
    background: #F4F7FE;
}
.pckg .btn-wrap a{
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}
.pckg .btn-wrap .btn-norm{
    color: var(--primary);
    transition: .5s ease;
}
.pckg .btn-wrap .btn-norm:hover{
    transform: scale(1.03);
}
.pckg .upper .title {
    margin-bottom: 12px;
    color: #2563EB;
    font-family: "DM Serif Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    margin-top: 23px;
    border-top: 1px solid #D9D9D9;
    padding-top: 15px;
    color: #626262;
    font-size: 16px;
    line-height: 28px; /* 175% */
    opacity: 0.8;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.5rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    line-height: normal;
    color: var(--primary);
    font-size: 51.596px;
    font-family: Inter;
}
.pckg .upper .price .uspto {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 28px; /* 175% */
    opacity: 0.8;
}
.inner-wrap {
    border-radius: 23.453px;
    border: 4px solid #F4F7FE;
    background: #FFF;
    padding: 25px 22px;
}
.pckg h4 {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px; /* 175% */
    text-align: center;
}
.pckg .upper b {
    color: #626262;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    opacity: 0.8;
}
.pckg .bottom ul li svg {
    flex-shrink: 0;
}
.pckg .bottom .includes {
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111827;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.pckg .bottom ul li {
   position: relative;
   display: flex;
   gap: 11.73px;
   color: #626262;
   font-family: "DM Sans";
   font-size: 16px;
   line-height: 28px; /* 175% */
   opacity: 0.8;
}
.pckg .bottom ul {
    padding-right: 10px;
    height: 164px;
    overflow-y: scroll;
    margin-top: 26px;
}
.bottom span {
   color: #626262;
   font-family: "DM Sans";
   font-size: 20px;
   font-weight: 600;
   line-height: 28px; /* 140% */
   padding: 23px 0 15px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
}
.pckg .btn-wrap {
    flex-direction: column;
    margin: 0;
}
.pckg:hover {
    background: #F59E0B;
    border: 1px solid #F59E0B;
}
.pckg:hover .btn-wrap .theme-btn.bordered {
    color: #fff;
    background: var(--primary);
}
.pckg:hover h4 {
    color: #fff;
}

.pckg:hover .upper .title, .pckg:hover .upper .price .amount {
    color: #F59E0B;
}
.pckg:hover .btn-wrap a {
    background: #F59E0B;
    border: 2px solid;
}
.pckg:hover .bottom ul li svg {
    filter: invert(1);
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    color: #1A1A1A;
    font-size: 50px;
    font-weight: 400;
    line-height: 67px; /* 134% */
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
    color: #626262;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}
.sec-heading .sub-heading {
    color: var(--primary);
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 28px; /* 175% */
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    padding: 4px 0;
    margin-bottom: 10px;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
}
.btn-wrap .theme-btn {
    background: var(--primary);
    border-radius: 175px;
    border: 2px solid var(--primary);
    transition: .5s ease;
    display: flex;
    padding: 10px 10px 10px 27px;
    justify-content: center;
    align-items: center;
    gap: 14.05px;
    color: #FFF;
    /* font-family: "DM Sans"; */
    font-size: 18px;
    font-weight: 500;
    line-height: 24.218px; /* 151.362% */
}
.btn-wrap .theme-btn.bordered {
    color: #fff;
    border: 2px solid #F59E0B;
    background: #F59E0B;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */

/* footer */
footer {
    background: #030E1A;
    padding: 1.5rem 0;
}
ul.f-menu {
    border-right: 1px solid #ffffff36;
    height: 100%;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* footer */





/* -------------------------contact us-------------------------- */
.input-field1 label {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 28px; /* 175% */
    opacity: 0.8;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    height: 47px;
    width: 100%;
    font-size: 16px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #E4E4E4;
    background: #FFF;
}
.input-field1 textarea {
    height: 283.76px;
}
.send {
    padding-top: 10px;
}
.send input[type="submit"] {
    height: 56px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    border: 0;
    padding: 8px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    border-radius: 175px;
    background: #2563EB;
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}
.details a i, .details p i {
    color: #008576;
    padding-right: 12px;
}
.form-wrapper {
    border-radius: 30px;
    border: 1px solid #E4E4E4;
    background: #F4F7FE;
    box-shadow: 0 0 40.2px 0 rgba(0, 0, 0, 0.09);
    padding: 20px;
}
.sec-heading-contact {
    border-radius: 19px;
    background: #2563EB;
    padding: 19px;
    margin-bottom: 30px;
}
.sec-heading-contact h5 {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
}
.sec-heading-contact p {
    color: #626262;
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 23px; 
    opacity: 0.8;
}
.contact-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    padding: 16px 0;
}
.getintouch-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 30px;
}
.getintouch-wrap h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 46px;
    max-width: 52%;
    margin-top: 72px;
}
.getintouch-wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    max-width: 50%;
}
.getintouch-wrap {
    padding: 48px 48px;
}
/* -------------------------contact us-------------------------- */

/* popup */
.poptable,.popupmain{position:fixed;top:50%;transform:translateY(-50%);left:0;right:0;margin:auto;box-shadow:0 0 30px -9px #0000006e;z-index:9999999;border-radius:8px;max-width:97%;max-height:90vh;display:none;background:#fff}
.popupmain{
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 530px;
    background: #fff;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    overflow: hidden;
    display: none;
    border-radius: 8px;
    max-width: 97%;
    max-height: 90vh;
    overflow-y: auto;
}
.poptable{width:1000px;overflow:hidden;overflow-y:auto}
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .mmpopup {
    /* background: url("../images/popup-bg.webp"); */
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid #fff;
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 45px 32px;
    width: 100%;
    max-width: 500px;
    border-radius: 29px;
    background: #fff;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 40px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: #659640;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    border: 2px solid var(--primary);
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    padding: 16px 42px;
    border-radius: 50px;
    background: var(--primary);
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    border-radius: 48px;
    border-top: 1px solid rgba(217, 217, 217, 0.30);
    background: #161616;
    margin: 2rem;
}
.copyright p,.copyright a {
    color: #FCFCFC;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    opacity: 0.8;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    padding-top: 0;
    color: #FCFCFC;
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 29px; /* 181.25% */
    opacity: 0.8;
    padding: 0 0 20px;
}
.footer-hdng h4 {
    margin-bottom: 12px;
    color: #FFF;
    font-size: 22px;
    line-height: normal;
    letter-spacing: 1.32px;
    border-bottom: 1px solid #d9d9d985;
    width: fit-content;
    padding: 0 0 10px;
}
.f-menu li a {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    border-top: 1px solid #d9d9d957;
    padding: 20px 0 0;
    margin-top: 80px;
}
.logo-sec {
    border-radius: 48px;
    text-align: center;
    padding: 25.62px 0;
    margin-bottom: 20px;
}
.copyright ul {
    display: inline-block;
    vertical-align: middle;
}
.copyright ul li {
    display: inline-block;
    vertical-align: middle;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: #000;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #000;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.mainBanner.term-page {
    background: #000;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 50px;
    line-height: normal;
    padding: 100px 0;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
}
/* terms */


/* -------------------------inner-pages--------------------- */

h1.banner-heading.inner-text {
    font-size: 74px;
    line-height: 82px;
}
.banner-content-inner {
    padding: 144px 0 226px;
}
.banner-img2 {
    position: absolute;
    bottom: 3vw;
    max-width: 32%;
    right: 6vw;
}
section.sec-3-aboutus {
    padding: 100px 0 50px;
}
.cta-aboutus {
    position: absolute;
    bottom: -4vw;
    right: 4vw;
}
.four-card {
    border-radius: 42px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 33px 34px;
}
.four-card h3 {
    margin-bottom: 16px;
    margin-top: 45px;
    transition: color 0.4s ease;
    color: #1A1A1A;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #E4E4E4;
    width: fit-content;
    padding: 0 0 10px;
}
.four-card p {
    color: #626262;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    opacity: 0.8;
}
ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    border-radius: 40px;
    border: 1px solid #E4E4E4;
    padding: 7px;
}
ul.overview-nav.d2 a {
    padding: 12px 20px;
    font-weight: 500;
    font-size: 16px;
    border: transparent;
    color: #333333;
    border-radius: 45px;
    background: transparent;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
}
ul.overview-nav.d2 li.active a {
    background: #3B38EB;
    color: white;
    border-color: #3B38EB !important;
    border-radius: 45px;
    background: #2563EB;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.10);
}
.feature-item-2 {
    display: flex;
    gap: 18px;
    padding: 24px 24px 61px;
    margin-bottom: 15px;
    border-radius: 18px;
    transition: all 0.6s cubic-bezier(.4, 0, .2, 1);
    transform: translateY(30px) scale(0.98);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.feature-item-2 .content {
    padding-left: 6vw;
}
.no-bg-wrapper {
    border-radius: 0 !important;
    border: 0 !important;
    background: none !important;
}
.bg-wrapper {
    border-radius: 60px;
    border: 1px solid rgba(37, 99, 235, 0.10);
    background: rgba(37, 99, 235, 0.05);
    margin: 0 2rem;
}
.bgwrapper-white {
    border-radius: 43px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    padding: 14px;
}
.sec-heading ul li {
    border-radius: 40px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    margin-bottom: 10px;
}
.sec-heading ul {
    /* display: flex; */
    /* align-items: center; */
}
.bgwrapper-white .sec-heading {
    margin-bottom: 0;
}
.bottom strong {
    color: #626262;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px; /* 140% */
}
.bottom p {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px; /* 175% */
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0 16px;
}
.bottom.m-btm {
    margin-top: 32px;
}

ul.overview-nav2 {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 2rem;
    margin-bottom: 15px;
    flex-wrap: wrap;
    border-radius: 120px;
    border: 1px solid #E4E4E4;
    background: #F5F5F5;
    padding: 15px;
}
ul.overview-nav2 a {
    padding: 13px 25px;
    border: 1px solid transparent;
    border-radius: 80px;
    background: transparent;
    text-align: left;
    width: 100%;
    color: #777;
    font-family: "DM Serif Display";
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}
ul.overview-nav2 li.active a {
    background: var(--primary);
    color: #fff;
    border-color: transparent !important;
}
span.feature-included {
    color: var(--Color, #1A1A1A);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    opacity: 0.8;
    padding-bottom: 0px;
}
.aboutus-list li {
    color: var(--teXTY-ADFS, #626262);
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    border-bottom: 1px solid #0000001c;
    padding: 11px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.easyprocess {
    color: #1A1A1A;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: 'Inter';
    padding-bottom: 8px;
}
.box-itswork.port-content p {
    color: #626262;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.8;
}
.howitwork-wrap {
    color: #1A1A1A;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-family: 'Inter';
    padding-top: 28px;
    padding-bottom: 10px;
}
.trademark-monitoring-wrap {
    border-radius: 30px;
    border: 1px solid #E4E4E4;
    padding: 20px 30px;
}
.protect-wrapper {
    padding: 18px;
    height: 100%;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: rgba(45, 170, 90, 0.05);
}
.protect-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 80px;
    background: #2DAA5A;
    display: flex;
    padding: 13px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.protect-list {
    margin-top: 32px;
}
.protect-list li {
    border-radius: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.protect-wrapper.bg-red {
    background: rgba(224, 0, 0, 0.05);
}
.protect-card h3.bg-red {
    background: #E00000;
}


/* Comparision  */
.form_wrap{/* box-shadow:0 5px 15px rgb(0 0 0 / 15%); */padding:1.5rem;border-radius:10px;/* background:#f8faff; */}
.form_wrap b,.form_wrap strong{font-weight:bolder!important}
.bgform h3{display:flex;justify-content:space-between}.bgform h3 span{font-size:16px}
.bgform p{margin-bottom:20px;color:#192e5a;font-family:var(--font-heading);font-size:26px;font-weight:600;line-height:normal}
.form-head{background: #A7A7A7;color:#fff;padding: 1rem;border-radius:10px;margin: 0 0 30px;text-align:center;display:block;height:auto;width: 100%;border-radius: 20px;background: var(--primary);}
.form-head .form-heading{white-space:nowrap;font-weight:600;margin-bottom:15px;justify-content:center;font-size: 19.624px;font-family: 'Poppins';}
.form-head br{display:none}
.form-head span{display:flex;align-items:center;justify-content:center;margin:1rem 0;font-size:14px;font-weight:500}
.form-head .form-price{
  text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  margin:1rem 0;border-radius: 9.812px;background: #FFF;color: #1A1A1A;text-align: center;font-family: Poppins;font-size: 39.249px;font-style: normal;font-weight: 700;line-height: 29.436px; /* 75% */padding: 9.812px;}
.form_wrap .form-control{border:1px solid #ddd;margin-top:10px;min-height:45px;border-radius:4px}
ul.process-packs>li{width:33%;background:#e9f4ff;margin:1%;padding:20px 20px 100px;border:1px solid #0275df33;border-radius:5px;position:relative}
ul.process-packs{display:flex}ul.process-packs>li ul li{font-size:14px;color:#707070;line-height:1.4em;margin:2px 0;border-bottom:1px solid var(--primary) 17;padding:1px 0 4px}
ul.process-packs>li ul li:before{font-family:"Font Awesome 5 Pro";font-weight:900;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;
    font-variant:normal;text-rendering:auto;line-height:1;content:"\f00c";display:inline-block;color:var(--primary);font-size:12px;margin-right:8px}
ul.process-packs>li>a{width:90%;text-align:center;padding:15px;font-size:16px;font-weight:700;position:absolute;bottom:20px;left:0;right:0;margin:0 auto}
.head-sec{text-align:center;margin-bottom:35px}.add_owner,.btn-normal{background: var(--white);margin:10px 0;color: var(--primary);font-size:14px}
.head-sec h3{font-size:23px;font-weight:700}.head-sec h4{font-size:55px;margin:15px 0 17px;color:#0275df}
small.fonts-inter{font-size:16px;line-height:24px}
table.pricing{margin:0 0 30px}table.pricing tr td:first-child{width:34.3%;font-size:16px;line-height:28px;text-align:left;color:#444}
.bgform h3{font-size:24px;margin-bottom:16px;line-height:28px; color: #fff;}
.btn-normal{padding:16px 30px;display:inline-block;border-radius:100px;white-space:nowrap;display:flex;justify-content:center;gap:10px;font-weight:600}
.btn-normal:hover{transform:scale(1.03);color:#000}.add_owner{padding:14px 30px;display:inline-block;border-radius:5px;font-weight:inherit}
.trash_this{display:flex;justify-content:end;margin-top:30px}
.trash_this i{background:#e53935;display:flex;width:40px;height:40px;align-items:center;justify-content:center;border-radius:5px;cursor:pointer}
.tp-check-pricing{display:inline-block;width:21px;height:21px;background: #2DAA5A url("../images/check-pricing.png") no-repeat center;border-radius:100%}
.tp-check-pricing.orange{background-color: #2DAA5A;}.tp-check-pricing.blue{background-color: #2DAA5A;}
table.pricing tr{border-bottom:1px solid #e6e4e4}
table.pricing tr td{padding:10px 15px;text-align:center;vertical-align:middle;border-radius: 20px 20px 0 0;}
.form_wrap {
    border: 1px solid #00000012;
    padding: 20px;
    border-radius: 20px;
}
h3.main-heading {
    color: #000;
}
.btnnormal-themebtn {
    padding: 16px 50px;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    width: max-content;
    color: #FFF;
    font-size: 15.699px;
    font-weight: 600;
    line-height: 23.763px;
    border-radius: 14.718px;
}
.form-head.blue {
    background: #15294B;
}
table.pricing tr td:nth-child(2) {
    border-radius: 0;
    background: #F3F3F3;
}
table.pricing tr td:nth-child(4) {
    border-radius: 0;
    background: #F3F3F3;
}
/* Comparision */


/* Trademark Search */
.diff .hdng,.search-data table tr td:first-child,a.srch-btn{font-weight:600}
.diff ul,a.srch-btn{font-size: 16px;display:flex}
.contact-card a,.diff .hdng{font-family:var(--font-heading)}
.search-data table,.search-div{width: 95%;}
.search-wrapper{display:flex;align-items:center;gap:0;justify-content:space-between;transition:.5s;padding: 12px 12px 12px 24px;border-radius: 15px;border: 1px solid #D9D9D9;background: #FFF;}
.input-wrapper span i{font-size:26px}.search-wrapper .input-wrapper input{width:100%;background:0 0;color: #626262;border-radius:20px;border:none;font-size: 14px;}
.search-wrapper:has(input:focus){border-color:var(--primary)}
.input-wrapper{width:100%;display:flex;align-items:center;gap:10px}
a.srch-btn{
    color:#fff;
    text-transform:capitalize;
    width: 28%;
    text-align: center;
    border-radius: 11.506px;
    background: var(--primary);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter';
    display: inline-flex;
    height: 49px;
    padding: 9.205px 18.409px;
    justify-content: center;
    align-items: center;
    gap: 5.408px;
    flex-shrink: 0;
    }
.search-data table thead tr th{height:48px;vertical-align:middle;font-weight:700}
.search-data table tr td:first-child,.search-data table tr th:first-child{padding-left:2rem}
.table td,.table th{border-top:0}.search-data table tbody tr td{padding-right:2rem;height:70px;vertical-align:middle;white-space:nowrap;text-align:left}
.search-data table tbody tr:not(:last-child){border-bottom:.5px solid #ebebeb}
.search-data{margin-top:10px;width:100%;overflow-x:auto}
.diff{border:1px solid #e5e7eb;padding:50px;border-radius:14px;height:100%}
.diff .hdng{font-size:36px;margin-bottom:1.5rem;letter-spacing:-1px}
.diff ul{list-style:disc;flex-direction:column;line-height:34px;color:#0b0b0b;padding-left:20px;font-weight:500}
.diff .hdng.red{color:red}.contact-form input,.contact-form textarea{border:1px solid #d8d8d8;width:100%;padding:1rem;border-radius:5px}

.btn-wrap .theme-btn.bordered2 {
    border-radius: 175px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.09);
}



















@media (max-width: 1440px) {
    .banner-content {
        padding: 110px 0 70px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 70px;
        line-height: 85px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading h2 {
        line-height: 55px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
.banner-img {
    bottom: 0;
    max-width: 45%;
}
.header-wrapper {
    padding-top: 0;
    margin-top: 0;
}
.banner-content ul li {
    font-size: 16px;
    margin-bottom: 0;
}
section.sec-1 {
    padding: 50px 0;
}
ul#counter li .counter>div {
    font-size: 30px;
}
ul#counter li .counter span.text {
    font-size: 16px;
    line-height: 14px;
    padding-top: 10px;
}
ul#counter {
    margin-top: 0;
}
.features {
    overscroll-behavior: auto;
}
.features {
    height: auto;
}
.content {
    padding-left: 0;
}
.feature-item {
    padding: 12px;
    margin-bottom: 0px;
    background-image: none !important;
}
.goto {
    margin-bottom: 2rem;
}
section.sec-2 {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
    padding: 50px 0;
}
.process-wrapper {
    gap: 28px;
    margin-left: -20px;
}
.process-card span {
    max-width: 18%;
}
.process-detail p {
    font-size: 16px;
    line-height: 26px;
}
section.sec-3 {
    padding: 50px 0;
}

section.testimonials-sec {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.testi-card p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}
.accordion-list li h3 {
    max-width: 90%;
}
.answer p {
    font-size: 16px;
    line-height: 24px;
}
.accordion-list li {
    margin-bottom: 14px;
}
footer {
    border-radius: 0;
    border-top: 0;
    margin: 0;
}
.logo-sec {
    border-radius: 28px;
    padding: 10px;
    margin-bottom: 20.97px;
}
.footer-sec p {
    font-size: 14px;
    line-height: 20px;
}
.f-menu li a {
    font-size: 13px;
}
.footer-hdng h4 {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 20px 0 4px;
}
.copyright {
    text-align: center;
}
.copyright-sec {
    padding: 10px 0 0;
    margin-top: 20px;
}
h1.banner-heading.inner-text {
    font-size: 64px;
    line-height: 84px;
}
.banner-content-inner {
    padding: 100px 0 100px;
}
.banner-img2 {
    bottom: 4px;
    max-width: 39%;
    right: 3vw;
}
.four-card h3 {
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 20px;
}
.four-card p {
    font-size: 16px;
    line-height: 26px;
}
.four-card {
    border-radius: 32px;
    padding: 22px;
}
section.sec-3-aboutus {
    padding: 50px 0 50px;
}
ul.overview-nav.d2 a {
    padding: 16px 22px;
    font-size: 16px;
}
ul.overview-nav.d2 {
    gap: 16px;
    margin-bottom: 60px;
    border-radius: 0;
    border: 0;
    padding: 0px;
}
.contact-detail {
    padding: 16px 0;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.getintouch-sec {
    margin-top: 0;
}
.getintouch-wrap {
    padding: 90px 54px;
}
.getintouch-wrap h2 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 72px;
}
.getintouch-wrap p {
    font-size: 12px;
    line-height: 18px;
}
.form-wrapper {
    border-radius: 22px;
    padding: 12px;
    margin-top: 2rem;
}
.sec-heading-contact h5 {
    font-size: 24px;
}
.sec-heading-contact p {
    font-size: 16px;
    line-height: 22px;
}
.input-field1 textarea {
    height: 160.76px;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 42px;
    padding: 40px 0;
}
.terms p {
    font-size: 16px;
    line-height: 24px;
}
.bg-wrapper {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.feature-item-2 {
    padding: 16px 16px 16px;
    background-image: none !important;
    margin-bottom: 0;
}
.feature-item-2 .content {
    padding-left: 0;
}
.pckg .btn-wrap a {
    font-size: 15px;
    line-height: 22px;
}
.btn-wrap .theme-btn {
    justify-content: center;
}
.search-wrapper {
    padding: 10px;
}
a.srch-btn {
    width: 45%;
    font-size: 12px;
    padding: 9.205px 4.409px;
}
.search-data table tr td:first-child, .search-data table tr th:first-child {
    padding-left: 1rem;
}
.search-data table tbody tr td {
    padding-right: 1rem;
    height: 54px;
    font-size: 13px;
}
.bottom strong {
    font-size: 16px;
    line-height: 22px;
}
.bottom p {
    font-size: 16px;
    line-height: 24px;
}
.office-action-sec .sec-heading {
    margin-top: 2rem;
}
.trademark-monitoring-wrap {
    border-radius: 16px;
    padding: 18px 18px;
    margin-bottom: 2rem;
}
ul.overview-nav2 {
    gap: 1rem;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px;
}
ul.overview-nav2 a {
    padding: 15px 17px;
    border-radius: 70px;
    font-size: 16px;
}
.aboutus-list li {
    font-size: 14px;
    line-height: 18px;
}
.easyprocess {
    font-size: 18px;
}
.box-itswork.port-content p {
    font-size: 16px;
    line-height: 24px;
}
.howitwork-wrap {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 4px;
}
ul.f-menu {
    border-right: 0;
}
.mainBanner {
    /* background-position: top; */
    background-image: none !important;
    background: #000;
}
.sec3-image {
    position: relative;
    left: 0;
    bottom: 0;
}
.testi-card {
    padding: 18px;
    margin-bottom: 16px;
}
.sec3-image2 {
    position: relative;
    bottom: 0;
    right: 0;
}
.cta-aboutus {
    position: relative;
    bottom: 0;
    right: 0;
}
.menu > li > a {
    font-size: 14px;
}
header {
    padding: 1rem 0;
}









}

@media (max-width: 1200px) {
    header{
        padding: 1rem 0;
    }
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        background: #f0f8ff80;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        padding: 1rem;
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #000;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    .menu-wrapper {
        border-radius: 0;
        border: 0;
        background: none;
        padding: 0;
        width: 100%;
    }
    ul.menu.btns li {
        border-bottom: 0;
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #fff;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }
    .banner-content {
        padding: 100px 0 70px;
    }
    .menu > li > a {
        font-size: 14px;
    }
.mmpopup .centercont h3 span {
    font-size: 30px;
}
















    
}

@media (max-width : 1199px) {
        .banner-content {
            padding: 50px 0 20px;
        }
        span.sub-heading {
            margin-bottom: 1rem;
            font-size: 16px;
        }
        h1.banner-heading {
            font-size: 70px;
            line-height: 85px;
            margin-bottom: 1rem;
        }
        p.banner-text {
            max-width: 100%;
            font-size: 16px;
            line-height: 28px;
        }
        .sec-heading h2 {
            line-height: 55px;
        }
        .sec-heading .sub-heading {
            margin-bottom: .5rem;
        }
        .copyright {
            flex-direction: column;
            gap: 12px;
        }
    .banner-img {
        bottom: 0;
        max-width: 45%;
    }
    .header-wrapper {
        padding-top: 0;
        margin-top: 0;
    }
    .banner-content ul li {
        font-size: 16px;
        margin-bottom: 0;
    }
    section.sec-1 {
        padding: 50px 0;
    }
    ul#counter li .counter>div {
        font-size: 30px;
    }
    ul#counter li .counter span.text {
        font-size: 16px;
        line-height: 14px;
        padding-top: 10px;
    }
    ul#counter {
        margin-top: 0;
    }
    .features {
        overscroll-behavior: auto;
    }
    .features {
        height: auto;
    }
    .content {
        padding-left: 0;
    }
    .feature-item {
        padding: 12px;
        margin-bottom: 0px;
        background-image: none !important;
    }
    .content h4 {
        font-size: 22px;
    }
    .content p {
        font-size: 16px;
        line-height: 28px;
    }
    .goto {
        margin-bottom: 2rem;
    }
    section.sec-2 {
        border-radius: 0;
        border: 0;
        background: rgba(37, 99, 235, 0.05);
        margin: 0;
        padding: 50px 0;
    }
    .process-wrapper {
        gap: 28px;
        margin-left: -20px;
    }
    .process-card span {
        max-width: 18%;
    }
    .process-detail p {
        font-size: 16px;
        line-height: 26px;
    }
    section.sec-3 {
        padding: 50px 0;
    }
    .pckg .upper .title {
        margin-bottom: 4px;
        font-size: 22px;
    }
    .pckg .upper b {
        font-size: 16px;
        line-height: 22px;
    }
    .inner-wrap {
        padding: 16px 14px;
    }
    .pckg .upper .price .uspto {
        font-size: 16px;
    }
    .bottom span {
        font-size: 16px;
        line-height: 22px;
        padding: 18px 0 15px;
    }
    .pckg .bottom ul li:not(.last) {
        margin-bottom: 8px;
    }
    .pckg .upper .price .amount {
        font-size: 42.596px;
    }
    .pckg .bottom ul li {
        font-size: 16px;
        line-height: 22px;
    }
    section.testimonials-sec {
        border-radius: 0;
        border: 0;
        background: rgba(37, 99, 235, 0.05);
        margin: 0;
    }
    .testi-card p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    .accordion-list li h3 {
        max-width: 90%;
    }
    .answer p {
        font-size: 16px;
        line-height: 24px;
    }
    .accordion-list li {
        margin-bottom: 14px;
    }
    footer {
        border-radius: 0;
        border-top: 0;
        margin: 0;
    }
    .logo-sec {
        border-radius: 28px;
        padding: 10px;
        margin-bottom: 20.97px;
    }
    .footer-sec p {
        font-size: 14px;
        line-height: 20px;
    }
    .f-menu li a {
        font-size: 13px;
    }
    .footer-hdng h4 {
        margin-bottom: 5px;
        font-size: 16px;
        padding: 20px 0 4px;
    }
    .copyright {
        text-align: center;
    }
    .copyright-sec {
        padding: 10px 0 0;
        margin-top: 20px;
    }
    h1.banner-heading.inner-text {
        font-size: 64px;
        line-height: 84px;
    }
    .banner-content-inner {
        padding: 50px 0 80px;
    }
    .banner-img2 {
        bottom: 4px;
        max-width: 39%;
        right: 3vw;
    }
    .four-card h3 {
        margin-bottom: 16px;
        margin-top: 16px;
        font-size: 20px;
    }
    .four-card p {
        font-size: 16px;
        line-height: 26px;
    }
    .four-card {
        border-radius: 32px;
        padding: 22px;
    }
    section.sec-3-aboutus {
        padding: 50px 0 50px;
    }
    ul.overview-nav.d2 a {
        padding: 12px 18px;
        font-size: 16px;
    }
    ul.overview-nav.d2 {
        gap: 12px;
        margin-bottom: 28px;
        border-radius: 0;
        border: 0;
        padding: 0px;
    }
    .contact-detail {
        padding: 16px 0;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .getintouch-sec {
        margin-top: 0;
    }
    .getintouch-wrap {
        padding: 70px 42px;
    }
    .getintouch-wrap h2 {
        font-size: 18px;
        line-height: 20px;
        margin-top: 72px;
    }
    .getintouch-wrap p {
        font-size: 12px;
        line-height: 18px;
    }
    .form-wrapper {
        border-radius: 22px;
        padding: 12px;
        margin-top: 2rem;
    }
    .sec-heading-contact h5 {
        font-size: 24px;
    }
    .sec-heading-contact p {
        font-size: 16px;
        line-height: 22px;
    }
    .input-field1 textarea {
        height: 160.76px;
    }
    .mainBanner.term-page h1.banner-heading {
        font-size: 42px;
        padding: 40px 0;
    }
    .terms p {
        font-size: 16px;
        line-height: 24px;
    }
    .bg-wrapper {
        border-radius: 0;
        border: 0;
        background: rgba(37, 99, 235, 0.05);
        margin: 0;
    }
    .feature-item-2 {
        padding: 16px 16px 16px;
        background-image: none !important;
        margin-bottom: 0;
    }
    .feature-item-2 .content {
        padding-left: 0;
    }
    .pckg .btn-wrap a {
        font-size: 15px;
        line-height: 22px;
    }
    .btn-wrap .theme-btn {
        justify-content: center;
    }
    .search-wrapper {
        padding: 10px;
    }
    a.srch-btn {
        width: 45%;
        font-size: 12px;
        padding: 9.205px 4.409px;
    }
    .search-data table tr td:first-child, .search-data table tr th:first-child {
        padding-left: 1rem;
    }
    .search-data table tbody tr td {
        padding-right: 1rem;
        height: 54px;
        font-size: 13px;
    }
    .bottom strong {
        font-size: 16px;
        line-height: 22px;
    }
    .bottom p {
        font-size: 16px;
        line-height: 24px;
    }
    .office-action-sec .sec-heading {
        margin-top: 2rem;
    }
    .trademark-monitoring-wrap {
        border-radius: 16px;
        padding: 18px 18px;
        margin-bottom: 2rem;
    }
    ul.overview-nav2 {
        gap: 1rem;
        margin-bottom: 20px;
        border-radius: 20px;
        padding: 10px;
    }
    ul.overview-nav2 a {
        padding: 15px 17px;
        border-radius: 70px;
        font-size: 16px;
    }
    .aboutus-list li {
        font-size: 14px;
        line-height: 18px;
    }
    .easyprocess {
        font-size: 18px;
    }
    .box-itswork.port-content p {
        font-size: 16px;
        line-height: 24px;
    }
    .howitwork-wrap {
        font-size: 16px;
        padding-top: 10px;
        padding-bottom: 4px;
    }
    ul.f-menu {
        border-right: 0;
    }
    .mainBanner {
        background-position: center;
        background-image: none !important;
        background: #000;
    }
    .sec3-image {
        position: relative;
        left: 0;
        bottom: 0;
    }
    .testi-card {
        padding: 18px;
        margin-bottom: 16px;
    }
    .sec3-image2 {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .cta-aboutus {
        position: relative;
        bottom: 0;
        right: 0;
    }

    
}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 16px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px) {
    .banner-content {
        padding: 50px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 16px;
    }
    h1.banner-heading {
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
.banner-img {
    bottom: 0;
    max-width: 35%;
}
.header-wrapper {
    padding-top: 0;
    margin-top: 0;
}
.banner-content ul li {
    font-size: 16px;
    margin-bottom: 0;
}
section.sec-1 {
    padding: 50px 0;
}
ul#counter li .counter>div {
    font-size: 30px;
}
ul#counter li .counter span.text {
    font-size: 16px;
    line-height: 14px;
    padding-top: 10px;
}
ul#counter {
    margin-top: 0;
}
.features {
    overscroll-behavior: auto;
}
.features {
    height: auto;
}
.content {
    padding-left: 0;
}
.feature-item {
    padding: 12px;
    margin-bottom: 0px;
    background-image: none !important;
}
.content h4 {
    font-size: 22px;
}
.content p {
    font-size: 16px;
    line-height: 28px;
}
.goto {
    margin-bottom: 2rem;
}
section.sec-2 {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
    padding: 50px 0;
}
.process-wrapper {
    gap: 12px;
    margin-left: -20px;
}
.process-card {
    padding: 16px 18.047px 14px 42px;
}
.process-card span {
    max-width: 18%;
}
.process-detail p {
    font-size: 14px;
    line-height: 20px;
}
section.sec-3 {
    padding: 50px 0;
}
.sec3-wrapper {
    padding: 23px;
}
.pckg .upper .title {
    margin-bottom: 4px;
    font-size: 22px;
}
.pckg .upper b {
    font-size: 16px;
    line-height: 22px;
}
.inner-wrap {
    padding: 16px 14px;
}
.pckg .upper .price .uspto {
    font-size: 16px;
}
.bottom span {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 0 15px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 8px;
}
.pckg .upper .price .amount {
    font-size: 42.596px;
}
.pckg .bottom ul li {
    font-size: 14px;
    line-height: 20px;
}
section.testimonials-sec {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.testi-card p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}
.accordion-list li h3 {
    max-width: 90%;
}
.answer p {
    font-size: 16px;
    line-height: 24px;
}
.accordion-list li {
    margin-bottom: 14px;
}
footer {
    border-radius: 0;
    border-top: 0;
    margin: 0;
}
.logo-sec {
    border-radius: 28px;
    padding: 10px;
    margin-bottom: 20.97px;
}
.footer-sec p {
    font-size: 14px;
    line-height: 20px;
}
.f-menu li a {
    font-size: 13px;
}
.footer-hdng h4 {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 20px 0 4px;
}
.copyright {
    text-align: center;
}
.copyright-sec {
    padding: 10px 0 0;
    margin-top: 20px;
}
h1.banner-heading.inner-text {
    font-size: 40px;
    line-height: 52px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
.banner-img2 {
    bottom: 4px;
    max-width: 43%;
    right: 3vw;
}
.four-card h3 {
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 20px;
}
.four-card p {
    font-size: 16px;
    line-height: 26px;
}
.four-card {
    border-radius: 32px;
    padding: 22px;
}
section {
    padding: 2rem 0;
    position: relative;
}
section.sec-3-aboutus {
    padding: 50px 0 50px;
}
ul.overview-nav.d2 a {
    padding: 12px 18px;
    font-size: 16px;
}
ul.overview-nav.d2 {
    gap: 12px;
    margin-bottom: 28px;
    border-radius: 0;
    border: 0;
    padding: 0px;
}
.contact-detail {
    padding: 16px 0;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.getintouch-sec {
    margin-top: 0;
}
.getintouch-wrap {
    padding: 43px 30px;
}
.getintouch-wrap h2 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 72px;
}
.getintouch-wrap p {
    font-size: 12px;
    line-height: 18px;
}
.form-wrapper {
    border-radius: 22px;
    padding: 12px;
    margin-top: 2rem;
}
.sec-heading-contact h5 {
    font-size: 24px;
}
.sec-heading-contact p {
    font-size: 16px;
    line-height: 22px;
}
.input-field1 textarea {
    height: 160.76px;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 28px;
    padding: 40px 0;
}
.terms p {
    font-size: 16px;
    line-height: 24px;
}
.bg-wrapper {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.feature-item-2 {
    padding: 16px 16px 16px;
    background-image: none !important;
    margin-bottom: 0;
}
.feature-item-2 .content {
    padding-left: 0;
}
.pckg .btn-wrap a {
    font-size: 15px;
    line-height: 22px;
}
.btn-wrap .theme-btn {
    justify-content: center;
}
.search-wrapper {
    padding: 10px;
}
a.srch-btn {
    width: 45%;
    font-size: 12px;
    padding: 9.205px 4.409px;
}
.search-data table tr td:first-child, .search-data table tr th:first-child {
    padding-left: 1rem;
}
.search-data table tbody tr td {
    padding-right: 1rem;
    height: 54px;
    font-size: 13px;
}
.bottom strong {
    font-size: 16px;
    line-height: 22px;
}
.bottom p {
    font-size: 16px;
    line-height: 24px;
}
.office-action-sec .sec-heading {
    margin-top: 2rem;
}
.trademark-monitoring-wrap {
    border-radius: 16px;
    padding: 18px 18px;
    margin-bottom: 2rem;
}
ul.overview-nav2 {
    gap: 1rem;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px;
}
ul.overview-nav2 a {
    padding: 10px 10px;
    border-radius: 70px;
    font-size: 14px;
}
.aboutus-list li {
    font-size: 14px;
    line-height: 18px;
}
.easyprocess {
    font-size: 18px;
}
.box-itswork.port-content p {
    font-size: 16px;
    line-height: 24px;
}
.howitwork-wrap {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 4px;
}
ul.f-menu {
    border-right: 0;
}
.mainBanner {
    background-position: center;
}
.sec3-image {
    position: relative;
    left: 0;
    bottom: 0;
}
.testi-card {
    padding: 10px;
    margin-bottom: 10px;
}
.sec3-image2 {
    position: relative;
    bottom: 0;
    right: 0;
}
.cta-aboutus {
    position: relative;
    bottom: 0;
    right: 0;
}
.register-heads {
    margin-top: 35px;
}
.form-head {
    margin: 0;
}
table.pricing tr td:first-child {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 7px;
    width: 44.3%;
}
.image1 {
    display: none;
}
.banner-content-inner ul li {
    font-size: 14px;
    line-height: 22px;
}
.sec-heading ul li {
    font-size: 14px;
}
ul.featuredList li {
    font-size: 14px;
    width: 47%;
}










}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content {
        padding: 50px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
.banner-img {
    bottom: 0;
    max-width: 45%;
}
.header-wrapper {
    padding-top: 0;
    margin-top: 0;
}
.banner-content ul li {
    font-size: 16px;
    margin-bottom: 0;
}
section.sec-1 {
    padding: 50px 0;
}
.goto img {
    display: none;
}
ul#counter li .counter>div {
    font-size: 30px;
}
ul#counter li .counter span.text {
    font-size: 14px;
    line-height: 14px;
    padding-top: 10px;
}
ul#counter {
    margin-top: 0;
}
.features {
    overscroll-behavior: auto;
}
.features {
    height: auto;
}
.content {
    padding-left: 0;
}
.feature-item {
    padding: 12px;
    margin-bottom: 0px;
    background-image: none !important;
}
.content h4 {
    font-size: 22px;
}
.content p {
    font-size: 16px;
    line-height: 28px;
}
.goto {
    margin-bottom: 2rem;
}
section.sec-2 {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
    padding: 50px 0;
}
.sec2-image {
    display: none;
}
.process-wrapper {
    gap: 20px;
    margin-left: 0;
    flex-direction: row;
}
.process-card {
    padding: 17px;
    flex-direction: column;
    align-items: flex-start;
}
.process-card span {
    position: relative;
    left: 0;
    margin-bottom: 14px;
    max-width: 28%;
}
.process-detail p {
    font-size: 14px;
    line-height: 22px;
}
section.sec-3 {
    padding: 50px 0;
}
.sec3-image {
    display: none;
}
.sec3-wrapper {
    padding: 23px;
}
.pckg .upper .title {
    margin-bottom: 4px;
    font-size: 22px;
}
.pckg .upper b {
    font-size: 14px;
    line-height: 18px;
}
.inner-wrap {
    padding: 16px 14px;
}
.pckg .upper .price .uspto {
    font-size: 14px;
}
.bottom span {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 0 15px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 8px;
}
.pckg .upper .price .amount {
    font-size: 42.596px;
}
.pckg .bottom ul li {
    font-size: 14px;
    line-height: 20px;
}
section.testimonials-sec {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.testi-card p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}
.accordion-list li h3 {
    max-width: 90%;
}
.answer p {
    font-size: 14px;
    line-height: 22px;
}
.accordion-list li {
    margin-bottom: 14px;
}
.sec3-image2 {
    display: none;
}
footer {
    border-radius: 0;
    border-top: 0;
    margin: 0;
}
.logo-sec {
    border-radius: 28px;
    padding: 10px;
    margin-bottom: 20.97px;
}
.footer-sec p {
    font-size: 14px;
    line-height: 22px;
}
.f-menu li a {
    font-size: 14px;
}
.footer-hdng h4 {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 20px 0 4px;
}
.copyright {
    text-align: center;
}
.copyright-sec {
    padding: 10px 0 0;
    margin-top: 20px;
}
h1.banner-heading.inner-text {
    font-size: 28px;
    line-height: 36px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
.banner-img2 {
    bottom: 4px;
    max-width: 43%;
    right: 3vw;
}
.four-card h3 {
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 20px;
}
.four-card p {
    font-size: 16px;
    line-height: 26px;
}
.four-card {
    border-radius: 32px;
    padding: 22px;
}
section {
    padding: 2rem 0;
    position: relative;
}
section.sec-3-aboutus {
    padding: 50px 0 50px;
}
.cta-aboutus {
    display: none;
}
ul.overview-nav.d2 a {
    padding: 12px 18px;
    font-size: 16px;
}
ul.overview-nav.d2 {
    gap: 12px;
    margin-bottom: 28px;
    border-radius: 0;
    border: 0;
    padding: 0px;
}
.contact-detail {
    padding: 16px 0;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
.getintouch-sec {
    margin-top: 0;
}
.getintouch-wrap {
    padding: 20px 15px;
}
.getintouch-wrap h2 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 72px;
}
.getintouch-wrap p {
    font-size: 12px;
    line-height: 18px;
}
.form-wrapper {
    border-radius: 22px;
    padding: 12px;
    margin-top: 2rem;
}
.sec-heading-contact h5 {
    font-size: 24px;
}
.sec-heading-contact p {
    font-size: 14px;
    line-height: 19px;
}
.input-field1 textarea {
    height: 160.76px;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 28px;
    padding: 40px 0;
}
.terms p {
    font-size: 14px;
    line-height: 22px;
}
.bg-wrapper {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.image2 {
    display: none;
}
.sec1-wrapper-image {
    display: none;
}
.feature-item-2 {
    padding: 24px 24px 26px;
}
.feature-item-2 .content {
    padding-left: 17vw;
}
.pckg .btn-wrap a {
    font-size: 15px;
    line-height: 22px;
}
.btn-wrap .theme-btn {
    padding: 10px 10px 10px 10px;
}
.search-wrapper {
    padding: 10px;
}
a.srch-btn {
    width: 45%;
    font-size: 12px;
    padding: 9.205px 4.409px;
}
.search-data table tr td:first-child, .search-data table tr th:first-child {
    padding-left: 1rem;
}
.search-data table tbody tr td {
    padding-right: 1rem;
    height: 54px;
    font-size: 13px;
}
.bottom strong {
    font-size: 16px;
    line-height: 22px;
}
.bottom p {
    font-size: 14px;
    line-height: 22px;
}
.office-action-sec .sec-heading {
    margin-top: 2rem;
}
.trademark-monitoring-wrap {
    border-radius: 16px;
    padding: 18px 18px;
    margin-bottom: 2rem;
}
ul.overview-nav2 {
    gap: 1rem;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px;
}
ul.overview-nav2 a {
    padding: 10px 10px;
    border-radius: 70px;
    font-size: 14px;
}
.aboutus-list li {
    font-size: 14px;
    line-height: 22px;
}
.easyprocess {
    font-size: 18px;
}
.box-itswork.port-content p {
    font-size: 14px;
    line-height: 22px;
}
.howitwork-wrap {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 4px;
}
ul.f-menu {
    border-right: 0;
}
.mainBanner {
    background-position: center;
}
.register-heads {
    margin-top: 35px;
}
.form-head {
    margin: 0;
}
table.pricing tr td:first-child {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 7px;
    width: 44.3%;
}
.image1 {
    display: none;
}
.banner-content-inner ul li {
    font-size: 14px;
    line-height: 22px;
}
.sec-heading ul li {
    font-size: 14px;
}
ul.featuredList li {
    font-size: 14px;
    width: 47%;
}










}

@media only screen and (min-width : 280px) and (max-width : 767px) {
    .mainBanner {
        background-position: center;
    }
    ul.f-menu {
        border-right: 0;
    }
    .banner-content {
        padding: 50px 0 20px;
    }
    span.sub-heading {
        margin-bottom: 1rem;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 1rem;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 25px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }

.header-wrapper {
    padding-top: 0;
    margin-top: 0;
}
.banner-content ul li {
    font-size: 14px;
    margin-bottom: 0;
}
section.sec-1 {
    padding: 50px 0;
}
.goto img {
    display: none;
}
ul#counter li .counter>div {
    font-size: 26px;
}
ul#counter li .counter span.text {
    font-size: 14px;
    line-height: 14px;
    padding-top: 10px;
}
ul#counter {
    margin-top: 0;
}
.features {
    overscroll-behavior: auto;
}
.features {
    height: auto;
}
.content {
    padding-left: 0;
}
.feature-item {
    padding: 12px;
    margin-bottom: 0px;
    background-image: none !important;
}
.content h4 {
    font-size: 18px;
}
.content p {
    font-size: 14px;
    line-height: 22px;
}
.goto {
    margin-bottom: 2rem;
}
section.sec-2 {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
    padding: 50px 0;
}
.sec2-image {
    display: none;
}
.process-wrapper {
    gap: 20px;
    margin-left: 0;
}
.process-card {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
}
.process-card span {
    position: relative;
    left: -5vw;
    margin-bottom: 14px;
    max-width: 28%;
}
.process-detail p {
    font-size: 14px;
    line-height: 22px;
}
section.sec-3 {
    padding: 50px 0;
}
.sec3-image {
    display: none;
}
.sec3-wrapper {
    padding: 23px;
}
.pckg .upper .title {
    margin-bottom: 4px;
    font-size: 22px;
}
.pckg .upper b {
    font-size: 14px;
    line-height: 18px;
}
.inner-wrap {
    padding: 16px 14px;
}
.pckg .upper .price .uspto {
    font-size: 14px;
}
.bottom span {
    font-size: 16px;
    line-height: 22px;
    padding: 18px 0 15px;
}
.pckg .bottom ul li:not(.last) {
    margin-bottom: 8px;
}
.pckg .upper .price .amount {
    font-size: 42.596px;
}
.pckg .bottom ul li {
    font-size: 14px;
    line-height: 20px;
}
section.testimonials-sec {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.testi-card p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}
.accordion-list li h3 {
    max-width: 90%;
}
.answer p {
    font-size: 14px;
    line-height: 22px;
}
.accordion-list li {
    margin-bottom: 14px;
}
.faq-image {
    display: none;
}
.sec3-image2 {
    display: none;
}
footer {
    border-radius: 0;
    border-top: 0;
    margin: 0;
}
.logo-sec {
    border-radius: 28px;
    padding: 10px;
    margin-bottom: 20.97px;
}
.footer-sec p {
    font-size: 14px;
    line-height: 22px;
}
.f-menu li a {
    font-size: 14px;
}
.footer-hdng h4 {
    margin-bottom: 5px;
    font-size: 16px;
    padding: 20px 0 4px;
}
.copyright {
    text-align: center;
}
.copyright-sec {
    padding: 10px 0 0;
    margin-top: 20px;
}
h1.banner-heading.inner-text {
    font-size: 28px;
    line-height: 36px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
.banner-img2 {
    display: none;
}
.four-card h3 {
    margin-bottom: 16px;
    margin-top: 16px;
    font-size: 18px;
}
.four-card p {
    font-size: 14px;
    line-height: 22px;
}
.four-card {
    border-radius: 32px;
    padding: 22px;
}
section {
    padding: 2rem 0;
    position: relative;
}
section.sec-3-aboutus {
    padding: 50px 0 50px;
}
.cta-aboutus {
    display: none;
}
ul.overview-nav.d2 a {
    padding: 12px 10px;
    font-size: 14px;
}
ul.overview-nav.d2 {
    gap: 6px;
    margin-bottom: 28px;
    border-radius: 0;
    border: 0;
    padding: 0px;
}
.contact-detail {
    padding: 16px 0;
    flex-direction: column;
    gap: 1rem;
}
.getintouch-sec {
    margin-top: 0;
}
.getintouch-wrap {
    padding: 20px 15px;
}
.getintouch-wrap h2 {
    font-size: 18px;
    line-height: 20px;
    margin-top: 72px;
}
.getintouch-wrap p {
    font-size: 12px;
    line-height: 18px;
}
.form-wrapper {
    border-radius: 22px;
    padding: 12px;
    margin-top: 2rem;
}
.sec-heading-contact h5 {
    font-size: 24px;
}
.sec-heading-contact p {
    font-size: 14px;
    line-height: 19px;
}
.input-field1 textarea {
    height: 160.76px;
}
.mainBanner.term-page h1.banner-heading {
    font-size: 28px;
    padding: 40px 0;
}
.terms p {
    font-size: 14px;
    line-height: 22px;
}
.bg-wrapper {
    border-radius: 0;
    border: 0;
    background: rgba(37, 99, 235, 0.05);
    margin: 0;
}
.image2 {
    display: none;
}
.sec-heading ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}
.sec1-wrapper-image {
    display: none;
}
.feature-item-2 {
    padding: 18px;
    margin-bottom: 0;
    background-image: none !important;
}
.feature-item-2 .content {
    padding-left: 0;
}
.pckg .btn-wrap a {
    font-size: 15px;
    line-height: 22px;
}
.btn-wrap .theme-btn {
    padding: 10px 10px 10px 10px;
}
.search-wrapper {
    padding: 10px;
}
a.srch-btn {
    width: 45%;
    font-size: 12px;
    padding: 9.205px 4.409px;
}
.search-data table tr td:first-child, .search-data table tr th:first-child {
    padding-left: 1rem;
}
.search-data table tbody tr td {
    padding-right: 1rem;
    height: 54px;
    font-size: 13px;
}
.bottom strong {
    font-size: 16px;
    line-height: 22px;
}
.bottom p {
    font-size: 14px;
    line-height: 22px;
}
.office-action-sec .sec-heading {
    margin-top: 2rem;
}
.trademark-monitoring-wrap {
    border-radius: 16px;
    padding: 18px 18px;
    margin-bottom: 2rem;
}
ul.overview-nav2 {
    gap: 1rem;
    margin-bottom: 20px;
    border-radius: 20px;
    padding: 10px;
}
ul.overview-nav2 a {
    padding: 10px 10px;
    border-radius: 70px;
    font-size: 14px;
}
.aboutus-list li {
    font-size: 14px;
    line-height: 22px;
}
.easyprocess {
    font-size: 18px;
}
.box-itswork.port-content p {
    font-size: 14px;
    line-height: 22px;
}
.howitwork-wrap {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 4px;
}
.protect-wrapper.bg-red {
    margin-top: 1rem;
}
.register-heads {
    margin-top: 35px;
}
.form-head {
    margin: 0;
}
table.pricing tr td:first-child {
    font-size: 12px;
    line-height: 18px;
    padding: 6px 7px;
    width: 44.3%;
}
.image1 {
    display: none;
}
.banner-content-inner ul li {
    font-size: 14px;
    line-height: 22px;
}
.sec-heading ul li {
    font-size: 14px;
}
ul.featuredList li {
    font-size: 14px;
    width: 47%;
}






}