:root {
    --primary: #e7760d;
    --secondary: #0d52e3;
    --bg-light: #2a3e812b;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
    --text-color: #555;
    --font-heading: "Poppins", sans-serif;
    --font-accent: "Inter", sans-serif;
    --font-body: "Inter", sans-serif;
    --icon: "Font Awesome 6 Pro", sans-serif;
}

::-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: var(--primary);
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: 600;
    color: #000;
    /* font-size: 1.25rem; */
}

*: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;
}

.header-top {
    background: var(--dark);
    padding: 10px 0px;
}

.navtop {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.navtop a {
    color: #fff;
}

a:hover {
    color: var(--primary);
}


.navbar .dropdown-menu {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.nav-item .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-item.dropdown .nav-link.dropdown-toggle::after{
    display: none;
}
.navbar .dropdown:hover .dropdown-menu a.dropdown-item {
    color: #fff;
}

.navbar .dropdown:hover .dropdown-menu a.dropdown-item:hover {
    background: unset;
    color: var(--primary);
}

a.nav-item.nav-link.btn.theme-btn {
    margin-left: 20px;
}

.theme-btn {
    border: 1px solid;
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    padding: 7px 20px!important;
    border-radius: 40px;
    transition: .1s ease;
}

.theme-btn:hover {
    background: var(--secondary);
    color: #fff;
    transition: .1s ease;
}

nav.navbar.navbar-expand-xl.navbar-light {
    --tw-shadow: 0 9px 26px hsla(0, 0%, 45%, .1);
    --tw-shadow-colored: 0 9px 26px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hero_section {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero_section .heading h1 {
    font-size: 54px;
}

.blue_text {
    color: var(--secondary);
    position: relative;
}

.bg_blue_heading {
    position: absolute;
    opacity: 0.2;
    background: var(--secondary);
    color: var(--secondary);
    height: 15px;
    width: 100%;
    left: 0;
    z-index: -1;
    bottom: 13px;
}

.sub_heading {
    font-size: 1.25rem;
    line-height: 2rem;
    color: var(--dark);
    font-weight: 600;
}

.input_field {
    display: flex;
    align-items: center;
    position: relative;
    width: 75%;
}

.input_field i {
    position: absolute;
    top: 35%;
    font-size: 20px;
    cursor: pointer;
}

.input_field i.right {
    right: 10px;
}

.input_field i.left {
    left: 10px;
}

.input_field input {
    padding: 15px 40px;
}

.flex_search {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flex_search .btn {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
}

.counter .counter_number {
    font-size: 35px;
    font-weight: 700;
    color: var(--black);
}

.counter .sub_heading {
    font-size: 16px;
    margin-bottom: 0px;
}
section {
    padding: 40px 0px;
    position: relative;
}
.border_right {
    border-right: 1px solid #8080808c;
}

.similar_search_content h2 {
    font-size: 40px;
}

.sub_text {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    line-height: 27px;
    margin-bottom: 20px;
}

.flag_content {
    text-align: center;
    cursor: pointer;
}

.flag_content .flag_image {
    margin-bottom: 30px;
}

.flag_content .flag_heading {
    font-size: 22px;
    font-weight: 700;
}

.flag_content .flag_subheading {
    font-size: 18px;
    color: var(--black);
}

.flag_section .card{
    margin-bottom: 20px;
}

.package_card {
    padding: 35px;
    background: #eff5ff;
    border-radius: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.package_heading {
    font-size: 25px;
    font-weight: 600;
}

.text-lg {
    font-size: 48px;
    color: var(--black);
}

.text-bold {
    font-weight: 700;
    display: inline-block;
    line-height: 100%;
}
.package_list {
    padding: 0;
    line-height: 50px;
    list-style: none;
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    margin: 30px 0px;
    position: relative;
    z-index: 1;
}
.image_absolute {
    position: absolute;
    max-width: 300px;
    width: 100%;
    bottom: 0;
    right: 0;
}
.bg_light_green {
    background: #e7f8f8;
}

.green_bg{
    background-color: #09abab;
}
.green_text{
    color: #09abab;
}

.bg_light_pink {
    background: #fff1f6;
}

.pink_bg{
    background-color: #e92169;
}
.pink_text{
    color: #e92169;
}

ul.simple_steps {
    list-style: decimal;
}

ul.simple_steps p {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.logo_card {
    min-height: 130px;
    border: 1px solid #808080ab;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi_text {
    font-size: 17px;
    font-weight: 600;
}

.testimonials .card {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #80808054;
    margin: 20px 0px;
}

.rating_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.rating_flex .profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating_flex .profile .name {
    margin-bottom: 0px;
    font-size: 15px;
    font-weight: 600;
}

.rating_flex .stars {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bg_blue{
    background: #dbeafe;
}
.text_dark_blue{
    color: #075985;
}

.flex_attorney .profile-picture {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    overflow: hidden;
}

.flex_attorney .profile-picture img {
    object-fit: cover;
    width: 100%;
    height: auto;
}

.flex_attorney {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flex_attorney .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flex_attorney .profile p.name {
    font-weight: 600;
    color: #000;
    font-size: 18px;
}

.attorney_inner {
    border-radius: 30px;
    padding: 50px;
    background: #fff;
}

.attorney {
    position: absolute;
    width: 100%;
    top: -200px;
}

.faq {
    margin-top: 150px;
}

.faq_sec .accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px;
}

.btn-view {
    padding: 15px 30px;
    font-weight: 600;
    color: #000;
    border: 1px solid #8080807a;
}

.btn-view:hover {
    padding: 15px 30px;
    font-weight: 600;
    color: #000;
    border: 1px solid #8080807a;
}

.footer .logo_section img {
    margin-bottom: 20px;
}

.footer_links {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.footer_links a {
    font-size: 18px;
    color: #000;
}

.footer_links a:hover {
    color: var(--primary);
}

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999998;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
}

.mmpopup {
    text-align: center;
    background: #f8f8f8;
    padding: 45px 25px 25px;
}

.mmpopup .formpop {
    width: 100%;
    margin: 24px auto;
}

.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 h4 span span {
    display: none;
}

.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(../images/home/e-remove.png) no-repeat;
    width: 16px;
    height: 16px;
    display: block;
}

.closeico i:before {
    display: none;
}

.closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
}

.closeico1 i {
    background: url(../images/home/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: #0085ff;
}

.mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
}

.mmpopup .centercont h3 span {
    display: block;
    margin: 0 30px;
    /* font-size: 30px; */
    color: #000;
    /* font-family: 'CenturyGothic'; */
    font-weight: 700;
    /* line-height: 33px; */
    font-size: 36px;
    line-height: 120%;
    color: #3A3D40;
}

.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-radius: 5px;
    background-color: var(--primary);
    width: 100%;
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    cursor: poRoboto;
    transition: 0.5s;
    font-family: 'Inter';
    height: 59px;
    cursor: pointer;
    border: 0;
}

.fld-btn button i {
    padding-left: 12px;
}

.fld-btn button:hover {
    transform: scale(1.03);
}



/* Comprehensive search */

.comp_search .flex_search .btn {
    width: 29%;
}

.comp_search .flex_search .input_field {
    width: 65%;
}

.comp_search .flex_search {
    justify-content: start;
    margin-bottom: 20px;
}

.comprehensive_work .icon {
    padding: 20px;
    background: #eff5ff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.comprehensive_work .icon i {
    font-size: 28px;
    color: #4380ec;
}

.comprehensive_work {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.pkg_card.card .card-header img {
    margin: 20px;
}

.pkg_card.card .card-header h6 {
    margin-bottom: 20px;
}

.pkg_card.card .card-header h2 {
    margin-bottom: 30px;
}

.pkg_card.card .card-header {
    text-align: center;
}

.pkg_card.card .card-header .recommend {
    background: rgba(231, 118, 13, 0.06);
    width: fit-content;
    padding: 10px;
    border-radius: 20px;
    margin: 0 auto;
    color: #e7760d;
    font-weight: 700;
}

.pkg_card.card.active {
    border: 2px solid #e7760d;
}

.pkg_card.card .pkg_text .additional {display: flex;align-items: center;justify-content: start;gap: 20px;}

.pkg_card.card .pkg_text .additional svg {
    color: green;
    max-width: 20px;
}
.comp_search_table .main-orange .icon {
    padding: 10px 30px;
    background: #ffffff42;
    width: fit-content;
    border-radius: 20px;
    margin: 20px auto;
    font-size: 25px;
}

.comp_search_table .main-orange {
    text-align: center;
    margin: 0 auto;
    display: block;
    border-radius: 20px 20px 0px 0px;
    background: #e7760d;
    padding: 20px;
    color: #fff;
}

.comp_search_table .main-orange .search_heading {
    color: #fff;
    font-size: 20px;
}

.btn-theme-white {
    border: 1px solid #fff;
    color: #e7760d;
    background: #ffffff;
    padding: 10px 20px;
}

.btn-theme-white:hover {
    color: #fff;
    border: 1px solid #fff;
}

.comp_search_table .free_search .icon {
    padding: 10px 30px;
    background: #4380ec1a;
    width: fit-content;
    border-radius: 20px;
    margin: 20px auto;
    font-size: 25px;
    color: #4380ec;
}

.free_search {
    padding: 20px;
    text-align: center;
}
section.comp_search_table .container {
    border-radius: 40px;
    box-shadow: rgba(198, 198, 198, 0.25) 0px 4.34295px 68px 0px,
                        rgba(232, 232, 232, 0.25) 0px 3.93525px 10px 0px,
                        rgba(231, 231, 231, 0.25) 0px 4px 4px 0px;
}
.text-tm-green{
    color: #61c151;
}

.comp_search_table svg {
    width: 20px;
}

.comp_search_table tbody td {
    vertical-align: middle;
    text-align: center;
}

.comp_search_table tbody tr > td:first-child {
    text-align: start;
    padding: 20px 0px;
}

.table_heading {
    margin: 0;
    
    font-size: 18px;
    font-weight: 600;
}
.text-table-red{
    color: #fc4a4a;
}

.legal_services {
    text-align: center;
    background: linear-gradient(to bottom, #1867e7 50%, #0d64f6cc 75%);
    color: #fff;
}

.legal_services .content_area {
    max-width: 750px;
    margin: 0 auto;
}

.legal_services .content_area h1 {
    color: #fff;
    margin-bottom: 30px;
}

.trademark_services .heading {
    background: #e7760d;
    margin: 0;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    padding: 15px;
}
.trademark_services {
    background: #e7760d12;
}
.trademark_services  .links {
    padding: 15px 15px;
    font-size: 15px;
    color: #e7760d;
    font-weight: 600;
    border-bottom: 1px solid #8080804a;
    width: 100%;
}

.registration_services .reg_card .card-header h2 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.registration_services .reg_card .card-header {
    background: #393838;
    padding: 15px;
}

.registration_services .reg_card .card-body {
    padding: 20px;
}

.registration_services .reg_card .card-body h3 {
    font-size: 22px;
}

.registration_services .reg_card .card-body .services_list {
    line-height : 25px
}
.registration_services .reg_card .card-body .services_list li{
    margin-bottom: 20px
}
.registration_services .reg_card .card-body .services_list li a {
    color: #e7760d;
}
.flex_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.card_border {
    border: 1px solid #80808063;
    border-radius: 20px;
    margin: 20px;
}

.countries_sec {
    padding: 40px;
    margin-bottom: 30px;
}

.country_heading {
    text-align: center;
    font-weight: 500;
}

.countries_sec .country_list {
    cursor: pointer;
    transition: .5s all ease;
}

.countries_sec .country_list:hover {
    color: #e7760d;
}

.about-us {
    padding: 20px;
}

.about-us h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.about-us h3 {
    font-size: 22px;
}

.get_in_touch {
    padding: 30px;
    background: #e7760d1c;
}

ul.contact_list {
    list-style: none;
    padding: 0;
}

ul.contact_list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.contact_list li .icon {
    padding: 10px;
    background: #e7760d;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
}

ul.contact_list li a {
    color: #000;
    font-weight: 600;
}

ul.contact_list li a:hover {
    color: #e7760d;
}

.contact_form {
    padding: 30px;
    border: 1px solid #e7760d;
    border-radius: 30px;
}

.contact_form textarea {
    margin-top: 20px;
}
.form_btn {
    margin: 30px 0px;
    text-align: center;
}

/******************************** Petant Application *********************************/

.whyuszoomt {
    padding: 5% 0 3% 0;
}
.whyuseText h3 {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 36px;
}
.whybox {
    box-shadow: 1px 1px 11px #0000002e;
    padding: 15px;
    border-radius: 7px;
    margin-top: 20px;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.whybox i {
    display: block;
    font-size: 60px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.whybox span {
    text-align: center;
    display: block;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #292d2e;
    margin: 10px 0 10px 0;
}
.whybox p {
    text-align: center;
}
.SecureRights {
    padding: 1% 0 1% 0;
}
.centerhead span {
    display: block;
    font-weight: 600;
    color: #0c1f43;
    font-size: 37px;
    text-transform: capitalize;
}
.martop {
    margin-top: 50px;
}
.secureboxes {
    border: 1px solid #e7760d;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    min-height: 260px;
    transition: ease 0.4s;
    position: relative;
    background: #fff8f8;
}
.secureboxes span {
    display: block;
    font-weight: 600;
    color: #292d2e;
    font-size: 22px;
    text-transform: capitalize;
    margin: 0 0 10px 0;
}
.secureboxes a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin: 10px 0 10px 0;
    position: absolute;
    bottom: 0;
}
.secureboxes a:hover {
    color: #fff;
}
.redcolor {
    color: #e7760d !important;
}
.oftenmain {
    background: #fff0ef;
    padding: 4%;
}
.centerhead span {
    display: block;
    font-weight: 600;
    color: #0c1f43;
    font-size: 37px;
    text-transform: capitalize;
    line-height: 50px;
}
.color-red {
    color: ##292d2e !important;
}
.ofteryears {
    border: 1px solid #e7760d;
    border-radius: 7px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 180px;
    margin-top: 50px;
}
.ofteryears span {
    display: block;
    font-size: 21px;
    color: #e7760d;
    font-weight: 600;
    margin: 0 0 10px 0;
}
/*a.theme-btn {*/
/*    background: #951920;*/
/*    color: white !important;*/
/*    padding: 15px 20px;*/
/*    border-radius: 8px;*/
/*    font-weight: 400 !important;*/
/*    border: 2px solid #951920;*/
/*}*/
.renewcontent span {
    display: block;
    font-weight: 600;
    color: #292d2e;
    font-size: 24px;
    text-transform: capitalize;
    line-height: 30px;
    margin: 0px 0 10px 0px;
}
.mainBanner {
    padding: 5% 5% 0% 5%;
}
.patent-main .pkg_card {
    min-height: 650px;
    margin-top: 30px;
}
/******************************** Petant Application *********************************/