:root {
  --nav-bg: #0f1d52;
  --nav-link-color: #ffffff;
  --nav-hover: #f8f9fa;
  --black-heading: #211E1C;
  --primary-color: #ffffff;
  --text-secondary-white: #D9D9D9;
  --secondary-color: #D9D9D9;
  --tertiary-background: #53FEEA;
  --color-black: #00235A;
}

/* Smooth navbar slide + shadow */
.navbar-area {
  position: relative; /* normal flow by default */
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms ease;
  z-index: 10; /* base */
}

/* When sticky we make it fixed and visible at top (transform animates) */
.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0); /* final visible state */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 9999;
    animation: 0.7s ease-in-out fadeInDown;
}

.secondary-nav-tabs .request-free-call-btn {
    display: flex;
    width: 229px;
    padding: 12px 5px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: rgba(255, 94, 20, .1);
    color: #FF5E14 !important;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.reports-header-section {
    position: relative;
    align-items: center;
    flex-flow: row;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    background-color: #1b1f5e !important;
}

.reports-tab-nav-row .report-list-desk {
    gap: 7px;
    color: #fff;
}

.report-buttons-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.display-none-important{
    display: none !important;
}


/* Hide with opacity instead of display: none for smooth fade */
.secondary-navbar-reports-page.hidden,
.page-banner-area-report-details.hidden {
    opacity: 0;
    pointer-events: none;
}


@media (max-width: 991px) {
    .report-title, .sidebar-card-title {
        font-size: 18px !important;
        line-height: 25px !important;
    }
}

.report-buttons-section .btn {
    background-color: #ff5e14;
    color: #fff;
    border: none;
    padding: 9px 24px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.reports-header-section .reports-tab-nav-row {
    display: flex;
    justify-content: space-between;
}

.btn-org-color-bg {
    background-color: #ce4b10 !important;
    color: #ffffff !important;
}

.report-buttons-section .btn.btn-request-sample {
    border-radius: 5px;
    border: 1.213px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    padding: 9px 30px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-top: 0;
}

.btn.btn-request-sample {
    background-color: transparent;
    border: 1.076px solid var(--Space-Cadet, #121e58);
    color: var(--color-black);
    padding: 3px 24px;
    font-size: 14px;
    border-radius: 5px;
}

.btn.btn-request-sample, .head-slide-card .btn {
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.main-navbar-area {
    background-color: #1b1f5e !important;
    position: relative;
}

.mobile-responsive-nav {
    display: none;
}

.desktop-nav {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.desktop-nav .navbar {
    transition: .5s;
    z-index: 2;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu{
  top: 100%;
  opacity: 1;
  margin-top: 20px;
  visibility: visible;
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
}

.desktop-nav .navbar::before {
    position: absolute;
    right: 0;
}

.desktop-nav .navbar::before, .main-navbar-area::after {
    content: "";
    height: 100%;
    top: 0;
    background-color: var(--background);
    left: 0;
}

.main-navbar-area .navbar-brand {
    z-index: 22;
}

.desktop-nav .others-options .option-item .search-overlay{
  display: none;
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
    }
}

.desktop-nav .navbar ul {
    margin-bottom: 0;
    list-style-type: none;
}

.desktop-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding: 10px 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
    margin-left: 25px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
    padding-right: 20px;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    color: var(--primary-color);
    font-family: Inter;
    line-height: 1;
    position: relative;
    font-weight: 500;
    font-style: normal;
    padding: 0;
    margin-left: 0;
    margin-right: 36px;
}

.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
    content: "\ea29";
    position: absolute;
    top: 2px;
    right: 0;
    font-family: boxicons !important;
    line-height: 1;
    font-size: 16px;
    font-weight: 400;
}

.main-navbar-area.is-sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    -webkit-animation: .5s ease-in-out fadeInDown;
    animation: .5s ease-in-out fadeInDown;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    background-color: #06f;
}

.report-tab-nav {
    z-index: 1111;
    position: relative;
}

.product-desc-reviews .nav-tabs.pr-navs .nav-item, .tab-buttons-report .nav-tabs.pr-navs .nav-item {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    flex: 0 0 auto;
    width: auto;
}

.nav-tabs a.nav-link.active {
    color: #ce4b10 !important;
    background-color: #ffffff !important;
}

.product-desc-reviews .nav-tabs .nav-link, .tab-buttons-report .nav-tabs .nav-link {
    text-align: left;
    border: 0;
    font-size: calc(14px + (15 - 14) * ((100vw - 768px) / (1600 - 768)));
    color: #000;
    font-weight: 600;
}

.nav-tabs.pr-navs .nav-link {
    color: #6a6c73;
    position: relative;
}

.progress-bar {
    height: 8px;
    background: #04aa6d;
    width: 0%;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--bs-progress-bar-color);
    text-align: center;
    white-space: nowrap;
    background-color: var(--bs-progress-bar-bg);
    transition: var(--bs-progress-bar-transition);
}

