/*Main Css */

html{
    overflow-x: hidden;
}

:root {
    --primary: #1A1A1A;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Urbanist" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
  }
::selection {
    background: #FFA459;
    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: #F47B52;
}

/* 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: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    display: block;
    font-weight: normal;
}

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

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

/*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: fixed;
    background: transparent;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}
header.sticky{
    background: white;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* 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;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 0 16px 35px;
}
.menu > li > a {
    display: block;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
}
.header-btn {
    color: white !important;
    font-weight: 400 !important;
    padding: 15px 30px;
    border: 2px solid #F47B52;
    transition: .5s ease;
    border-radius: 15px;
    background: linear-gradient(0deg, #F47B52 0%, #F47B52 100%), var(--G, #C9A45C);
}
.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;
    border-radius: 0px 0px 10px 10px;
    top: 100%;
    width: 300px;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
    display: none;
}

@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: #333;
    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: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.banner-content {
    padding: 120px 0 20px;
}
h1.banner-heading {
    font-size: 57px;
    line-height: 65px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary);
}
span.sub-heading {
    font-size: 18px;
    line-height: 22px;
    color: #626262;
    font-weight: 500;
    border-radius: 40px;
    padding: 5px 20px;
    position: relative;
}
p.banner-text {
    margin-bottom: 1rem;
    color: #626262;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 20px 25px 25px 30px;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    background: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border-radius: 18px;
    border: 1.2px solid #D9D9D9;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    font-size: 24px;
    color: var(--primary);
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #000;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    font-weight: 600;
    background: #E6E6E6;
    top: 0;
    border-radius: 20px;
    padding: 3px 5px;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    background: #F47B52;
    color: white;
}
.answer p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    border-top: 1px solid #D9D9D9;
    color: #626262;
    width: 95%;
    padding-top: 12px;
}
/* Accordian */

/* packages */

.pckg {
    color: #000;
    border: 1px solid #D9D9D9;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    justify-content: space-between;
    position: relative;
    transition: 0.3s;
    background: #fff;
    box-shadow: -10px 14px 30px rgb(0 0 0 / 7%);
    border-radius: 22px;
    height: 100%;
    padding: 15px 15px 20px;
}
.pckg .btn-wrap a{
    font-weight: 600;
    font-size: 14px;
    padding: 10px 5px;
    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: 0rem;
    color: #1A1A1A;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 10px;
}
.pckg .upper .starting-in {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}
.pckg .upper p {
    font-size: 17px;
    line-height: 20px;
    color: #1A1A1A;
    margin-bottom: 10px;
}
.pckg .upper .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.5rem 0 1.2rem 0;
}
.pckg .upper .price .amount {
    font-weight: 700;
    font-size: 51px;
    line-height: 40px;
    color: #1A1A1A;
}
.pckg .upper .price .uspto {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #1A1A1A;
}
.pckg .upper {
    border-bottom: 1px solid #E5E7EB;
    border-radius: 21px;
    background: rgba(244, 123, 82, 0.20);
    padding: 20px 20px;
}
.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 {
   font-weight: 500;
   font-size: 16px;
   padding: 0px 0px 0px 30px;
   line-height: 22px;
   color: #5b5b5b;
   position: relative;
}
.pckg .bottom ul {
    margin: 1rem 0 1rem;
    overflow-y: auto;
    padding-right: 10px;
    height: 180px;
}

.pckg .bottom ul li:not(.last) {
    margin-bottom: 1rem;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 15px;
}
.pckg .bottom ul li::before {
    position: absolute;
    z-index: 0;
    content: '';
    background-image: url(../images/pckg-tick.webp);
    width: 100%;
    height: 100%;
    top: 0px;
    background-repeat: no-repeat;
    left: 5px;
}
.pckg .btn-wrap {
    margin: 0;
}
.pckg:hover {
    border: 1px solid #4f7efa;
}
/* packages */

/* Sec Headings */
.sec-heading {
    margin-bottom: 2rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #5F5F5F;
    margin: 1rem 0;
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #626262;
    margin-bottom: 0.5rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}

