/* fonts */
@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Black.woff2') format('woff2'),
        url('../fonts/Nord-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-BoldItalic.woff2') format('woff2'),
        url('../fonts/Nord-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord Book';
    src: url('../fonts/Nord-BookItalic.woff2') format('woff2'),
        url('../fonts/Nord-BookItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-MediumItalic.woff2') format('woff2'),
        url('../fonts/Nord-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Bold.woff2') format('woff2'),
        url('../fonts/Nord-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Italic.woff2') format('woff2'),
        url('../fonts/Nord-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Light.woff2') format('woff2'),
        url('../fonts/Nord-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-LightItalic.woff2') format('woff2'),
        url('../fonts/Nord-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Thin.woff2') format('woff2'),
        url('../fonts/Nord-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-ThinItalic.woff2') format('woff2'),
        url('../fonts/Nord-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Regular.woff2') format('woff2'),
        url('../fonts/Nord-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord Book';
    src: url('../fonts/Nord-Book.woff2') format('woff2'),
        url('../fonts/Nord-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-Medium.woff2') format('woff2'),
        url('../fonts/Nord-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nord';
    src: url('../fonts/Nord-BlackItalic.woff2') format('woff2'),
        url('../fonts/Nord-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/* fonts */
/* global */

html{
    overflow-x: hidden !important;
}
body{
    font-family: 'Nord';
    background-color: #FFF5E9;
    overflow-x: hidden;
}
.btn-cst-yellow {
    background: #FF8E2A;
    border-radius: 5px;
    box-shadow: 3px 3px 1px 1px #000;
    padding: 10px 20px;
    font-weight:600;
    color:#000;
    font-size: 14px;
}
.btn-cst-white {
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 3px 3px 1px 1px #000;
    padding: 10px 20px;
    font-weight:600;
    color:#000;
    font-size: 14px;
}

/* global */


/* header */
.topgreenbar {
    width: 100%;
    height: 17px;
    background: #92baa6c9;
}
header {
    position: absolute;
    width: 100%;
}
header .navbar-nav a.nav-link {
    color: #3C3C3C;
    font-weight: bold;
    margin: 0 5px;
}
header .navbar-nav a.nav-link.active {
    color: #FF8E2A;
}

/* header */

/* banner */
section.hero-banner {
    background: url(../img/NoiseTexture.png);
    background-size: cover;
    padding: 8% 0 0 0;
}
section.hero-banner h1 {
    text-shadow: 2px 2px #92baa6;
    color: #000;
    margin-bottom: 20px;
}
section.hero-banner .subheading {
    font-size: 30px;
    font-weight: 500;
    color: #000;
}
section.hero-banner .content {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}
section.hero-banner ul.btn-list {
    padding: 0;
    list-style: none;
    display: flex;
}
section.hero-banner ul.btn-list li {
    margin-right: 30px;
}
/* banner */

/* banner form */
.banner-form .form-wrapper {
    width: 70%;
    float: right;
    border: 3px solid #ff8e2a;
    padding: 80px 40px 20px 40px;
    margin-bottom: 50px;
    margin-top: 50px;
    position: relative;
}
.banner-form .form-wrapper .input-wrapper select.form-select {
    border: 1px solid #000;
    background: transparent;
    border-radius: 0;
    margin-bottom: 10px;
}
.banner-form .form-wrapper ul.checkbox-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-form .form-wrapper ul.checkbox-list li {
    width: 50%;
}
.banner-form .form-wrapper ul.inputrow {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.banner-form .form-wrapper ul.inputrow li {
    width: 48%;
}

.banner-form .form-wrapper input.form-control {
    background: transparent;
    border: 1px solid #000;
    border-radius: 0;
}

.banner-form .form-wrapper input.form-control::placeholder {
    color: #000;
}
.banner-form .form-wrapper .btn-cst-yellow {
    width: 100%;
    margin-top: 20px;
}
.banner-form .form-wrapper .inner-wrapper .content-section h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}
.banner-form .form-wrapper:after {
    content: "";
    background: url(../img/sale-stick.png) no-repeat;
    width: 33%;
    height: 30%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-form .form-wrapper .form-check-input[type=checkbox] {
    border-radius: 0.25em;
    background: transparent;
    border-radius: 100%;
    border: 2px solid #ff8e2a;
}
/* banner form */


/* process section */
.services-we-offer-new .servicebox:hover {
    border: 2px solid #dda200;
}
.ebookjourneyleftimgabsnew {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.the-process-sec-new {
    padding: 5% 0;
}
.the-process-sec-new .content-section p.subheading {
    color: #000;
    font-size: 22px;
    font-weight: 500;
}
.portfoliowraprightimgnew {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.the-process-sec-new .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.the-process-sec-new .content-section p {
    font-size: 14px;
    line-height: 25px;
    color: #000;
}
.the-process-sec-new .content-section h6 {
    font-size: 19px;
    line-height: 51px;
    color: #000;
    font-weight: 500;
}
.the-process-sec-new .content-section li {
    font-size: 16px;
    line-height: 44px;
    color: #000;
    font-weight: 500;
}
/* process section */

/* service new sec */
.services-we-offer-new {
    padding: 5% 0;
}

.services-we-offer-new .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.services-we-offer-new .content-section p {
    font-size: 14px;
    line-height: 25px;
    color: #000;
}
.services-we-offer-new .content-section {
    width: 80%;
    margin: 0 auto 70px auto;
    display: table;
    text-align: center;
}
.services-we-offer-new .servicebox {
    border: 2px solid #000;
    padding: 30px 60px;
    position: relative;
    text-align: center;
    width: 90%;
    margin: 0 auto 100px auto;
}
.services-we-offer-new .servicebox p {
    height: 150px;
    overflow-y: scroll;
}
.services-we-offer-new .servicebox .icon-box img {
    position: absolute;
    top: -20%;
    left: -5%;
    height:100px;
    width:100px;
}
.services-we-offer-new .servicebox h5 {
    font-size: 30px;
    line-height: 62px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
/* service new sec */

/* best-selling-author-new */
.best-selling-author-new {
    padding: 0% 0 15% 0;
}
.best-selling-author-new .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.best-selling-author-new .content-section p {
    font-size: 14px;
    line-height: 25px;
    color: #000;
}
.best-selling-author-new .content-section {
    width: 80%;
    margin: 0 auto 50px auto;
    display: table;
    text-align: center;
}
.best-selling-author-new .bsabox h3.number {
    font-size: 80px;
    color: #FF8E2A;
    text-shadow: 2px 2px #92baa6;
    font-weight: 800;
}
.best-selling-author-new .bsabox p.content {
    font-size: 16px;
    line-height: 31px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 500;
}
/* best-selling-author-new */

/* trusted by */
section.trusted-by-sec {
    padding: 2% 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
section.trusted-by-sec .content-section {
    margin-bottom: 70px;
}
section.trusted-by-sec .content-section h2 {
    text-align: center;
    font-size: 35px;
    line-height: 50px;
    color: #000;
    text-shadow: 2px 2px #92baa6;
    font-weight: 500;
}
section.trusted-by-sec .content-section h2:after {
    content: '';
    height: 3px;
    width: 20%;
    background: #92BAA6;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.truested-box {
    text-align: center;
}

.truested-box img {height: 40px;margin-bottom: 30px;}

.truested-box .content {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 500;
}
/* trusted by */

/* ebook journey */
.ebookjourneyleftimgabs {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.ebookjourneyrightimgabs {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

section.ebook-journey {
    padding: 5% 0 5% 0;
}

section.ebook-journey .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
section.ebook-journey .content-section .subheading {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}
section.ebook-journey .content-section .content {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}

section.ebook-journey .content-section p {
    color: #000;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 30px;
}

section.ebook-journey .content-section .content-list {
    padding: 0;
    list-style: none;
}

section.ebook-journey .content-section .content-list li {
    font-size: 13px;
    color: #000;
    font-weight: 500;
}
section.ebook-journey .content-section span.liststylebox {
    height: 17px;
    width: 17px;
    display: inline-block;
    background: #92BAA6;
    margin-right: 15px;
}
section.ebook-journey .content-section .content-list ul.content-inner-list {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0 0 10px 0;
    align-items: center;
}
.ebook-journey .leftbooksimg {
    float: right;
}


.what-sets-us-appart{
    padding: 5% 0;
}
.what-sets-us-appart .cont-sec {
    width: 60%;
    margin: 0 auto 20px auto;
    display: table;
    text-align: center;
}
.what-sets-us-appart .cont-sec h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.what-sets-us-appart .cont-sec p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    font-weight: 500;
}

.what-sets-us-appart .wsupbox ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.what-sets-us-appart .wsupbox ul li.textbox h4 {
    font-size: 30px;
    line-height: 32px;
    text-shadow: 2px 2px #92baa6;
    font-weight: bold;
    color: #000;
}
.what-sets-us-appart .wsupbox ul li.textbox p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.what-sets-us-appart .wsupbox {
    border: 2px solid #000;
    padding: 30px 40px;
    margin-bottom: 35px;
    min-height: 210px;
}

.what-sets-us-appart .wsupbox ul li.imgbox img {
    height: 120px;
    width: 100%;
    object-fit: contain;
}

.what-sets-us-appart .wsupbox ul li.textbox h2 {
    font-size: 72px;
    font-weight: 500;
}

.what-sets-us-appart .wsupbox ul li.textbox h5 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}
/* ebook journey */


/* team-up-sec */

section.team-up-sec {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 3% 0;
    background: #fff5e9;
    position: relative;
}

section.team-up-sec .ctaimgabs {
    position: absolute;
    right: 0;
    top: -28%;
}

section.team-up-sec .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}

section.team-up-sec .content-section p {
    color: #000;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

section.team-up-sec .content-section ul.btn-list {
    padding: 0;
    list-style: none;
    display: flex;
}
section.team-up-sec .content-section ul li{
    margin-right: 20px;
}
/* team-up-sec */

/* portfolio section */
section.our-portfolio-parent-sec .portfolio-sec {
    padding: 3% 0;
}

section.our-portfolio-parent-sec .portfolio-sec .content-sec{
    margin: 0 auto;
    display: table;
    text-align: center;
    width: 80%;
}
section.our-portfolio-parent-sec .portfolio-sec .content-sec h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
section.our-portfolio-parent-sec .portfolio-sec .content-sec .subheading {
    font-size: 22px;
    font-weight: 500;
    color: #000;
    margin: 0;
}
section.our-portfolio-parent-sec .portfolio-sec .content-sec .content {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}
section.our-portfolio-parent-sec .portfolio-sec .nav-tabs {
    justify-content: space-between;
    border: none;
    margin-bottom: 50px;
}

section.our-portfolio-parent-sec .portfolio-sec .nav-tabs .nav-link {
    color: #000;
    border: none;
    position: relative;
    width: 200px;
    height: 70px;
    background: url(../img/inactivetab.png);
}
section.our-portfolio-parent-sec .portfolio-sec .nav-tabs .nav-link.active {
    width: 162px;
    height: 70px;
    background: url(../img/activetab.png);
}
section.our-portfolio-parent-sec .portfolio-sec .tab-content {
    padding: 10% 0 10% 7%;
}

.portfoliowrapleftimg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.portfoliowrapleftimg2 {
    position: absolute;
    left: 0;
    top: -10%;
    z-index: -1;
}
.portfoliowraprightimg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}
section.our-portfolio-parent-sec .portfolio-sec .tab-content .tab-pane {
    position: relative;
}

section.our-portfolio-parent-sec .portfolio-sec .tab-content .tab-pane .content-box h2{
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
section.our-portfolio-parent-sec .portfolio-sec .tab-content .tab-pane .content-box p{
    color: #000;
    font-size: 16px;
    line-height: 42px;
    margin-bottom: 30px;
}
.best-selling-author .content-section{
    margin: 0 auto 50px auto;
    display: table;
    text-align: center;
    width: 80%;
}
.best-selling-author .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.best-selling-author .content-section p {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}
.best-selling-author .bsabox h3.number {
    font-size: 80px;
    color: #FF8E2A;
    text-shadow: 2px 2px #92baa6;
    font-weight: 800;
}
.best-selling-author .bsabox p.content {
    font-size: 13px;
    line-height: 20px;
    color: #000;
    margin-bottom: 40px;
    font-weight: 500;
}
.bsabox.center-box {
    transform: translate(0px, 100px);
}

.services-we-offer {
    padding: 10% 0 10% 0;
}

.services-we-offer .content-section{
    margin: 0 auto 50px auto;
    display: table;
    text-align: center;
    width: 80%;
}
.services-we-offer .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.services-we-offer .content-section p {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}

.services-we-offer .servicebox {
    border: 2px solid #000;
    padding: 30px 30px;
    position: relative;
    text-align: center;
    min-height: 370px;
    transition: .6s;
}
.services-we-offer .servicebox:hover{transform: translateY(-30px);border-color:#FF8E2A }
.services-we-offer .servicebox .icon-box img {
    position: absolute;
    top: -10%;
    left: -5%;
}
.services-we-offer .servicebox h5 {
    font-size: 30px;
    line-height: 62px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.services-we-offer .servicebox p {
    font-size: 12px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
}
/* portfolio section */


/* cta section */
section.discount-cta.position-relative {
    padding: 3% 0;
    background: #fff5e9;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.discount-cta .ctatwoabs1 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.discount-cta .ctatwoabs2 {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.discount-cta .content-section ul.btn-list {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.discount-cta .content-section ul li{
    margin-right: 20px;
}
.discount-cta .content-section p.subheading {
    background: #000;
    color: #fff;
    width: auto;
    margin: 0 auto 40px auto;
    display: table;
    padding: 15px 30px;
    border-radius: 10px;
}
.discount-cta .content-section h5 {
    font-size: 31px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
    text-align: center;
}
/* cta section */

/* faqs */
.faqsrightabsimg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.faqs-main-wrapper{
    position: relative;
}
.faqs-main-wrapper .faq-sec{
    padding:5% 0;
}
.faqs-main-wrapper .faq-sec .content-section{
    margin: 0 auto 50px auto;
    text-align: center;
}
.faqs-main-wrapper .faq-sec .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.faqs-main-wrapper .faq-sec .content-section p {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}

section.faqs-main-wrapper .faq-sec .accordion .accordion-item button {
    background: #FFE5C0;
    border: 2px solid #000;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
    padding: 30px 20px;
}

section.faqs-main-wrapper .faq-sec .accordion .accordion-item {
    margin-bottom: 20px;
    border: none;
    background: transparent;
}
section.faqs-main-wrapper .faq-sec .accordion {
    padding: 0 200px 0 0px;
}
section.faqs-main-wrapper .faq-sec .form-wrapper a.btn.btn-cst-yellow {
    width: 100%;
}
section.faqs-main-wrapper .faq-sec .form-wrapper input.form-control,
section.faqs-main-wrapper .faq-sec .form-wrapper textarea,
section.faqs-main-wrapper .faq-sec .form-wrapper .form-select {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #000000;
    background-color: transparent;
}
section.faqs-main-wrapper .faq-sec .form-wrapper .input-wrapper-cst {
    margin-bottom: 30px;
}
section.faqs-main-wrapper .faq-sec .form-wrapper {
    padding: 0 20px;
}

section.faqs-main-wrapper .faq-sec .form-wrapper .form-wrapper-inner {
    background: #fff;
    padding: 30px 20px;
    border: 2px dashed #000;
}
section.faqs-main-wrapper .faq-sec .form-wrapper .form-wrapper-inner h4 {
    font-size: 24px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
    text-align: center;
    margin-bottom: 30px;
}
section.faqs-main-wrapper .faq-sec .form-wrapper .input-wrapper-cst label.form-check-label {
    font-size: 13px;
}


.clients-review .content-section{
    margin: 0 auto 50px auto;
    text-align: center;
}
.clients-review .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
.clients-review .content-section p {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}
.clients-review .client-content-wrapper {
    width: 80%;
    margin: 100px auto 0 auto;
    border: 2px solid #000;
    padding: 70px 80px;
    text-align: center;
    position: relative;
    background: #fff5e9;
}
.clients-review .nav-tabs .nav-link {
    background: transparent;
    border: none;
}
.clients-review .nav-tabs .nav-link.active img {
    border: 5px solid #ff8e2a;
    border-radius: 100%;
}
.client-img-carousel .owl-nav {
    display: block !important;
    background: transparent;
    position: relative;
    top: -50%;
}

.client-img-carousel .owl-nav button.owl-prev {
    background: transparent !important;
    font-size: 40px  !important;
    font-family: monospace  !important;
    height: 60px  !important;
    width: 60px  !important;
    border-radius: 100%;
    position: absolute;
    left: -5%;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #dda200 !important;
    color: #dda200 !important;
}
.client-img-carousel .owl-nav button.owl-next {
    background: transparent !important;
    font-size: 40px !important;
    font-family: monospace !important;
    height: 60px !important;
    width: 60px !important;
    border-radius: 100%;
    position: absolute;
    right: -5%;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #dda200 !important;
    color: #dda200 !important;
}
.client-img-carousel .item {
    margin: 0 auto;
    display: table;
}
.client-content-wrapper-content .testimonialsquotes2 {
    position: absolute;
    left: 5%;
    top: 5%;
}

.client-content-wrapper-content .testimonialsquotes1 {
    position: absolute;
    right: 5%;
    bottom: 30%;
}
.clients-review .nav-tabs {
    border: none;
    padding: 0 150px;
}
.clients-review .client-content-wrapper p.content {
    font-size: 14px;
    line-height: 25px;
    color: #000;
}

.clients-review .client-content-wrapper h5.clientname {
    color: #000;
    font-size: 28px;
    font-weight: 500;
}
.clients-review .client-content-wrapper p.clientposition {
    color: #C99200;
    font-size: 16px;
}
.clients-review {
    padding: 3% 0 8% 0;
}

.clients-review .clientcontentabsimg {
    position: absolute;
    z-index: -1;
    left: 0;
}
/* faqs */

/* form section */
.form-section .form-wrapper .checkbox-list ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    width: 100%;
    flex-flow: wrap;
}

.form-section .form-wrapper .checkbox-list ul li {
    width: 25%;
}

.checkbox-list ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    width: 100%;
    flex-flow: wrap;
}

.checkbox-list ul li {
    width: 25%;
}

section.form-section {
    padding: 5% 0;
    background: #fff5e9;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    position: relative;
}

section.form-section .formsecabsimg {
    position: absolute;
    right: 0;
    bottom: 0;
}

section.form-section .content-section{
    margin: 0 auto 50px auto;
}
section.form-section .content-section h2 {
    font-size: 42px;
    line-height: 51px;
    font-weight: 500;
    color: #000;
    text-shadow: 2px 2px #92baa6;
}
section.form-section .content-section p {
    font-size: 16px;
    line-height: 31px;
    font-weight: 500;
    color: #000;
}
section.form-section .form-wrapper .checkbox-list li {
    margin-bottom: 20px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}
section.form-section .form-wrapper .checkbox-list li {
    margin-bottom: 20px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

section.form-section .form-wrapper input.form-control, section.form-section .form-wrapper textarea {
    background: transparent;
    border: 2px solid #000;
    border-radius: 0;
    margin-bottom: 30px;
    padding: 15px 20px;
    border-radius: 5px;
}

section.form-section .form-wrapper input.form-control::placeholder, section.form-section .form-wrapper textarea::placeholder {
    color: #000;
}
/* form section */

/* footer */
footer.mainfooter {
    background: url(../img/NoiseTexture.png);
    background-color: #fff5e9;
    padding: 3% 0 0 0;
    position: relative;
}

.mainfooter .social-list {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 0;
    justify-content: space-between;
}

.mainfooter .social-list li.social-box {
    text-align: -webkit-center;
}

.mainfooter .social-list li.social-box img {
    display: block;
}
.mainfooter .footer-menu h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 20px;
}
.mainfooter .footer-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
}
.mainfooter .footer-menu ul li a {
    color: #424242;
    text-decoration: none;
    font-size: 15px;
    line-height: 21px;
}
.mainfooter .bottom-menu ul {
    padding: 30px 0 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.mainfooter .bottom-menu ul li {
    margin: 0 0 0 40px;
}

.mainfooter .bottom-menu ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
}
.mainfooter .footer-right-content {
    text-align: center;
}

.mainfooter .footer-right-content h3 {
    color: #B35600;
    font-size: 24px;
    line-height: 31px;
    font-weight: bold;
}
.mainfooter .footer-right-content .btn-cst-yellow {
    margin: 20px auto 40px auto;
    width: 50%;
    display: table;
}
.mainfooter .footer-right-content p.payment-text-fotoer {
    font-size: 18px;
    line-height: 31px;
    font-weight: bold;
    margin: 20px 0;
    color: #ED0742;
}

.mainfooter .footer-right-content p.payment-text-fotoer span {
    color: #312A92;
}

.mainfooter .bottom-bar {
    background: #B35600;
    padding: 10px 0;
}
.mainfooter .bottom-bar p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

.mainfooter .bottom-bar ul.bottom-bar-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    float: inline-end;
}

.mainfooter .bottom-bar ul.bottom-bar-menu a {text-decoration: none;color: #fff;font-size: 14px;}
.mainfooter .bottom-bar ul.bottom-bar-menu li {
    margin: 0 0 0 20px;
}

.footer-badges {
    padding: 5% 0;
}

.footer-badges img {
    margin: 0 auto;
    display: table;
}

.footerabsimg1 {
    position: absolute;
    top: 0;
    left: 0;
}

.footerabsimg2 {
    position: absolute;
    bottom: 5%;
    right: 0;
}
.cstfooterpadding {
    padding: 0 2%;
}
/* footer */


header a.navbar-brand {
    width: 17%;
}

header a.navbar-brand img.img-fluid {
    width: 100%;
}




.contactushero ul.btn-list {
    justify-content: center;
}

div#popupModal .modal-content {
    background: #1c1c1c;
    border-radius: 8px;
    border: 2px solid #ff8e2a;
}
div#popupModal .modal-content h3 {
    color: #fff;
}
div#popupModal .modal-content .dtf {
    margin-bottom: 20px;
}

div#popupModal .modal-content .dtf input {
    color: #000;
}
div#popupModal .modal-content button.btn-close {
    position: absolute;
    color: #ffffff;
    background: #ff8e2a;
    z-index: 9999;
    opacity: 1;
    padding: 5px;
    margin: 0;
    line-height: 0;
    right: 5px;
    border-radius: 10px;
    top: 5px;
    font-size: 25px;
}
div#popupModal .modal-content .dtf input.submit {
    width: 100%;
    background: #ff8e2a;
    border: none;
    padding: 10px;
    border-radius: 10px;
    color:#fff;
}
div#popupModal .modal-content .mypopup-innerwrap {
    padding: 50px 0 0;
}











.termspage{padding: 70px 0;}
.termspage .about-the-policy{
    padding: 20px 0 0;
}
.termspage .about-the-policy h2{
    font-size: 22px;
    color: #000;
}
.termspage .about-the-policy p{font-size: 14px;}
.termspage .about-the-policy ul li{font-weight: 500}
.termspage .about-the-policy a{text-decoration: none;}


.thnkkpgg .contactushero{padding: 10% 0 3%;border-bottom: 1px solid #ff8e2a;}



/* media query */
@media screen and (max-width: 1600px) {
    .container-cst { padding: 0 10%; }
    .ebookjourneyleftimgabs { position: absolute; z-index: -1; top: 0; left: 0; height: 39%; width: 48%; }
    section.ebook-journey .content-section { padding-right: 5%; }
    section.ebook-journey .content-section p { font-size: 14px; }
    section.ebook-journey .content-section .content-list li { font-size: 14px; }
    section.ebook-journey .content-section .content-list ul.content-inner-list { margin: 0 0 15px 0; }
    .what-sets-us-appart .wsupbox { min-height: 230px; }
    section.team-up-sec .ctaimgabs { top: -36%; }
    section.our-portfolio-parent-sec .portfolio-sec .nav-tabs { justify-content: center; }
    section.our-portfolio-parent-sec .portfolio-sec .tab-content { padding: 10% 0 10% 10%; }
    .services-we-offer .servicebox h5 { font-size: 20px;}
    .cstfooterpadding { padding: 0 12%; }
    .mainfooter .footer-menu h5 { font-size: 14px; }
    .mainfooter .footer-menu ul li a { font-size: 12px; }
    .footerabsimg1 { width: 19%; }
    .footerabsimg2 { width: 20%; }
    section.faqs-main-wrapper .faq-sec .accordion { padding: 0 100px 0 0px; }
    .banner-form .form-wrapper ul.checkbox-list li .form-check label { font-size: 12px; font-weight: 500; }
    .ebookjourneyleftimgabsnew { position: absolute; left: 0; top: 0; z-index: -1; width: 20%; height: 80%; }
    .our-portfolio-parent-sec-new .portfoliowraprightimgnew { position: absolute; right: 0; top: 0; z-index: -1; width: 30%; height: 20%; }
    .services-we-offer-new .servicebox h5 { font-size: 24px; }
    .services-we-offer-new .servicebox .icon-box img { top: -10%; }
    .services-we-offer-new .content-section { margin: 0 auto 100px auto; }
    .best-selling-author .content-section { margin: 0 auto 0px auto; }
    .best-selling-author .bsabox p.content { font-size: 12px; }
    .services-we-offer .servicebox { padding: 5px 15px; min-height: 360px; }
    section.our-portfolio-parent-sec .portfolio-sec .content-sec .content { font-size: 13px; line-height: 25px; }
    .best-selling-author .content-section p { font-size: 13px; line-height: 25px; }
    .services-we-offer .content-section p { font-size: 13px; line-height: 25px; }
    .mainfooter .bottom-menu ul { margin-top: 40px; }
    header .navbar-nav a.nav-link { font-size: 14px; }
    .dropdown-item{font-size: 14px;}
    .services-we-offer-new .servicebox {margin-bottom:0px;}
    .best-selling-author-new .content-section {margin-bottom:0px;}
    .best-selling-author-new .bsabox p.content { font-size: 13px; line-height: 25px; }
    
}
@media screen and (max-width: 1536px) {
    section.ebook-journey .content-section p{margin-bottom:10px;}
    section.ebook-journey .content-section h2 { font-size: 36px; }
     .services-we-offer .servicebox { padding: 35px 15px 10px 15px; min-height: 420px; }
    .discount-cta .content-section h5 { font-size: 24px; }
        section.team-up-sec .ctaimgabs { top: -10%; }
}

@media screen and (max-width: 1499px) {
    section.form-section .formsecabsimg { width: 25%; }
    header .navbar-nav a.nav-link { margin: 0 6px; font-size: 14px; padding: 0 !important; }
    section.team-up-sec .ctaimgabs { top: -10%; }
    .dropdown-item{font-size: 14px;}

}
@media screen and (max-width: 1399px) {
    .container-cst { padding: 0 5%; }
    section.team-up-sec .ctaimgabs { top: -12%; }
    .discount-cta .ctatwoabs1{width: 30%;}
    .discount-cta .ctatwoabs2{width: 30%;}
    section.faqs-main-wrapper .faq-sec .accordion { padding: 0 0px 0 0px; }
    section.our-portfolio-parent-sec .portfolio-sec .tab-content .tab-pane .content-box p { font-size: 14px; line-height: 32px;}
    .portfoliowraprightimg { width: 50%; }
    .ebookjourneyleftimgabsnew { width: 20%; height: 70%; }
    .the-process-sec-new { padding: 6% 0; }
    .client-img-carousel .owl-nav button.owl-prev {left:-8%;}
    .client-img-carousel .owl-nav button.owl-next {right:-8%;}
    .dropdown-item{font-size: 14px;}

}
@media screen and (max-width: 1199px) {
    .container-cst { padding: 0 0; }
    section.hero-banner { padding: 10% 0 0 0; }
    section.hero-banner h1 { font-size: 22px; }
    header .navbar-nav a.nav-link {font-size: 11px;}
    section.hero-banner .content { font-size: 13px; }
    .btn-cst-white{ font-size: 12px; }
    .btn-cst-yellow{ font-size: 12px; }
    section.hero-banner .subheading { font-size: 20px; }
    section.ebook-journey .content-section .subheading { font-size: 16px; margin: 0; }
    section.ebook-journey .content-section h2 { font-size: 28px; line-height: 36px; }
    section.ebook-journey .content-section p { font-size: 12px; line-height: 19px; }
    section.ebook-journey .content-section .content-list ul.content-inner-list { margin: 0 0 5px 0; }
    section.ebook-journey .content-section .content-list li { font-size: 12px; }
    .ebookjourneyleftimgabs { height: 34%; }
    .what-sets-us-appart .wsupbox ul li.textbox h4 { font-size: 20px; line-height: 22px; }
    .what-sets-us-appart .wsupbox ul li.textbox p { font-size: 12px; line-height: 16px; }
    .what-sets-us-appart .wsupbox ul li.textbox h2 { font-size: 42px; font-weight: 500; }
    .what-sets-us-appart .wsupbox { min-height: 200px; }
    section.team-up-sec .ctaimgabs { top: -18%; }
    .discount-cta .content-section h5 { font-size: 24px; }
    .services-we-offer .servicebox { padding: 30px 10px; }
    .btn-cst-yellow { font-size: 10px; }
    .btn-cst-white { font-size: 10px; }
    section.form-section .form-wrapper .checkbox-list li { font-size: 12px;}
    .cstfooterpadding { padding: 0 8%; }
    .services-we-offer-new .servicebox h5 { font-size: 20px; }
    .services-we-offer-new .servicebox { width: 100%; }
    section.team-up-sec { margin-top: 120px; }
    .banner-form .form-wrapper { width: 100%; }
    .dropdown-item{font-size: 11px;}

    
}
@media screen and (max-width: 1024px) {
    section.team-up-sec .ctaimgabs { top: -12%; width: 40%; }
    .services-we-offer { padding: 15% 0 10% 0; }
    .footerabsimg1 { display: none; }
    .footerabsimg2 { display: none; }
    .ebookjourneyleftimgabs { display: none; }
    .ebookjourneyrightimgabs { display: none; }
    .portfoliowrapleftimg { display: none; }
    .portfoliowrapleftimg2 { display: none; }
    .faqsrightabsimg { display: none; }
    .clients-review .clientcontentabsimg { display: none; }
    .banner-form .form-wrapper { width: 100%; }
    .ebookjourneyleftimgabsnew {display: none;}
    .our-portfolio-parent-sec-new .portfoliowraprightimgnew {display: none;}
    .the-process-sec-new .content-section h2 { font-size: 22px; line-height: 31px;}
    .services-we-offer-new .servicebox .icon-box img { top: -20%; }
    section.team-up-sec { margin-top: 0px; }
    .services-we-offer-new .servicebox { margin-bottom: 100px; }
    .dropdown-item{font-size: 11px;}
}
@media screen and (max-width: 992px) {
        section.team-up-sec .ctaimgabs { top: auto; width: 30%; bottom: 0; }
        .services-we-offer .servicebox { padding: 35px 15px 10px 15px; min-height: 520px; margin-bottom: 50px; }
}
@media screen and (max-width: 991px) {
    header nav .btn-container-header { display: none; }
    section.hero-banner { padding: 20% 0 0 0; }
    header nav .navbar-collapse { background: #3a3a3a; padding: 10px 20px; border-radius: 10px; z-index:999;}
    header .navbar-nav a.nav-link { color:#fff;  margin: 10px 0;}
    header .navbar-toggler { border: 2px solid #000; }
    header .navbar-toggler span.navbar-toggler-icon { line-height: 30px; }
    section.hero-banner ul.btn-list li { margin-right: 10px; }
    .what-sets-us-appart .cont-sec { width: 100%; }
    .what-sets-us-appart .cont-sec p { font-size: 12px; line-height: 18px; }
    section.team-up-sec .content-section h2 { font-size: 32px; line-height: 38px; }
    section.team-up-sec .ctaimgabs { top: -5%; width: 37%; }
    .best-selling-author .content-section h2 { font-size: 32px; line-height: 38px; }
    .best-selling-author .content-section p { font-size: 12px; line-height: 18px; }
    .services-we-offer .content-section h2 { font-size: 32px; line-height: 38px; }
    .services-we-offer .content-section p { font-size: 12px; line-height: 18px; }
    .services-we-offer .servicebox h5 { font-size: 14px; font-weight: bold; }
    .services-we-offer .servicebox p { font-size: 12px; line-height: 19px; }
    .faqs-main-wrapper .faq-sec .content-section h2 { font-size: 32px; line-height: 38px; }
    .faqs-main-wrapper .faq-sec .content-section p { font-size: 12px; line-height: 18px; }
    section.faqs-main-wrapper .faq-sec .form-wrapper{padding: 0 0;}
    section.faqs-main-wrapper .faq-sec .form-wrapper .input-wrapper-cst label.form-check-label { font-size: 10px; }
    section.faqs-main-wrapper .faq-sec .form-wrapper .form-wrapper-inner { padding: 10px 10px; }
    .cstfooterpadding { padding: 0 0%; }
    .mainfooter .bottom-bar p { font-size: 13px; }
    .mainfooter .bottom-bar ul.bottom-bar-menu a { font-size: 13px; }
    section.hero-banner .content { font-size: 12px; line-height: 18px; }
    section.hero-banner { padding: 13% 0 0 0; }
    header .navbar-nav .dropdown-item {font-size:12px;}
    .dropdown-menu3 { position: relative; right: 0; top: 0; width: 90%; margin: 0 auto; background: #ddd; }
    .truested-box .content { font-size: 10px; line-height: 20px; }
    .best-selling-author-new .bsabox p.content { font-size: 13px; line-height: 25px; }
    .client-img-carousel .owl-nav button.owl-prev { left: -15%; }
    .client-img-carousel .owl-nav button.owl-next { right: -15%; }
    .services-we-offer-new .servicebox .icon-box img { top: -25%; }
    .services-we-offer-new .servicebox h5 { font-size: 20px; line-height: normal; }
    .services-we-offer-new .servicebox {margin-bottom:50px;}
    div#popupModal .modal-content .mypopup-innerwrap{padding: 50px 0 0;}
}
@media screen and (max-width: 767px) {
    section.team-up-sec .ctaimgabs {display: none;}
    .portfoliowraprightimg {display: none;}
    .bsabox.center-box { transform: translate(0px, 0px); }
    section.our-portfolio-parent-sec .portfolio-sec .content-box { margin-bottom: 50px; }
    .discount-cta .ctatwoabs1 {display: none;}
    .discount-cta .ctatwoabs2 {display: none;}
    section.form-section .formsecabsimg {display: none;}
    .clients-review .nav-tabs { border: none; padding: 0 0px; }
    .clients-review .client-content-wrapper p.content { font-size: 12px; line-height: 15px;}
    .mainfooter .footer-menu ul { margin: 0 0 30px 0; column-count: 2; }
    .mainfooter .bottom-menu ul { float: none; place-content: center; }
    .footer-badges img { margin: 10px auto; display: table; }
    .mainfooter .bottom-bar ul.bottom-bar-menu { float: none; justify-content: center; }
    .mainfooter .bottom-bar { text-align: center; }
    .services-we-offer-new .content-section h2 { font-size: 22px; }
    section.ebook-journey .content-section h2 { font-size: 18px; line-height: 36px; }
    .services-we-offer .servicebox { min-height: auto;}
    .clients-review .client-content-wrapper h5.clientname { font-size: 18px; }
    header .navbar-nav a.nav-link { font-size: 12px; margin: 10px 0; }
 
}
@media screen and (max-width: 575px) {
    .container-cst { padding: 0 5%; }
    .cstfooterpadding { padding: 0 5%; }
    section.hero-banner { padding: 30% 0 0 0; }
    .client-img-carousel .owl-nav button.owl-prev{left: 0;}
    .client-img-carousel .owl-nav button.owl-next{right: 0;}
    header a.navbar-brand { width: 40%; }
    .banner-form .form-wrapper{padding: 70px 20px 20px 20px}
    .banner-form .form-wrapper .input-wrapper select.form-select{font-size: 12px;}
    .banner-form .form-wrapper input.form-control{font-size: 12px;}
    .truested-box img{height: 25px;}
}
@media screen and (max-width: 425px) {
    section.hero-banner { padding: 40% 0 0 0; }
    section.trusted-by-sec .content-section h2 { font-size: 20px; }
    .what-sets-us-appart .cont-sec h2 { font-size: 20px; }
    section.team-up-sec .content-section h2 { font-size: 20px; }
    section.our-portfolio-parent-sec .portfolio-sec .content-sec h2 { font-size: 20px; line-height: 20px; }
    section.our-portfolio-parent-sec .portfolio-sec .content-sec .content { font-size: 12px; line-height: 15px;}
    .best-selling-author .content-section h2 { font-size: 20px; }
    .faqs-main-wrapper .faq-sec .content-section h2 { font-size: 20px; }
    .clients-review .content-section h2 { font-size: 20px; }
    section.form-section .content-section h2 { font-size: 20px; line-height: normal; }
    .form-section .form-wrapper .checkbox-list ul li { width: 50%; }
    .clients-review .client-content-wrapper { width: 100%; }
    .mainfooter .social-list { justify-content: space-between; flex-wrap: wrap; }
    .what-sets-us-appart .wsupbox ul { display: block; text-align: -webkit-center; }
    .what-sets-us-appart .wsupbox ul li.imgbox img { margin-top: 20px; }
    .mainfooter .bottom-menu ul li { margin: 0 0 0 10px; }
    .discount-cta .content-section ul.btn-list {display:block;}
    .discount-cta .content-section ul.btn-list li {margin-bottom:20px; text-align: center;}
    .best-selling-author-new .content-section h2 { font-size: 22px; line-height: 31px;}
}
@media screen and (max-width: 320px) {
    section.hero-banner { padding: 50% 0 0 0; }
    section.hero-banner ul.btn-list { display: block; }
    section.hero-banner ul.btn-list li { margin-bottom: 20px; }
    section.team-up-sec .content-section ul.btn-list { display: block;}
    section.team-up-sec .content-section ul li { margin-bottom: 20px; }
    .services-we-offer .servicebox .icon-box img {top: -15%; left: -5%; }
    .clients-review .client-content-wrapper { padding: 70px 10px; }
    .client-content-wrapper-content .testimonialsquotes1 {display: none;}
    .client-content-wrapper-content .testimonialsquotes2 {display: none;}
}
/* media query */




/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #FF8E2A; 
}











/*Porfolio Section Begin*/
section.our__portfolio__sec.padding__120 {
    padding-top: 60px;
}
p.para {
    text-align: center;
    padding: 10px 13%;
}
.heading__center h6 { color: #f69b1c; font-size: 24px; font-weight: 500; }
.heading__center h2 {font-size: 40px;font-weight: 700;text-transform: uppercase;text-align: center; }
.Portfolio__Tb__LiSt ul li {margin: 0; display: block; width: 100%; }

/*.Portfolio__Tb__LiSt ul li a {display: inline-block; font-size: 21px; padding: 16px 20px 12px 0; letter-spacing: -0.56px; color: #f09e2e; font-weight: 500; background: #093732; border: 2px solid transparent !important; margin-bottom: 14px !important; }*/
.Portfolio__Tb__LiSt ul {width: auto; border: 0; }
.Portfolio__Tb__LiSt ul li a:hover {border-bottom: 2px solid #FF8E2A !important;transform: scale(1.1);color:#FF8E2A !important;border-color:unset; }
.Portfolio__Tb__LiSt ul li a.active {font-weight: 500; color:#FF8E2A !important; background:unset !important;transform: scale(1.1);}
/*.Portfolio__Tb__LiSt ul li {margin: 0; display: block; width: 100%; }*/
.Portfolio__Tb__LiSt ul li a {display: inline-block; font-size: 18px; padding: 16px 20px 12px 0; letter-spacing: -0.56px; color: #000;
    text-shadow: 2px 2px #92baa6; font-weight: 500;border-bottom: 2px solid #FF8E2A !important;  margin-bottom: 14px !important; transition: 0.5s ease-in-out; }
.Portfolio__Tb__LiSt ul {width: auto; border: 0; }
.Portfolio__Tb__LiSt ul li a:hover {border-bottom: 2px solid var(--primary_color) !important; }
.Portfolio__Tb__LiSt ul li a.active {font-weight: 500; border-bottom: 2px solid #FF8E2A !important; }
.portfolio__img img {width: 100%; border-radius: 15px; box-shadow: 0px 0px 14px rgb(0 0 0 / 17%); height: 370px !important; object-fit: fill; }
.portfolio__img {margin-bottom: 30px; }
.portfolio__content span {font-size: 24px; font-weight: bold; color: var(--text_xolor); margin-bottom: 13px; display: inline-block; }
.portfolio__content p {letter-spacing: -0.4px; font-size: 20px; font-weight: 300; }
.portfolio__sec__Main {margin-bottom: 40px; height: 370px; overflow: hidden; border-radius: 10px; box-shadow: 0px 0px 17px rgb(0 0 0 / 17%); transition: 0.5s ease-in-out; }
.portfolio__sec__Main:hover {transform: scale(1.1); transition: 0.5s ease-in-out; }
.Portfolio__Tb__LiSt {position: sticky; top: 20px; }

@media (max-width: 768px){

.our__portfolio__sec .col-sm-3 {max-width: 100%; flex: 100%; }
.our__portfolio__sec .col-sm-9 {max-width: 100%; flex: 100%; }
.Portfolio__Tb__LiSt ul li {display: inline-block; width: auto; padding: 10px 10px; }
.Portfolio__Tb__LiSt ul li a {font-size: 15px; padding: 10px 14px; background: #3f3e3e !important; color: #f7bb42 !important; border-radius: 10px !important; border: 0 !important; margin-bottom: 0; }
.Portfolio__Tb__LiSt {position: unset; top: 0; text-align: center; }
.Portfolio__Tb__LiSt ul {width: auto; border: 0; justify-content: center; margin-bottom: 20px; }
.Portfolio__Tb__LiSt ul li {display: inline-block; width: auto; padding: 7px 9px; margin-bottom: 0 !important; }
.Portfolio__Tb__LiSt ul li a.active {background: #f7bb42 !important; border: 0 !important; font-weight: 500; color: #000 !important; }
.our__portfolio__sec .pt-5 {padding: 15px 0 !important;} }
/*Porfolio Section End*/