.secondary-nav-tabs {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    align-items: center;
}

.progress-container {
    width: 20%;
    height: 8px;
    background: #ccc;
}

.tab-buttons-report .pr-navs.nav-tabs {
    border: none;
}

.report-tab-nav .tab-buttons-report {
    background-color: #fff;
}

.tab-buttons-report {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.desktop-nav {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.main-navbar-area::after {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: rgb(208 219 219 / 24%) 0 2px 12px;
}

.desktop-nav .navbar::before, .main-navbar-area::after {
    content: "";
    height: 100%;
    top: 0;
    background-color: var(--background);
    left: 0;
}

#navbarSupportedContent .others-options {
    gap: 20px;
}

body {
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.text-orange {
  color: #ff6600;
}

.desktop-nav .others-options .option-item{
    position: relative;
}

.desktop-nav .others-options .option-item .search-btn {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    font-size: 22px;
    position: relative;
    top: 4px;
}

.desktop-nav .others-options .option-item .close-btn {
    transition: .5s;
    color: #fff;
    font-size: 25px;
    display: none;
    cursor: pointer;
}

.desktop-nav .others-options .option-item .close-btn.active{
  display: block;
}

.desktop-nav .others-options .option-item .search-overlay.search-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 500px;
    margin-top: 26px;
    background-color: #fff;
    padding: 20px;
    z-index: 2;
}

.desktop-nav .others-options .option-item .search-overlay.search-popup .search-form {
    position: relative;
    box-shadow: none;
}

.desktop-nav .others-options .option-item .search-overlay.search-popup .search-form .search-input{
  outline: 0;
    border: 1px solid #dfdfff;
    box-shadow: none;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #f4f4ff;
    padding: 15px 70px 15px 20px;
}

.desktop-nav .others-options .option-item .search-overlay.search-popup .search-form .search-button{
  border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
    background-color: #000f5c;
    padding: 15px 20px;
}

.desktop-nav .menu .login-btn {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
    position: relative;
    top: 0;
    font-size: 16px;
    font-weight: 600;
    width: 120px;
    display: flex;
    justify-content: center;
    font-style: normal;
    height: 51px;
    align-items: center;
    font-family: Inter;
}

.others-option-for-responsive {
    display: none !important;
}

.others-option-for-responsive .container{
  position: relative;
}

.others-option-for-responsive .dot-menu {
    top: -52px;
    right: 60px;
    height: 30px;
    z-index: 999;
    padding: 0 10px;
    cursor: pointer;
    position: absolute;
}

.others-option-for-responsive .container .others-options .option-item .search-btn {
    cursor: pointer;
    transition: .5s;
    color: #fff;
    font-size: 25px;
    position: relative;
}

.others-option-for-responsive .container .others-options {
    display: inline-flex;
    text-align: center;
    padding: 8px 15px 12px;
        position: relative;
}

.others-option-for-responsive .container .others-options .option-item {
    position: relative;
    margin-right: 5px;
    margin-left: 35px;
}

.others-option-for-responsive .container .others-options .option-item .close-btn {
    transition: .5s;
    color: #000f5c;
    font-size: 25px;
    display: none;
    cursor: pointer;
    position: relative;
    top: 15px;
}

.others-option-for-responsive .container .others-options .option-item .search-overlay{
  display: none;
}

.others-option-for-responsive .container .others-options .option-item .search-overlay.search-popup {
    position: absolute;
    top: 180%;
    right: 0;
    left: -264px;
    width: 379px;
    margin-top: 10px;
    background-color: #fff;
    padding: 15px;
    z-index: 2;
}

.others-option-for-responsive .container .others-options .option-item .search-overlay.search-popup .search-form{
  position: relative;
}

.others-option-for-responsive .container .others-options .option-item .search-overlay.search-popup .search-form .search-input {
    outline: 0;
    border: 1px solid #dfdfff;
    box-shadow: none;
    display: block;
    width: 100%;
    height: 50px;
    background-color: #f4f4ff;
    padding: 15px 70px 15px 20px;
}

.others-option-for-responsive .container .others-options .option-item .search-overlay.search-popup .search-form .search-button {
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
    background-color: #000f5c;
    padding: 15px 20px;
}

.main-navbar-area::after {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-shadow: rgb(208 219 219 / 24%) 0 2px 12px;
}

@media only screen and (max-width: 991px) {
    .mobile-responsive-nav {
        display: block;
        position: relative;
    }

        .others-option-for-responsive .others-options .search-form {
        margin-left: 8px;
        width: 100%;
        margin-right: 10px;
    }
    
    .mobile-responsive-menu.mean-container{
        display: flex;
        align-items: center;
        gap: 10%;
    }
    
    .mobile-responsive-menu.mean-container .btn-org-color-bg {
        font-size: 14px;
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container a.meanmenu-reveal span {
        height: 4px;
        margin-top: 0px;
        position: relative;
        top: 8px;
        background: rgb(17, 29, 55);
        border-radius: 0px;
    }

    .mobile-responsive-nav .mobile-responsive-menu {
        position: relative;
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-bar {
        position: absolute;
        z-index: 2;
        background: 0px 0px;
        padding: 0px;
    }

        .mobile-responsive-nav .mobile-responsive-menu.mean-container a.meanmenu-reveal {
        top: 0px;
        width: 35px;
        height: 30px;
        color: rgb(246, 135, 35);
        padding: 13px 0px 0px;
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav {
        margin-top: 70px;
        background-color: rgb(255, 255, 255);
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul {
        background-color: rgb(255, 255, 255);
        border-width: initial !important;
        border-style: none !important;
        border-color: initial !important;
        border-image: initial !important;
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav {
        box-shadow: rgba(0, 0, 0, 0.1) 0px 7px 13px 0px;
        margin-top: 0px !important;
    }

        .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a {
        border-top-color: rgb(239, 239, 239);
        font-weight: 500;
        text-transform: capitalize;
        color: rgb(37, 37, 37) !important;
        font-size: 19px !important;
        padding: 0.8em 5%;
    }

    .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
        width: 100%;
        height: 28px;
        text-align: right;
        padding: 16px !important;
        background: 0px 0px !important;
        border-left: none !important;
        border-bottom: none !important;
    }

    .desktop-nav, .mobile-responsive-nav .others-options {
        display: none !important;
    }

    .main-navbar-area {
        background-color: rgb(255, 255, 255);
        z-index: 2;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}




.btn-white {
  border: 1px solid black;
  padding: 0.4rem 0.96rem;
  color: #000000;
  font-weight: 600;
  border-radius: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
}

.btn-orange1:hover {
  background-color: #e55b00;
  color: #fff;
}
/* heading */
h1.report-title{
  color: #000;
  font-family: Rubik;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 155%; /* 37.2px */
}


/* Breadcrumb Styles */
.custom-breadcrumb .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.875rem;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: rgba(0, 0, 0, 0.5);
}

.custom-breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
}

.custom-breadcrumb .breadcrumb-item.active {
  color: #ff5e14;
}

.custom-accordion .accordion-item {
  border: rgba(60, 171, 255, 0.1);
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.custom-accordion .accordion-button {
  font-weight: 600;
  color: #0d2a71;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
}

.custom-accordion .accordion-button::after {
  background-image: url("arrow-drop-down-48px.png");
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-body {
  color: #211e1c;
  font-size: 0.95rem;
  padding: 16px;
  border-top: 1px solid #f1f1f1;
}

.custom-accordion .accordion-body strong {
  color: #211e1c;
  margin-right: 6px;
}

@media (min-width: 768px) {
  .gap-md-5 {
    gap: 90px !important;
  }
}

.report-meta-details {
  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

/*main content*/
.main-content {
  background-color: white;
  border-radius: 8px;
}

.sidebar-card {
  background-color: rgba(60, 171, 255, 0.03);
  border: 0.558px solid rgba(60, 171, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}
.sidebar-header {
  font-family: "Rubik";
}
.key-insights-list {
  list-style: none;
  padding-left: 0;
  font-family: "Open Sans", sans-serif;
  color: #00235a;
  font-size: 14px;
  margin: 0;
}

.key-insights-list li {
  display: flex;
  align-items: flex-start;
  color: #00235A;
  font-family: "Open Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
}

.icon-orange {
  color: #ff5e14;
  font-size: 12px;
  display: inline-block;
  margin-right: 8px;
  margin-top: 2px;
}

.sidebar-card-title {
  padding-bottom: 4px;
  color: #000;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 100% */
}

.btn-request, .btn-orange1 {
  background-color: #ff5e14;
  color: #ffffff;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
}

.btn-request:hover, .btn-orange1:hover{
  background-color: #ff5e14;
  color: #ffffff;
  font-weight: 700;
}

hr.hr-orange{
  border: 1px solid #FF5E14;
  color: #FF5E14;
  margin: 5px 0;
}

.quick-contact-card {
  font-family: "Open Sans", sans-serif;
}

.contact-row {
  display: flex;
  align-items: center;
  padding: 0;
}

.contact-icon {
  font-size: 20px;
  margin-right: 12px;
  color: #000;
  min-width: 20px;
  text-align: center;
}

.contact-text {
  font-size: 15px;
  color: #212529;
}

.contact-link {
  font-size: 15px;
  text-decoration: underline;
  color: #515050;
}

.border-top {
  border-top: 1px solid #e2e8f0;
}

.analyst-card {
  padding: 1.5rem;
}

.analyst-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #051d53;
}

#Inquiry {
  transition: font-size 0.6s ease-in-out;
  color: #121E58;
  font-size: 16px;
}
#Inquiry:hover{
  color: #ff5c00;
}


.related-reports-card {
  font-family: 'Open Sans';
  padding: 15px 20px;
}

.related-reports-title {
  border-bottom: 2px solid #f1804a;
  padding-bottom: 8px;
  margin-bottom: 16px;
}


.related-reports-list li {
  display: flex;
  align-items: flex-start;
  color: #00235A;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 10px;
}

.text-orange {
  color: #ff5c00 !important;
}
.btn-orange {
  background-color: #ff5e141a;
}
.btn-orange:hover {
  background-color: #ff5e141a;
  border-color: #e45200;
}
/*table*/
.table thead th {
  background-color: #0a1a49;
  color: white;
  text-align: left;
}
.table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}
.table td,
.table th {
  vertical-align: top;
  padding: 12px 16px;
}
.key-ul{
  list-style-type: disc; 
  padding-left: 20px;
}


.custom-tabs .nav-link {
  color: #121E58;
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  
}

.custom-tabs .nav-link.active {
  color: #ff6600;
  border-bottom: 3px solid #ff6600;
  font-weight: 600;
}

.tab-content img{
    display: block;
    margin: 10px auto 30px; 
}

table caption {
    caption-side: top !important;
}

table{
    border-radius: 10px;
}

table, tr, th, td{
    border: 0.5px solid #68708C !important;
}

table thead th{
    padding: 16px 20px;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    background-color: #121E58;
    color: #fff;
}

table tbody td{
    padding: 16px 20px;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    color: #fff;
    color: #211E1C !important;
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    line-height: 27px; 
}

table tr > th:first-child,
table tr > td:first-child {
    width: 35%;
}

table tr > th:nth-child(2),
table tr > td:nth-child(2) {
    width: 65%;
}


/* Tab styles */
#stickyWrapper h2{
  color: #211E1C !important;
  font-family: "Rubik";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px; /* 105% */
}

#stickyWrapper h2 span, #stickyWrapper h2 strong{
    color: #211E1C !important;
}

#stickyWrapper h2 strong{
  font-weight: 500;
}

#stickyWrapper h3{
  color: var(--black-heading);
  font-family: Rubik;
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
}