/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 0.5rem;
}
.btn-wrap .theme-btn {
    padding: 15px 10px;
    color: white;
    font-size: 18px;
    border: 2px solid #F47B52;
    transition: .5s ease;
    border-radius: 15px;
    background: linear-gradient(0deg, #F47B52 0%, #F47B52 100%), var(--G, #C9A45C);
}
.btn-wrap .theme-btn.bordered {
    background: transparent;
    color: #F47B52;
    border-radius: 15px;
    border: 2px solid #F47B52;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* footer */

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-link li:first-child {
    border-right: 1px solid #fff;
    padding-right: 20px;
}
/* footer */

/* popup */
.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);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%; */
    max-width: 1000px;
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    max-height: 90vh;
  }
  .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: 50px 40px;
    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: 60px;
  }
  .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: #FFA459;
    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%;
    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;
    text-align: center;
    color: #F47B52;
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    text-align: center;
    font-weight: 500;
    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 {
    font-weight: 700;
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
    padding: 15px 30px;
    color: white;
    font-size: 18px;
    border: 2px solid #FFA459;
    transition: .5s 
ease;
    border-radius: 15px;
    background: linear-gradient(0deg, #F47B52 0%, #F47B52 100%), var(--G, #C9A45C);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
footer {
    background: #161616;
    padding: 62px 0 10px;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding: 20px 0;
}
.copyright p,.copyright a {
    color: #B9B9B9;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 15px;
}
.footer-sec p {
    color: #fff;
    line-height: 1.5;
    font-size: 16px;
    padding-top: 33px;
}
.footer-hdng h4 {
    color: #fff;
    color: #FFF;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.f-menu li a {
    color: #B9B9B9;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}
.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 {
    background: #161616;
    display: flex;
}

/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 500;
    font-size: 52px;
    line-height: 68px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
.terms .roman {
    list-style: upper-roman;
}
.terms ul {
    padding-left: 40px;
    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: 28px;
    line-height: 30px;
    font-weight: 600;
    margin: 2rem 0 1rem;
}
.terms p {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #5F5F5F;
    margin: 1rem 0;
}
/* terms */

.btn-wrap .theme-btn span {
    padding-left: 10px;
}

.banner-form {
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 9px 24px 0 rgba(0, 0, 0, 0.07);
    margin-top: 3rem;
    padding: 30px 30px;
    width: 90%;
}

.sub-feild-input label {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 0px 5px 5px;
    line-height: 24px;
}

.sub-feild-input input {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    height: 45px;
}

.sub-feild-input {
    margin-bottom: 10px;
}

.banner-form p {
    color: #626262;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 20px;
}

.banner-form .btn-wrap .theme-btn {
    text-align: center;
    border-radius: 60px;
}

.sec-heading h3 {
    color: #F47B52;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0.6rem;
}

section.sec-1 ul li {
    color: #626262;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    z-index: 0;
    width: 90%;
    margin: 5px 0px 5px 0px;
    padding: 5px 0px 5px 40px;
}

section.sec-1 ul li:before {
    position: absolute;
    z-index: 0;
    content: '';
    background-image: url(../images/tick.webp);
    width: 100%;
    height: 100%;
    top: 5px;
    background-repeat: no-repeat;
    left: 5px;
}

section.sec-1 ul li:not(:last-child) {
  border-bottom: 1px solid #D9D9D9; 
}

.opt-sec-2-main {
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 20px 30px;
}

.opt-sec-2-main h4 {
    color: #1A1A1A;
    font-size: 26px;
    text-align: center;
    font-family: "Playfair Display";
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

.opt-sec-2-main p {
    color: #626262;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    padding-bottom: 10px;
}

.number-sec-2 {
    margin-bottom: 20px;
}

.number-sec-2 h3 {
    color: #DDD;
    text-align: center;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(26 26 26 / 30%);
    font-family: "Playfair Display";
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 70px;
}

section.sec-1 ul li span {
    color: #F47B52;
    font-weight: 600;
}

.pckg .bottom ul li span {
    color: #F47B52;
    font-weight: 600;
}   

.sec-testimonal-main {
    padding: 15px 15px;
    margin-bottom: 20px;
    border-radius: 23.875px;
    border: 0.955px solid #D9D9D9;
    background: #FFF;
    width: 20.5dvw;
}

.sec-testimonal-main p {
    color: rgb(26 26 26 / 80%);
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 24px;
}

.sec-testimonal-main h5 {
    color: #1A1A1A;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding-top: 10px;
    letter-spacing: 0.36px;
    text-transform: capitalize;
}

p.testi-small {
    font-size: 13px;
    padding-bottom: 0px;
}

.footer-main {
    text-align: center;
    margin-bottom: 25px;
}

.footer-main p {
    color: rgb(255 255 255 / 70%);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    padding: 15px 0px;
}

.sec-end {
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 30px 30px;
}

.footer-hdng {
    background: linear-gradient(90deg, #ffa4591f 0%, #fd88671f 100%), rgb(201, 164, 92, 0.12);
    padding: 40px 20px;
    border-radius: 20px;
}

.sec-end h5 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid #ffffff40;
    margin-bottom: 10px;
    padding-bottom: 6px;
    display: inline-block;
}

.extra-line {
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.main-half-2-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

section.faqs {
    padding-top: 0;
}

.mainBanner.inner-sec {
    background: rgba(244, 123, 82, 0.20);
    padding: 150px 0px 100px;
}

section.thankyou-sec {
    padding: 9rem 0 4rem;
    background: rgb(255 164 89 / 30%);
}

section.thankyou-sec .btn-wrap {
    justify-content: center;
    margin-top: 30px;
}

section.sec-1 ul {
    margin-bottom: 20px;
}

.btn-wrap .theme-btn.bordered.colored-w{
    background: #fff;
}

.heading-brand-banner {
    margin-top: 30px;
    padding: 15px 0px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
}

.heading-brand-banner h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
}

.sub-brand-banner-img {
    margin: 25px 0px;
    display: flex;
    align-items: center;
    gap: 50px;
}

span.sub-heading:before {
    position: absolute;
    z-index: 0;
    top: 45%;
    left: 0;
    background: #F47B52;
    height: 2px;
    width: 15px;
    content: '';
}

.sec-ext-1 {
    border-radius: 50px;
    border: 1px solid #D9D9D9;
    background: linear-gradient(0deg, #F9F9F9 0%, #F9F9F9 100%), #FFF;
    padding: 30px 30px;
}

.sec-bg-ext {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    padding: 20px;
    margin-bottom: 25px;
}

.sec-bg-img-ext {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    z-index: 0;
    padding: 0px 30px;
}

.sec-3-img img {
    position: relative;
    z-index: 0;
    top: -5.2vw;
}

.pckg .btn-wrap .theme-btn.bordered {
    background: #fff;
}

.pro-sub-1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pro-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

section.section-3 {
    padding-bottom: 0;
}

.design-card-list .slick-slide {
    margin: 0 10px;
}
.design-card-list {
    padding-bottom: 2rem;
}
.design-card-list li .indusrtry-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 50px;
    position: absolute;
    width: auto;
    height: 66px;
    bottom: 20px;
    z-index: 1;
    background: rgb(0 0 0 / 50%);
    border-radius: 25px;
    opacity: 0;
    transition: .5s ease;
}
.design-card-list li:hover .indusrtry-name {
    opacity: 1;
}
.indusrtry-name p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
}
.rated {
    margin-bottom: 1rem;
}
.color-dark {
    color: #212121 !important
}
.color-2 {
    color: #2D2D2D !important
}
.mt-responsive {
    margin-top: 20px;
}
.rated p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
    padding: 1rem 0;
}

.sec-bg-img-ext .btn-wrap .theme-btn.bordered {
    background: linear-gradient(0deg, rgb(244, 123, 82, 0.1) 0%, rgb(244, 123, 82, 0.1) 100%), #FFF;
}


.slick-dots {
  padding: 15px 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: 8px;
  border-radius: 100px;
  padding: 0px;
  background: rgb(79 129 100 / 50%);
  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: #F47B52;
  width: 12px;
  height: 12px;
}

section.sec-1 {
    padding-bottom: 0;
}

section#pricing {
    padding-bottom: 0;
}

p.support-para {
    border-bottom: 1px solid #62626261;
    padding-bottom: 15px;
}

.bottom h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 15px;
    padding: 0px 20px;
}

.pro-sub-1 img {
    border-radius: 15px;
}

.footer-main .logo img {
    width: 17dvw;
}

.sub-brand-banner-img img {
    width: 260px;
}