#stickyWrapper h2 strong{
  font-weight: 500;
}
#stickyWrapper h3 strong{
  font-weight: 500;
}

#stickyWrapper p{
  color: var(--black-heading);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

#stickyWrapper p strong, #stickyWrapper p b{
  font-weight: bold;
}

#stickyWrapper li {
  color: var(--black-heading);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 32px */
}

#stickyWrapper li strong, #stickyWrapper li b {
  font-weight: bold;
}

#toc p{
  margin-bottom: 0;
}
#seg p{
  margin-bottom: 0;
}



.left-section{
  max-width: 70%;
  width: 100%;
}

.right-section{
  max-width: 27%;
  width: 100%;
}
.main-section-report{
    flex-wrap: wrap;
  }
  
#method .img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

#desc img{
  max-width: 100%;
  height: auto !important;
  display: block;
}

@media (max-width: 991px) {
  .main-section-report{
    flex-wrap: wrap;
  }
  .left-section,
  .right-section {
    max-width: 100%;
    width: 100%;
  }
  .main-content {
    border-radius: 0;
  }
  .sidebar-card {
    margin-bottom: 1rem;
  }
  .custom-tabs {
    gap: 0.75rem;
  }
  .navbar-dark {
    padding: 0.5rem 0.5rem;
  }
  .analyst-img {
    width: 70px;
    height: 70px;
  }
  .email-form {
    width: 100%;
    max-width: 100%;
  }
  .subscribe-now {
    max-width: 100%;
  }
}

@media (min-width: 1400px){
  #myTab{
    gap: 1.5rem;
  }
}
@media (max-width: 1400px){
  #stickyWrapper li {
    font-size: 14px;
  }
}

/* footer Styles */
img.footer-logo {
    width: 205px;
}

footer {
    background: #121E58;
    margin-top: 50px;
}

.footer-newsletter {
    padding-bottom: 40px;
}

footer .newsletter-description {
    padding-top: 91px;
    position: relative;
}

footer .newsletter-description .title {
    color: var(--primary-color);
    font-family: Rubik !important;
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: 107%;
    letter-spacing: -.5px;
    max-width: 398px;
}

footer .newsletter-description .description {
    color: var(--secondary-color);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    max-width: 421px;
}

.footer-orange-line {
    position: absolute;
    top: 140px;
    left: 80px;
}

.newsletter-form {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.newsletter-form .choose-category {
    color: var(--primary-color);
    line-height: normal;
    letter-spacing: -.5px;
}

.choose-category {
    padding-top: 59px;
}

.newsletter-form .choose-category span {
    color: var(--tertiary-color);
    line-height: normal;
    letter-spacing: -.5px;
}

footer p, footer h2 {
    color: var(--primary-color) !important;
}

.newsletter-form .form-categories {
    display: flex;
    align-items: center;
    gap: 14px;
    align-self: stretch;
    flex-wrap: wrap;
}

.newsletter-form .form-categories .categories {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    cursor: pointer;
}

.newsletter-form .form-categories .categories.selected {
    background-color: #3cabff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
}

.newsletter-form .form-categories .categories.selected span {
    color: var(--nav-link-color);
    line-height: 26.4px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu{
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .05);
    transition: .3s ease-in-out;
    background-color: #fff;
    position: absolute;
    visibility: hidden;
    border-radius: 0;
    display: block;
    width: 250px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: 0;
    padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li, .footer-links-sections{
  padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item{
    position: relative;
    padding: 10px 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a{
    color: #000;
    padding: 14px;
    border-bottom: 1px dashed #e3e3e3;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    display: block;
    position: relative;
}

.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
    margin-left: 25px;
}


.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.dropdown-toggle::after, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after, .desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after, .main-navbar-area .mobile-responsive-menu .logo .white-logo, .main-navbar-area .navbar-brand .white-logo, .newsletter-form .form-categories .categories input {
    display: none;
}

.newsletter-form .form-categories .categories span {
    color: var(--color-black);
    line-height: 26.4px;
}

.newsletter-form .form-categories .categories span {
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.newsletter-email-group{
    position: relative;
}

.newsletter-input {
    width: 506px;
    height: 60.19px;
    padding: 19px 10px;
    align-items: center;
    flex-shrink: 0;
    background: var(--primary-color);
}

.btn-subscribe-newsletter {
    z-index: 2;
    position: absolute;
    right: 6px;
    top: 6px;
}

.btn-secondary, .newsletter-input {
    display: inline-flex;
    border-radius: 3px;
}
.btn-secondary {
    height: 50.19px;
    padding: 15px 19.16px 15.19px 22px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #ce4b10 !important;
    color: #ffffff !important;
    border: none;
}

.btn-secondary, .newsletter-input {
    display: inline-flex;
    border-radius: 3px;
}

.btn-secondary span {
    display: flex;
    width: 128.84px;
    height: 20px;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background-color: #ce4b10 !important;
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 27.2px;
}

#regresult{
  color: var(--primary-color);
}

.row.footer-links {
    margin-top: 41px;
    justify-content: space-between;
}

.footer-links .about-company {
    max-width: 318px;
    width: 100%;
}

.footer-links .footer-logo {
    width: 150px;
    flex-shrink: 0;
    margin-bottom: 10px;
}

p:last-child {
    margin-bottom: 0;
}

.footer-links-desc {
    color: var(--primary-color);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.footer-links .footer-quick-links {
    max-width: 185px;
    width: 100%;
}

.footer-links-sections {
    padding: 0;
}

.footer-links .footer-links-header {
    color: var(--text-secondary-white);
    font-family: Rubik, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

footer p, h2 {
    color: var(--primary-color) !important;
}

.footer-newsletter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-newsletter ul li{
  margin-bottom: 20px;
}

.footer-newsletter li a {
    color: var(--secondary-color);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footer-links .footer-industries {
    max-width: 234px;
    width: 100%;
}

.dropdown-menu li, .footer-links-sections {
    padding: 0;
}

.footer-links .footer-links-header {
    color: var(--text-secondary-white);
    font-family: Rubik, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}


footer p, h2 {
    color: var(--primary-color) !important;
}

.footer-newsletter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .footer-contact {
    max-width: 290px;
    width: 100%;
}

.footer-links-sections {
    padding: 0;
}

.footer-links .footer-links-header {
    color: var(--text-secondary-white);
    font-family: Rubik, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

footer p, h2 {
    color: var(--primary-color) !important;
}

.footer-newsletter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-newsletter ul li{
    margin-bottom: 20px;
}

.footer-links .footer-contact .footer-payment-options {
    color: var(--primary-color);
    font-family: Rubik, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-top: 25px;
}

footer p, h2 {
    color: var(--primary-color) !important;
}

.payment-options-list {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

footer .footer-end-all-rights-reserved {
    background-color: var(--tertiary-background);
}

.footer-end-all-rights-reserved {
    align-items: center;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-legal, .footer-legal a {
    color: var(--color-black);
    font-family: "Open Sans";
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
}

.footer-legal, .footer-legal a {
    color: var(--color-black);
    font-family: "Open Sans";
    font-weight: 400;
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
}

@media (max-width: 768px) {
  .row.footer-links {
    justify-content: center;
  }

  .newsletter-form{
    align-items: center;
  }

  .newsletter-form .form-categories{
    justify-content: center;
  }
}

.pass-back-text, a {
    text-decoration: none;
}

.go-top.active {
    top: 98%;
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
}

.go-top {
    position: fixed;
    cursor: pointer;
    top: 50%;
    padding-top: 3px;
    font-size: 25px;
    right: 15px;
    background-color: #000;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    color: #fff;
}

.go-top::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

#preloader, .go-top::before {
    top: 0;
    height: 100%;
    background-color: #06f;
    left: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .newsletter-input {
        width: 400px;
        height: 45px;
        border-radius: 3px;
        padding: 19px 10px;
    }

    .btn-secondary {
        padding: 15px 0;
        height: 34px;
    }
}

@media (max-width: 575px) {
    .newsletter-input {
        width: 100%;
    }
    .btn-subscribe-newsletter {
        position: unset;
        margin-top: 10px;
    }
}
/* footer Styles - end */

