@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}
.blog-bottom-main p a {
    color: #fdc228;
}
section.blog {
    padding-top: 32px;
}
a,
button,
input {
    transition: 0.5s;
    outline: none !important;
}

img {
    max-width: 100%;
}

.font-2 {
    font-family: 'Aguafina Script', cursive;
}

.an-banner .row {
    min-height: 820px;
    justify-content: space-between;
    padding-top: 250px;
    overflow: hidden;

}

.an-banner {
    position: relative;
    background-image: url(../images/banner-green.webp);
    background-size: cover;
    background-position: top;

}

.an-header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 11;
    padding: 20px 0px;
}

.an-custom-container {
    max-width: 1700px;
    margin: auto;
}

.an-header .navbar .navbar-nav li a {
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}

.an-header .navbar .navbar-nav {
    justify-content: flex-end;
    flex: 1;
    margin-top: 25px;
}

ul {
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
}

.an-top-nav {
    position: absolute;
    right: 260px;
    top: 30px;
}
.an-top-nav1 {
    position: absolute;
    right: 260px;
    top: 30px;
}
ul.an-top-nav1 li a span {
    color: #CF9B46;
}
ul.an-top-nav1 {
    display: flex;
    align-items: center;
}
ul.an-top-nav1 li a {
    color: #fff;
}
.an-primary-btn {
    padding: 15px 25px;
    font-size: 22px;
    display: inline-block;
    border: 2px solid;
    border-radius: 5px;
    margin: 5px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

a {
    text-decoration: none !important;
}

.an-header .navbar .navbar-nav li a:hover,
.an-header .navbar .navbar-nav li.active a.nav-link,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #CF9B46 !important;
}

.an-primary-btn.yellow {
    background: #CF9B46;
    color: #fff;
    border-color: #CF9B46;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px hsl(0deg 0% 0% / 42%);
}
a.an-primary-btn.yellow:hover {
    color: #000;
}
.an-primary-btn::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    top: 0px;
    left: 0px;
    background: white;
    z-index: -1;
    transition: 0.5s;
    color: #000;
}

.an-primary-btn:hover:before,
.an-primary-btn:hover:after {
    width: 100%;
    height: 100%;
    color: #000;
}

.an-primary-btn::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 0%;
    bottom: 0px;
    right: 0px;
    background: white;
    z-index: -1;
    color: #000;
    transition: 0.5s;
}

.an-header .an-primary-btn {
    font-size: 18px;
}

.an-top-nav li {
    display: inline-block;
    color: white;
    font-size: 18px;
}

.an-top-nav li a {
    color: white;
    padding: 0px 10px;
}

.an-top-nav li a span {
    color: #CF9B46;
}

.an-top-nav li a:hover {
    color: #CF9B46;
}

.an-header .an-primary-btn {
    font-size: 16px;
}

.an-banner h4 {
    font-size: 18px;
    color: white;
    background: #CF9B46;
    display: none !important;
    padding: 10px 5px;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-right: 20px;
    text-transform: capitalize;
}

.an-banner h4::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 100%;
    margin-right: 10px;
    top: -3px;
    position: relative;
}

.an-banner h1 {
    font-size: 35px;
}

.an-banner {
    color: white;
    overflow: hidden;
}

.an-banner p {
    font-size: 25px;
    color: #fff;
    margin-bottom: 20px;
}

.an-primary-btn.outline {
    color: white;
    border-color: white;
}

.an-primary-btn.outline::before,
.an-primary-btn.outline::after {
    background: #CF9B46;
}

.an-primary-btn.outline:hover {
    border-color: #CF9B46;
    color: black;
}

.banner-img {
    position: absolute;
    bottom: 0px;
    max-width: 30%;
    right: 8%;
    z-index: 1;
}

.an-banner-bottom {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.an-banner-bottom p {
    font-size: 24px;
    width: 80%;
    margin-bottom: 0px;
}

.an-banner-bottom::before {
    content: "";
    width: 65%;
    background: #CF9B46bf;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    z-index: -1;
}

.an-banner-bottom p span {
    color: #CF9B46;
}



.nav-item.dropdown:hover .dropdown-menu {
    animation: dropdown 0.5s linear;
    display: block;
    opacity: 1;
    transform: translateY(0px);
}

@keyframes dropdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.dropdown-menu {
    background: #000;
}

.an-header .navbar .navbar-nav li .dropdown-menu a {
    font-size: 14px;
    white-space: pre-wrap;
    border-bottom: 1px solid #CF9B46;
}

.an-header .navbar .navbar-nav li .dropdown-menu {
    width: 250px;
    padding-bottom: 0px;
    margin-top: 0px
}

.an-header .navbar .navbar-nav li .dropdown-menu a:hover {
    background: #CF9B46;
    color: black !important;
}

.an-header .navbar .navbar-nav li .dropdown-menu::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background: #CF9B46;
    top: 0px;
    transition: 0.5s;
}

.an-header .navbar .navbar-nav li.dropdown:hover .dropdown-menu::before {
    animation: dropdownline 0.5s linear;
}

@keyframes dropdownline {
    0% {
        width: 0%
    }

    100% {
        width: 100%
    }
}

.rating {
    display: block;
    margin-top: 40px;
}

.logos-section {
    padding: 40px 0px;
    background: linear-gradient(2deg, #e6ebf6, transparent);
}

.looking-section {
    padding: 100px 0px;
    background: url(../images/looking-bg.png);
    background-size: cover;
    background-position: bottom;
    color: #004225;
    position: relative;
}

.an-primary-heading {
    font-size: 46px;
    color: #CF9B46;
    margin-bottom: 20px;
}

.looking-section h4 {
    font-size: 30px;
    color: #000;
    margin-bottom: 30px;
}

.looking-section p {
    font-size: 22px;
    color: #000;
}

.an-check-llist li {
    display: inline-block;
    width: 47%;
    margin: 1%;
    font-size: 24px;
}

.an-check-llist {
    margin-bottom: 30px;
}

.an-check-llist li img {
    margin-right: 10px;
}

.an-primary-btn.outline.black {
    color: black;
    border-color: black;
}

.looking-1,
.looking-2 {
    mix-blend-mode: darken;
}

.looking-section .row {
    align-items: center;
}

.book-left {
    background-image: url(../images/b-1.png);
    background-size: cover;
    color: white;
    padding: 50px;
    background-position: bottom;
}

.book-right {
    background-image: url(../images/b-2.png);
    background-size: cover;

}

.book-left h4 {
    font-size: 20px;
    color: #CF9B46;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.book-left h3 {
    font-size: 40px;
    font-weight: 600;
}

.book-left>div {
    position: relative;
    border: 4px solid white;
    padding: 20px;
    border-left: none;
    padding-left: 0px;
    padding-bottom: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.book-left>div:before {
    content: "";
    position: absolute;
    width: 4px;
    height: calc(100% - 295px);
    background: white;
    left: 0px;
    top: 0px;
}

.book-left>div:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 90px;
    background: white;
    left: 0px;
    bottom: 0px;
}

.book-wrapper .row>div {
    padding: 0px;
}

.book-item {
    padding: 35px;
    color: white;
    padding-top: 0px;
    background: #e09017;
    padding-right: 0px;
    height: 100%;
}

.book-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-head h4 {
    font-size: 44px;
    font-family: 'Aguafina Script', cursive;
    position: relative;
    opacity: 0.4;
}

.book-head h4::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background: #CF9B46;
    bottom: 0px;
    left: 0px;
}

.book-head img {
    height: 180px;
}

.book-body {
    padding-right: 35px;
}

.book-body h5 {
    font-size: 26px;
    font-weight: 600;
}

.book-item.book-2 {
    background: #CF9B46d6;
}
.book-item.book-3 {
    background: #ee9106d6;
}

.book-item.book-4 {
    background: #CF9B46b0;
}

.book-item.book-5 {
    background: #e28f12d6;
}

.book-item.book-6 {
    background: #c97a05d6;
}

.step-section {
    padding-top: 100px;
    background-image: url(../images/step-bg.png);
    background-size: cover;
    background-position: bottom;
}

.step-section .an-primary-heading {
    font-size: 40px;
    font-weight: 600;
}

.step-item {
    padding: 15px;
    height: 100%;
}

.step-item .num {
    position: absolute;
    bottom: 0px;
    left: 15px;
    margin-bottom: 0px;
}

.step-item {
    position: relative;
    padding-bottom: 70px;
}

.step-item img {
    margin-bottom: 20px;
}

.step-item h5 {
    font-size: 20px;
    font-weight: 600;
    color: #CF9B46;
}

.step-item p {
    font-size: 14px;
}

.hire-left {
    background-image: url(../images/cta-bg.png);
    background-size: cover;
    padding: 60px;
    color: #004225;
    background-position: right;
}

.hire-left h4 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.hire-left .an-primary-heading {
    font-size: 40px;
    font-weight: 600;
    font-style: italic;
}

.hire-left .an-primary-heading span {
    position: relative;
}

.hire-left .an-primary-heading span::before {
    content: "";
    height: 4px;
    width: 100%;
    bottom: 0px;
    background: #004225;
    position: absolute;
}

.hire-left p {
    font-size: 30px;
    font-weight: 600;
}

.cta-box {
    display: flex;
    margin-top: 70px;
    align-items: flex-end;
}

.hire-left>div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cta-box .cta-book {
    margin-left: -60px;
    margin-bottom: -70px;
}

.cta-box .chat {
    display: block;
    margin-left: -50px;
}

.cta-box .tel span {
    display: flex;
    align-items: flex-end;
    text-transform: uppercase;
    font-size: 25px;
    color: #020c40;
    line-height: 20px;
    font-weight: 600;
}

.cta-box .tel {
    font-size: 36px;
    color: #030d40;
    font-weight: 600;
}

.cta-box>div a {
    display: inline-block;
}

.cta-box>div {
    text-align: right;
}

.hire-right>div:nth-child(1) {
    background: #000;
    color: #e7ecf7;
}

.hire-right>div:nth-child(1) .row {
    align-items: center;
}

.hire-right>div:nth-child(1) h4 {
    font-size: 26px;
    margin-bottom: 30px;
}

.hire-right>div:nth-child(1) h3 {
    font-size: 36px;
}

.hire-right>div:nth-child(1) .row>div:nth-child(2) {
    padding: 10px 50px;
}

.testimonial-wrap {
    padding: 50px;
    background: #d38510;
    color: white;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hire-right {
    display: flex;
    flex-direction: column;
}

.testimonial-wrap h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-wrap p {
    font-size: 28px;
}

.tes-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.faq-section {
    padding: 70px 0px;
    background-image: url(../images/faq-bg.png);
    background-size: cover;
    background-position: bottom;
}

.faq-section .row {
    align-items: center;
}

.faq-section .an-primary-heading {
    font-size: 42px;
    font-weight: 600;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.faq-section .an-primary-heading::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: #004225;
    bottom: 0px;
}

.faq-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #000;
}

.an-primary-btn.blue {
    background: #CF9B46;
    border-color: #CF9B46;
    color: #fff;
    text-shadow: 1px 2px 2px hsl(0deg 0% 0% / 42%);
}

.an-primary-btn.blue:hover {
    color: #000;
}

div#accordion {
    background-color: rgb(255, 255, 255);
    padding: 40px;
}



div#accordion h4.panel-title a {
    font-size: 24px;
    color: #CF9B46;
}

.panel-default {
    border-bottom: 1px solid #e4e4e4;
    padding: 20px 0px;
}

.faq-section div#accordion p {
    margin-bottom: 20px;
    font-weight: 500;
}

section.logos-section.logos1 {
    background: white;
    padding: 20px 0px;
}

footer {
    background-repeat: no-repeat;
    min-height: 500px;
    background-image: url(../images/footer-bg.jpg);
    padding-top: 100px;
    background-size: cover;
    background-color: #03115a;
}

footer h2 {
    color: white;
}

.numbr {
    color: #CF9B46;
}

footer h4 {
    padding-top: 10px;
    color: white;
    padding-bottom: 15px;
}

.main-f a {
    color: #fff;
}

.ns {
    margin-bottom: 15px;
}

.copyright p {
    color: #fff;
    padding-top: 25px;
}

.copyright a {
    color: #CF9B46;
}

.cpy-rgt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 20px;
}

.cpy-rgt a {
    color: #fff;
}

.cpy-rgt li {
    color: #b0aeca;
}

.copyright .hr {
    color: white;
    background: white;
}

.copyright hr {
    background: #b0aeca;
    margin-top: -50px;
}

.cta-box .cta-book {
    max-width: 56%;
}

footer input.an-primary-btn.yellow {
    text-transform: uppercase;
}

footer input.an-primary-btn.yellow:hover {
    background: white;
    cursor: pointer;
    color: #000;
}

footer .form-control {
    min-height: 50px;
}

.main-f li {
    margin-bottom: 5px;
}

.main-f li a:hover {
    color: #CF9B46;
}

footer a:hover {
    color: #CF9B46;
}

/*==================Inner pages css=============================*/
.an-banner.inner-banner h1 {
    /* font-size: 42px; */
}

.an-banner.inner-banner ul li {
    display: inline-block;
    /* min-width: 49%; */
    padding: 5px 0px;
    /* font-size: 25px; */
    color: #b8bbd1;
    padding-left: 20px;
    position: relative;
}

.an-banner.inner-banner ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #CF9B46;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.an-banner.inner-banner ul {
    margin: 20px 0px;
}

.an-primary-btn.dark-blue {
    background: #000;
    color: white;
    border-color: #000;
}

.an-primary-btn.dark-blue:hover {
    color: #000;
}

.looking-section.inner-looking {
    background: linear-gradient(2deg, #e6ebf6, transparent);
}

.looking-section.inner-looking h4 {
    margin-bottom: 15px;
}

.looking-section.inner-looking p {
    margin-bottom: 30px;
    max-width: 85%;
}

.primiun-editor-section {
    padding: 70px 0px;
    text-align: center;
    color: #004225;
}

.primiun-editor-section .an-primary-heading {
    font-weight: 600;
    color: #CF9B46;
}

.primiun-editor-section p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #000;
}

.primiun-editor-section h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.primiun-editor-section .row {
    justify-content: center;
}

.primiun-editor-section ul li {
    width: 48%;
    display: inline-block;
    text-align: left;
    font-size: 16px;
    vertical-align: text-top;
    padding: 10px 0px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.primiun-editor-section ul {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.primiun-editor-section ul li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #CF9B46;
    left: 0px;
    top: 50%;
    top: 18px;
}

.get-ready-section {
    padding: 50px 0px;
    background-image: url(../images/ready-bg1.png);
    background-size: cover;
    background-position: center;
}

.get-ready-section .row {
    align-items: center;
}

.get-ready-section h2 {
    font-size: 42px;
    color: #CF9B46;
}

.get-ready-section p {
    font-size: 17px;
    color: white;
    margin-bottom: 0px;
}

.an-primary-btn.white {
    background: #000;
    border-color: #000;
    color: #fff;
}

.an-primary-btn.white:before,
.an-primary-btn.white:after {
    background: #000;
}

.an-primary-btn.white:hover {
    color: white;
}

.get-ready-section .num-wrap {
    text-align: center;
    margin-top: 15px;
}

.get-ready-section .num-wrap a {
    font-size: 16px;
    padding: 0px 5px;
    color: black;
    font-weight: 600;
}

.get-ready-section .num-wrap a:hover {
    color: #004225;
}

.prime-head {
    color: #004225;
    font-weight: 600;
    font-size: 46px;
}

.main-para {
    font-size: 22px;
    color: #004225;
    text-align: center;
    padding-top: 20px;
}

.edit-txt {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 20px;
    align-items: center;
}

.edi {
    padding: 10px 10px;
    font-size: 16px;
}


.main-edit p {
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.editor {
    padding-top: 80px;
}

.step-section .row {
    justify-content: center;
}

.main-edit {
    margin-top: 30px;
}

.an-banner.marketing-banner p {
    font-size: 20px;
}

.an-banner.marketing-banner ul li {
    width: 100%;
    padding: 0px;
    padding-left: 20px;
    font-size: 16px;
}

.an-banner.inner-banner {
    padding-bottom: 50px;
}

.cons-main h5 {
    font-size: 16px;
    font-weight: 800;
    color: #CF9B46;
    padding-top: 30px;
}

.cons-main p {
    font-size: 16px;
    color: #787878;
    font-weight: 500;
}

.cons-main {
    padding: 30px 5px;
    margin-top: 30px;
    margin-bottom: -15px;
}

.cons-main:hover,
.cons-main.active {
    background: white;
}

.marketing-section-2 {
    padding-bottom: 0px;
}

.marketing-section-2 .bottom {
    margin-top: 40px;
}

.sell-book-section {
    padding: 50px 0px;
    position: relative;
}

.sell-book-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.sell-book-section .wrapper {
    position: relative;
    padding-bottom: 50px;
    padding-top: 50px;
}

.sell-book-section .sell-img {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 43%;
    object-fit: cover;
    left: 0pc;
}

.sell-book-section li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.sell-book-section li h4 {
    font-size: 26px;
    font-weight: 600;
    color: #CF9B46;
    margin-bottom: 5px;
}

.sell-book-section li p {
    margin-bottom: 0px;
    font-size: 18px;
}

.sell-book-section li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #000;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    top: 8px;
}

.logos-section3 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.logos-section3 .img-box {
    padding: 15px;
}

.book-marketing-tabs {
    padding: 70px 0px;
}

h2.an-primary-heading {
    max-width: 100%;
    font-weight: 600;
}

.book-marketing-tabs .top {
    text-align: center;
}

.book-marketing-tabs h2 {
    font-size: 40px;
    font-weight: 600;
    color: #004225;
}

.book-marketing-tabs .top p {
    font-size: 20px;
    margin-bottom: 40px;
}

.book-marketing-tab {}

.book-marketing-tab .nav-tabs {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 50px;
}

.book-marketing-tab .nav-tabs li {
    margin: 3px;
}

.book-marketing-tab .nav-tabs li a {
    border: 1px solid #cacccf !important;
    border-radius: 0px;
    font-weight: 600;
    color: #004225;
}

.book-marketing-tab .nav-tabs li a:hover,
.book-marketing-tab .nav-tabs li a.active {
    background: #004225;
    color: white;
}

.tab-pane .row {
    align-items: center;
}

.mar-wrap h3 {
    font-size: 26px;
    font-weight: 600;
    color: #004225;
    margin-bottom: 30px;
}

.mar-wrap p {
    font-size: 18px;
    font-weight: 500;
    color: #004225;
    margin-bottom: 30px;
}

.book-marketing-tab .item {
    padding: 0px 15px;
}

.item {
    height: auto;
}

.nav-style-1 .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 70px;
    background: #CF9B46;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    border-radius: 100%;
    padding: 0px;
    left: -100px;
    cursor: pointer;
}

.nav-style-1 .slick-arrow.slick-next {
    left: auto;
    right: -100px;
}

.author-section {
    padding: 70px 0px;
}

.author-section .top {
    padding-bottom: 50px;
}

.author-section .top h2 {
    font-size: 40px;
    font-weight: 600;
    color: #CF9B46;
}

.author-section .top p {
    font-size: 24px;
    color: #000;
    margin-bottom: 0px;
}

.author-item {
    padding: 50px 0px;
    border-top: 1px solid #e2e2e2;
    display: none;
}

.author-item .tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.author-item .tags li {
    padding: 3px 10px;
    background: #CF9B461c;
    font-size: 14px;
    font-weight: 600;
    color: #CF9B46;
    margin: 3px;
    border-radius: 5px;
}

.author-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #CF9B46;
}

.author-book img {
    max-width: 95%;
}

.author-book {
    margin-bottom: 20px;
}

.about-author p {
    font-size: 17px;
    color: #000;
}

.author-item .row {
    align-items: center;
}

.author-img {
    position: relative;
}

.author-img img {
    width: 100%;
}

.author-img .author-name {
    position: absolute;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    top: 50px;
    left: 50px;
    border: 3px solid #CF9B46;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.author-img .author-name h4 {
    width: calc(100% - 4px);
    text-align: center;
    background: #CF9B46;
    margin-bottom: 2px;
    font-size: 26px;
    font-weight: 600;
    color: #004225;
    padding: 10px;
}

.author-wrapper .author-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.load-more button {
    font-size: 22px;
    padding: 15px 30px;
    border: none;
    background: #e9ebf0;
    text-transform: uppercase;
    border-radius: 7px;
    cursor: pointer;
}

.load-more button:hover {
    background: #004225;
    color: white;
}

.load-more {
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.load-more::before {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 2px solid #e9ebf0;
    left: 0px;
    top: 32px;
    z-index: -1;
}


/* design-illustraion css start */
.looking-section .in-img {
    position: absolute;
    right: 0px;
    top: 50%;
    mix-blend-mode: darken;
    max-width: 50%;
    transform: translateY(-50%);
}

.cons-main h5 {
    font-size: 16px;
    font-weight: 800;
    color: #CF9B46;
    padding-top: 30px;
}

.cons-main p {
    font-size: 16px;
    color: #787878;
    font-weight: 500;
}

.cons-main {
    padding: 30px 5px;
    margin-top: 30px;
    margin-bottom: -15px;
}

.cons-main:hover {
    background: white;
}

.illustrate {
    padding-bottom: 0px !important;
}

.fashion-sec {
    padding: 70px 0px;
    color: #004225;
}

.fashion-sec .an-primary-heading {
    font-weight: 600;
    color: #CF9B46;
    text-align: center;
}

.fashion-sec p {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
    color: #000;
}

.fashion-sec h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fash-mn h5 {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #CF9B46;
    padding-left: 20px;
}

.fash-mn {
    display: flex;
    align-items: center;
}

.main-fashion p {
    padding-top: 30px;
    color: #004225;
    text-align: inherit;
    font-size: 18px;
}

.btn-main {
    padding-top: 20px;
}

.fashion-slider {
    padding-top: 60px;
}

.slick-slide {
    height: auto;
}

.illustration-slider .slick-prev.pull-left.slick-arrow {
    position: absolute;
    top: 50%;
    left: -100px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #004225;
    color: white;
    font-size: 30px;
    border: 1px solid #004225;
    transition: 0.5s;
}

.illustration-slider .slick-prev.pull-left.slick-arrow:hover {
    background: #CF9B46;
    border: none !important;
}

.illustration-slider .slick-next.pull-right.slick-arrow {
    position: absolute;
    right: -100px;
    top: 54%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #004225;
    color: white;
    font-size: 30px;
    border: 1px solid #004225;
    transition: 0.5s;
}

.illustration-slider .slick-next.pull-right.slick-arrow:hover {
    background: #CF9B46;
    border: none !important;
}

.interior-color .an-primary-heading {
    font-weight: 600;
    color: #004225;
    text-align: center;
    padding-top: 60px;
}

.interior-color p {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.inte-main {
    text-align: center;
    padding: 30px 5px;
    /* margin-top: 30px; */
    position: relative;
    z-index: 1;
}

.inte-main h5 {
    font-size: 16px;
    font-weight: 800;
    color: #CF9B46;
    padding-top: 30px;
}

.interior-color {
    /* padding-top: 60px; */
    padding-bottom: 80px;
}

.inte-main p {
    font-size: 16px;
    color: #787878;
    font-weight: 500;
}

.interior-side {
    position: absolute;
    right: 0;
    /* max-width: 100%; */
    width: 20%;
}

.inte-main::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: 0.5s;
    opacity: 0;
    background-image: url(../images/interior-hover.html);
    background-size: cover;
}

.inte-main:hover:before, .inte-main.active:before {
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

.inte-main:hover p, .inte-main.active p {
    color: black;
}

.prof-designed {
    background-image: url(../images/professional-bg1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.prof-designed .row {
    min-height: 788px;
}

.prof-img img {
    padding-top: 240px;
    width: 100%;
    mix-blend-mode: color-dodge;
}

.prof-txt {
    padding-top: 70px;
}

.prof-txt h5 {
    font-size: 26px;
    color: white;
    font-family: 'Poppins';
}

.prof-txt h3 {
    font-size: 46px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.prof-txt li {
    color: white;
    font-size: 18px;
    line-height: 20px;
}

.prof-txt p {
    font-size: 19px;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding-top: 15px;
    padding-bottom: 10px;
}

.cover-design h2 {
    text-align: center;
    font-weight: 600;
    padding-bottom: 20px;
}

.inner-heading-cd {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins';
    position: absolute;
    right: 28%;
    bottom: 24px;
    color: white;
}

.black {
    color: black;
}

.cover-txt img {
    width: 100%;
    height: 100%;
}

.cover-img .inner-heading-cd {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins';
    position: absolute;
    right: 4%;
    bottom: 18px;
    color: white;
    text-align: center;
}

.cover-img img {
    width: 100%;
    height: 100%;
}

.cover-img6 .inner-heading-cd {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Poppins';
    position: absolute;
    right: 11%;
    /* bottom: 0; */
    color: #f68984;
    text-align: center;
    top: 23%;
}

.cover-img6 img {
    width: 100%;
}

.sell-your-book {
    background: #eaf9f2;
    padding: 50px 0px;
    /* padding-bottom: 70px; */
}



.cover-design {
    padding-top: 80px;
    padding-bottom: 90px;
}

.sell-your-book .an-primary-heading.text-center {
    text-align: center;
    font-weight: 600;
}

/* design-illustraion css end */
/* pricing-edits css start */
.looking-section .in-img1 {
    position: absolute;
    right: 13%;
    top: 100px;
    mix-blend-mode: darken;
}

.ghost-brand {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.ghost-brand img {
    mix-blend-mode: darken;
}

.ghost-brand h4 {
    font-size: 22px;
    color: #004225;
    margin-bottom: 0px !important;
    font-weight: 600;
}

.pricing-section {}

.pricing-section .top {
    padding-bottom: 50px;
}

.pricing-section {
    padding: 70px 0px;
}

.pricing-section .top h2 {
    font-size: 40px;
    font-weight: 600;
    color: #004225;
}

.price-item {
    padding: 40px 0px;
    border-top: 1px solid #d2d2d2;
}

.price-item h3 {
    font-size: 34px;
    color: #004225;
    font-weight: 600;
}

.price-item p {
    font-size: 20px;
    color: #004225;
}

.price-card {
    margin-top: 20px;
}

.price-card .price-top {
    padding: 40px 20px;
    background: #edfeff;
    margin-bottom: 20px;
    min-height: 415px;
}

.price-card .price-top .price-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-card .price-top .price-head h5 {
    font-size: 30px;
    font-weight: 600;
    color: #004225;
}

.price-card .price-top .price-head .price-tag {
    background: #1c468b;
    color: white;
    padding: 10px 20px;
    margin-right: -30px;
    position: relative;
}

.price-card .price-top ul li {
    display: flex;
    align-items: flex-start;
    font-size: 20px;
    margin-bottom: 20px;
    color: #004225;
}

.price-card .price-top ul li img {
    width: 15px;
    margin-top: 7px;
    margin-right: 10px;
}

.price-card .price-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-card .price-bottom .an-primary-btn {
    font-size: 16px;
    padding: 10px 20px;
}

.price-card .price-bottom span {
    font-weight: 600;
    color: black;
    font-style: italic;
}

.price-card .price-top .price-head .price-tag::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0px 10px;
    border-color: transparent transparent transparent #CF9B46;
    position: absolute;
    top: -10px;
    right: 0px;
}

.price-top span {
    font-weight: 600;
    font-size: 16px;
    font-style: italic;
}

.online {
    background: #edf7ff !important;
}

.branding {
    background: #eeedff !important;
}

.video-book {
    background: #edfff3 !important;
}

.Web-Design {
    background: #feffed !important;
}

.audio-book {
    background: #fff6ed !important;
}

.cover-design {
    background: #fff1ed !important;
}

.Copywriting {
    background: #ffedef !important;
}

/* pricing-edits css end */
.banner-animation img:nth-child(1) {
    position: absolute;
    max-width: 30%;
    right: 8%;
    top: -100%;
    animation: ToptoBottom 10s infinite alternate;
}

.banner-animation img:nth-child(2) {
    position: absolute;
    max-width: 30%;
    right: 8%;
    bottom: -140%;
    animation: BottomtoTop 10s infinite alternate;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes ToptoBottom {
    from {
        top: -100%;
    }

    to {
        top: 100%;
    }
}

/* Standard syntax */
@keyframes ToptoBottom {
    from {
        top: -100%;
    }

    to {
        top: 100%;
    }
}


/* Chrome, Safari, Opera */
@-webkit-keyframes BottomtoTop {
    from {
        bottom: -140%;
    }

    to {
        bottom: 100%;
    }
}

div#accordion h4.panel-title a {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-weight: 600;
}

div#accordion h4.panel-title a i {
    color: white;
    background: #CF9B46;
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    transition: 0.5s;
}

div#accordion h4.panel-title a i::before {
    content: "\f068";
}

div#accordion h4.panel-title a.collapsed i::before {
    content: "\f067";
}

div#accordion h4.panel-title a.collapsed i {
    opacity: 1;
}

.dropdown-toggle::after {
    border-color: #CF9B46;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.faq-section .collapse {
    max-height: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.faq-section .collapse.show {
    max-height: 1000px;
    overflow: hidden;
    transition: 0.5s;
}

/* autobiography css start */
.inner-main-head {
    color: #CF9B46;
    font-size: 32px;
    font-family: 'Poppins';
    text-align: center;
    font-style: italic;
    font-weight: 700;
    padding-bottom: 35px;
}

.ghst-btn a {
    background: #000;
    color: white;
    font-size: 17px;
    padding: 15px 40px;
    border-radius: 5px;
    width: 100%;
    height: 60px;
    display: block;
}

.ghst-btn i {
    color: #CF9B46;
    margin-right: 10px;
}

.ghst-btn a {
    margin-bottom: 15px;
}

.autobio {
    padding-bottom: 100px !important;
}

.trust-fiction h2 {
    padding: 0;
    padding-top: 100px;
}

.trust-fiction {
    text-align: center;
}

.ghost-writing-cp {
    padding-bottom: 100px;
    padding-top: 100px;
}

.ghost-writing-cp h2 {
    padding-top: 0;
}

.b-seller {
    color: #000;
    font-weight: 600;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding-bottom: 40px;
}

.b-seller span {
    color: #CF9B46;
}

.magnum-opus-section .nav-tabs {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
}

.magnum-opus-section .nav-tabs a {
    font-size: 16px;
    color: #004225;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid;
    margin: 0px 0px 0px 20px;
    border-radius: 5px;
}

.magnum-opus-section .nav-tabs .active,
.magnum-opus-section .nav-tabs a:hover {
    background: #CF9B46;
    color: black;
}

.magnum-opus-section .nav-tabs .show {
    background: #CF9B46;
    color: black;
}

.magnum-opus-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.ghst-btn a {
    border: 2px solid transparent;
}

.ghst-btn a:hover {
    background: white;
    color: #004225;
    border: 2px solid #004225;
}

.ghost-link-sec {
    padding: 70px 0px;
}

.looking-section.friction .in-img {
    top: 100px;
    transform: translateY(0px);
    max-width: 30%;
}

/* autobiography css end */

.talk-txt h2 {
    font-size: 46px;
    color: #CF9B46;
    font-weight: 500;
    font-family: 'Poppins';
}

.talk-txt p {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins';
    position: relative;
}

.talk-txt h6 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    padding-top: 20px;
}

.talk-txt .number {
    font-size: 40px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #000;
}

.talk-txt ul {
    display: flex;
    padding-top: 20px;
}

.talk-txt ul a {
    color: #000;
    background: transparent;
}

.talk-txt ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    border-radius: 100%;
    border: 1px solid #d4dff2;
    width: 50px;
    height: 50px;
    margin: 3px;
}

.talk-txt ul a:hover {
    background: #000;
    color: white;
}

.let-talk-section {
    padding: 100px 0px;
}

.talk-txt p::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: #21421e;
    left: 0%;
    bottom: -15%;
}

.side-contact input.an-primary-btn.yellow:hover {
    background: white;
    cursor: pointer;
}

.side-contact .an-primary-btn.yellow {
    width: 200px;
}

.side-contact {
    padding-top: 30px;
}

.side-contact .ns {
    height: 60px;
}

.map-cntct {
    padding-top: 10px;
    padding-bottom: 0px;
}

.map-cntct iframe {
    filter: grayscale(0.5);
}

.aspire-txt p {
    color: #004225;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
}

.aspire-txt h2 {
    padding-bottom: 30px;
}

.an-banner-content h3 {
    padding-top: 11px;
    color: #CF9B46;
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 20px;
    padding-top: 13px;
}

.about-section-1 {
    padding: 70px 0px;
    background: linear-gradient(2deg, #e6ebf6, transparent);
    position: relative;
}

.about-section-1 .top {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.about-section-1 .top p {
    font-size: 24px;
    position: relative;
}

.about-section-1 .top p::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 100px;
    background: #004225;
    bottom: -14px;
}

.services-slider .item {
    padding: 10px;
}

.services-slider .item>div {
    min-height: 350px;
    padding: 30px;
    border-radius: 6px;
    background: white;
}

.slider-btn-wrap {
    /* position: absolute; */
    /* max-width: 1170px; */
    /* bottom: 0px; */
    /* left: 0px; */
}

.about-section-1::before {
    content: "";
    position: absolute;
    width: 59%;
    height: 53%;
    top: 0px;
    right: 0px;
    background: #CF9B46;
}

.services-slider .item>div img {
    height: 35px;
    margin-bottom: 15px;
}

.services-slider .item>div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #CF9B46;
    margin-bottom: 30px;
}

.services-slider .item>div p {
    font-size: 17px;
}

.nav-style-2 button.slick-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    left: 0px;
    bottom: 82px;
    border-radius: 100%;
    border: 1px solid #c3c3c3;
    background: transparent;
    color: #004225;
    font-size: 27px;
}

.nav-style-2 button.slick-next {
    left: -28px;
}

.nav-style-2 button.slick-next {
    left: auto;
    right: 0px;
}

.about-section-2 {
    padding: 100px 0px;
    background-image: url(../images/about-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.about-section-2 h2 {
    font-size: 38px;
    color: #cf9b46;
    font-weight: 600;
    margin-bottom: 40px;
}

.about-section-2 p {
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
}

.ready-title h3 {
    font-size: 38px;
    color: #CF9B46;
    font-weight: 600;
}


.read-content {
    position: relative;
}

.read-content.two {
    margin: 60px 0 0;
}

.read-content::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -50px;
    background-color: #ffc3298f;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    z-index: -1;
}

.capable {
    text-align: center;
    margin: 10px 0 0;
}

.capable h3 {
    color: #000;
    font-size: 30px;
    font-family: 'Poppins';
    text-align: center;
    font-style: italic;
    font-weight: 500;
    padding: 0 0 10px;
}

.capable p {
    font-size: 16px;
    color: #000;
    margin: 0 0 30px;
}

.row.justify-content-center.twoo .ghst-btn a {padding-right: 0;}

.read-content .two {
    position: relative;
}

.read-content.two::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    background-color: #ffc3298f;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    z-index: -1;
}
.read-content p {
    font-size: 17px;
    color: #000;
    margin-bottom: 30px;
}

.read-content h4 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
}

.ready-title h5 {
    color: #000;
}

.ready-title {
    text-align: center;
    width: 70%;
    margin: 0 auto 60px;
}

section.ready {
    padding: 50px 0;
}

.counter-item {
    background: #000;
    color: white;
    min-height: 200px;
    margin-bottom: 30px;
    padding: 20px 15px;
    border-radius: 0px;
}

.counter-item p {
    color: white;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 00px;
}

.counter-item h3 {
    font-size: 29px;
    font-weight: 700;
}

.counter-item img {
    height: 45px;
    margin-bottom: 20px;
}

.counter-wrap {
    background-image: url(../images/count-bg.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.counter-wrap .row>div:nth-child(2) {
    padding-top: 50px;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: rgb(255 255 255);
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    overflow: hidden;
}

.menu-ovarlay,
.close-menu {
    display: none;
}

section.looking-section.inner-looking.marketing-section-2 {
    padding-bottom: 0px;
}

.count-number {
    display: inline-block;
    font-size: 50px;
    text-transform: uppercase;
    color: #eef1f7;
    font-weight: 500;
    border-left: 3px solid #CF9B46;
    overflow: hidden;
    margin-right: 10px;
}

.count-number b {
    margin-left: -14px;
}

.mar-wrap h3 {
    display: flex;
    align-items: center;
}

.align-item-start {
    align-items: flex-start !important;
}

.cons-main img {
    height: 60px;
}

.copyright b {
    position: relative;
    top: -59px;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}

.copyright b i {
    margin-right: 10px;
}

.an-banner.privacy-banner .row {
    min-height: auto !important;
    padding-bottom: 120px;
}

.mycontent.privacy-content {
    padding: 70px 0px;
}

.mycontent.privacy-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.mycontent.privacy-content p a {
    text-decoration: underline !important;
    color: #004225;
    font-weight: 600;
}

.mycontent.privacy-content h5.sub-heading {
    font-size: 24px;
    font-weight: 600;
}

.an-banner.privacy-banner h1 {
    font-size: 50px;
}
.modal-lg {
    max-width: 1170px;
}

.modal-backdrop {
    background: #000000;
}

.modal-backdrop.show {
    opacity: 0.75;
}

div#mainPopup .left {
    max-width: 100%;
    margin-left: -16px;
    margin-top: -16px;
    height: calc(100% + 16px);
}

div#mainPopup .modal-content {/* background-image: url(../images/inde-banner.png); */background-size: 100% 100%;/*background-position: bottom right;*/background-color: #fff;position: relative;border-radius: 15px;/* height: 540px; */}
div#mainPopup .modal-content {}

div#mainPopup .ns {
        background: #f4f4f4;
            border: 1px solid #d0d0d0;
}

div#mainPopup .modal-content .modal-body {
    padding-bottom: 20px;
}

div#mainPopup  h2 {
    font-size: 30px;
    font-weight: 800;
    color: #000;
}

div#mainPopup h2 span {
    color: #e23232;
}
div#mainPopup h3 {
    font-weight:900;
    font-size:20px;
    color: #2c357d;
}


div#mainPopup p {
    font-size: 15px;
    font-weight: 600;
    color: #c4c8de;
    margin-bottom: 20px;
}

.ghostwriter img {
         width: 70%;
     }

     section.looking-section.inner-looking.illustrate.autobio IMG {
    max-width: 33% !important;
}

.input-wrap {
    position: relative;
}

.input-wrap i {
    position: absolute;
    left: 8px;
    top: 13px;
    font-size: 15px;
    color: #454141;
}

.input-wrap .form-control {
    min-height: 40px;
    padding-left: 31px;
}

div#mainPopup .an-primary-btn {
    font-size: 16px;
    padding: 10px 30px;
    cursor: pointer;
        display: block;
    margin: 0 auto;
}

div#mainPopup .an-primary-btn:hover {
    background: white;
    color: #000;
}
div#mainPopup .modal-content .modal-body::before {
    width: 100%;
    height: 100%;
    top: 20px;
    left: -40px;
    background: hsl(0deg 0% 0% / 40%);
    position: absolute;
    /* content: ""; */
    z-index: -1;
}

div#mainPopup .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -10px;
    right: -10px;
    background: #CF9B46;
    opacity: initial;
    border-radius: 5px;
    text-shadow: none;
    color: #004225;
}
.modal-lg {
    max-width: 430px;
}

div#mainPopup .left img {
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.an-banner {
    background-color: #000;
}


.edit-txt h4 {
    font-size: 16px;
}
.magnum-opus-section a img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border: 15px solid #f9f9f9;
}

section.addons_new img {
    max-width: 100%
}

section.addon-packages_new {
    padding: 70px 0
}
section.addon-packages_new .row>div{
    margin-bottom: 30px;
}
section.addon-packages_new .addon-box-new {
    background: #fff;
    border: #e2e2e2 1px solid;
    padding: 13px;
    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    transition: all .2s ease-in;
    position: relative;
    min-height: 320px;
    display: flex;
    height: 100%;
}

section.addon-packages_new .addon-box-new .addon-box-txt-n {
    width: 250px;
    font-size: 12px;
    display: inline-block;
    padding-right: 23px;
}

section.addon-packages_new .addon-box-new .addon-box-txt-n h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    line-height: 25px;
    margin-bottom: 15px;
}

section.addon-packages_new .addon-box-new.full-width p {
    line-height: 17px;
    min-height: 96px;
    font-size: 13px
}

section.addon-packages_new .addon-box-new .addon-box-txt-n h2 span {
 /*   font-weight: 900; */
    display: block
}

.addon-box-img-n {
    /* width: 266px; */
    /* display: inline-block */
}

section.addon-packages_new .addon-box-new .addon-box-txt-n .addon-new-price {
    margin: 5px 0 14px
}
.full-width .addon-box-img-n {
    width: 330px;
}
.addon-box-img-n {
    width: 50%;
    display: inline-block;
}
section.addon-packages_new .full-width .addon-box-txt-n {
    width: 70%;
    padding-left: 20px;
    padding-top: 20px;
}
.addon-box-new.full-width {
    border-top: 5px solid #004225!important;
}
.big-box-heading {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
    line-height: 25px;
}
section.addon-packages_new .addon-box-new.full-width p {
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
    padding-right: 120px;
}
section.addon-packages_new .addon-box-new .addon-box-txt-n .addon-new-price {
    margin: 5px 0 14px;
}
.full-width label.addon-btn-new {
    border: #CF9B46 1px solid;
    font-size: 14px;
    background: #CF9B46;
    display: inline-block;
    color: #000;
    font-family: open sans,sans-serif;
    font-weight: 600;
    width: 40%;
    text-align: center;
    text-transform: uppercase;
    margin-right: 13px;
    margin-top: 20px;
}
.full-width label.addon-btn-new2 {
    border: #004225 1px solid;
    font-size: 14px;
    background: #004225;
    display: inline-block;
    color: #fff;
    font-family: open sans,sans-serif;
    font-weight: 600;
    width: 37%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 20px;
}
.full-width label.addon-btn-new2 a {
    color: #fff;
    padding: 15px 8px;
    display: block;
}
label.addon-btn-new a {
    display: block;
    color: #004225;
    padding: 15px 8px;
}
section.addon-packages_new .addon-box-new .addon-box-txt-n h2 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
    line-height: 25px;
    margin-bottom: 15px;
}
span.top-seller-addon {
    background: url(../images/top-seller-tag.html) right top;
    width: 100%;
    float: left;
    height: 100px;
    background-repeat: no-repeat;
    position: absolute;
    right: -13px;
    top: 13px;
}
span.col-addon-price-nn {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #151d34;
    display: inline-block;
    line-height: 19px;
}
label.addon-btn-new {
    border: #CF9B46 1px solid;
    font-size: 14px;
    background: #CF9B46;
    display: block;
    color: #004225;
    font-family: open sans,sans-serif;
    font-weight: 600;
    width: 93%;
    text-align: center;
    text-transform: uppercase;
}
label.addon-btn-new a {
    display: block;
    color: #004225;
    padding: 15px 8px;
}
span.col-addon-price-nn b {
    font-size: 23px;
    /* font-weight: 800; */
    display: block;
    color: #2b2b2b;
}
.addon-box-new p {
    font-size: 15px;
}
section.addon-packages_new .addon-box-new .addon-box-txt-n {
    width: 50%;
}
section.addon-packages_new .full-width .addon-box-txt-n {
    width: 70%;
    padding-left: 20px;
    padding-top: 20px;
}
.full-width .addon-box-img-n {
    width: 30%;
}

.custom-div {
    float: left;
    width: 98%;
    padding: 18px 15px;
    border-top: 2px solid #000;
    margin: 0 15px;
    border-bottom: 2px solid #000;
    text-align: center
}

body .custom-div h3 {
    margin-top: 0!important;
    margin-bottom: 15px!important;
    color: #000!important
}


.subsidiary-col {
    text-align: center;
    padding: 10px 0;
    background: #CF9B46;
    margin-top: 22px;
}


.custom-buttom {
    display: inline-block;
    background: #004225;
    border: #004225 1px solid;
    color: white;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 5px;
    margin-right: 7px;
    transition: .5s all;
    font-weight: 500;
}

.custom-buttom:focus {
    color: #004225;
    border-color: #CF9B46;
    background: #CF9B46;
}

.custom-buttom:hover {
    color: #004225;
    border-color: #CF9B46;
    background: #CF9B46;
}
.marketing-section-2 .bottom .row {
    align-items: flex-start;
}
.inte-main img {
    height: 115px;
}
.services-slider {
    padding: 0px 50px;
}
.about-section-1 .top h2 {
    font-size: 28px;
}
section.portfolio-new {
    padding: 70px 0px;
    text-align: center;
}

.has-portfolios ul li {
    display: inline-block;
    margin: 1%;
    width: 14%;
}

.has-portfolios ul {
    text-align: center;
}

section.portfolio-new h2 {
    font-size: 36px;
    font-weight: 600;
    color: #CF9B46;
}

section.portfolio-new .tab-pane {
    border-top: none;
}

.portfolio-new .panel-default {
    border-bottom: none;
}

.portfolio-new ul.nav.nav-tabs {
    justify-content: center;
    border-bottom: none;
    margin: 20px 0px;
}

.portfolio-new ul.nav.nav-tabs li a {
    padding: 10px 20px;
    background: #000;
    margin: 5px;
    color: white;
    border-radius: 5px;
}

.portfolio-new ul.nav.nav-tabs li a.active, .portfolio-new ul.nav.nav-tabs li a:hover {
    background: #CF9B46;
    color: #000;
}
label.error {
    display: none!important;
}
.form-control.error {
    border: 2px solid red;
}
.cons-main h5 {
    text-transform: uppercase;
}
.author-book>div {
    display: inline-block;
    max-width: 18%;
}
.children-banner .row {
    justify-content: center;
    min-height: 700px;
}
.children-banner .an-banner-content {
    text-align: center;
}
.children-banner .children-img-1 {
    position: absolute;
    left: 5%;
    max-width: 17%;
    bottom: 100px;
}
.children-banner .children-img-2 {
    position: absolute;
    right: 5%;
    max-width: 18%;
    bottom: 150px;
}
.children-banner p {
    font-size: 18px;
}

.children-banner .rating {
    margin: auto;
    margin-top: 40px;
}
.children-banner .children-img-1 {
    animation: 7s child-1 infinite linear;
}
@keyframes child-1{
    0%{
        bottom: 100px;
    }
    50%{
        bottom: 0px;
    }
 100%{
        bottom: 100px;
    }
}
.children-banner .children-img-2 {
    animation: 15s child-2 infinite linear;
}
@keyframes child-2{
    0%{
        bottom: 150px;
    }
    50%{
        bottom: 50px;
    }
 100%{
        bottom: 150px;
    }
}
.children-section-3 {
    padding: 70px 0px;
    position: relative;
}

.children-step-box {
    height: 100%;
    padding: 30px 20px;
    background: #ffecbb;
    border-radius: 5px;
}

.children-step-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.children-step-box-head h3 {
    font-size: 26px;
    font-weight: 600;
    color: white;
    background: #efcd73;
    padding: 5px 20px;
    margin-left: -20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.children-step-box-head img {
    height: 75px;
}

.children-step-box h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.children-step-box p {
    font-size: 18px;
    max-width: 90%;
}

.children-section-3 .row>div {
    margin-bottom: 30px;
}
.children-step-box.two {
    background: #bffff2;
}

.children-step-box.two h3 {
    background: #6bd6c0;
}

.children-step-box.three {
    background: #ffe0d3;
}

.children-step-box.three h3 {
    background: #eea384;
}

.children-step-box.four {
    background: #e6f8c9;
}

.children-step-box.four h3 {
    background: #98c651;
}

.children-step-box.five {
    background: #d7dbff;
}

.children-step-box.five h3 {
    background: #525ece;
}

.children-step-1 {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 20%;
    z-index: -1;
}

.children-step-2 {
    position: absolute;
    bottom: 0px;
    right: 4%;
    z-index: -1;
    max-width: 35%;
}
.children-section-4 {
    padding: 70px 0px;
    text-align: center;
    position: relative;
}

.children-section-4 .row {
    justify-content: center;
}

.children-section-4 h2 {
    font-size: 30px;
    margin-bottom: 50px;
    font-weight:600;
}

.children-section-4 .row>div img {
    height: 85px;
    margin-bottom: 20px;
}

.children-section-4  h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0px;
}

.children-section-4 p {
    font-size: 17px;
}

.children-section-4::before {content: "";position: absolute;width: 50%;height: 50%;background-image: url(../images/ch-shape-1.html);background-size: contain;background-repeat: no-repeat;background-position: top left;left: 0px;top: 0px;}
.children-section-4::after {content: "";position: absolute;width: 15%;height: 100%;background-image: url(../images/ch-shape-2.html);background-size: 100% 100%;background-repeat: no-repeat;background-position: right;right: 0px;top: 0px;}
section.logos-section.logos1.bg-gradieant {
    background: linear-gradient(
180deg
, #e6ebf6, transparent);
}
section.logos-section.logos1.bg-gradieant img {
    mix-blend-mode: multiply;
}
.book-printing-banner-img {
    position: absolute;
    right: 0px;
    top: 55%;
    transform: translateY(-50%);
    max-width: 41%;
}
.book-printing-banner ul li {width: 100%;}
.book-printing-section-1-img {
    position: absolute;
    right: 0px;
    top: 47%;
    max-width: 42%;
    transform: translateY(-50%);
    mix-blend-mode: multiply;
}
.book-printing-section-1 .an-primary-heading {
    font-size: 40px;
}
section.book-printing-section-2 {
    padding: 50px 0px;
}

section.book-printing-section-2 .row {
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
}

section.book-printing-section-2 .row:nth-child(even) {
    flex-direction: row-reverse;
}

section.book-printing-section-2 h3 {
    font-size: 26px;
    font-weight: 600;
    color: #0f0630;
}

section.book-printing-section-2 p {
    color: #0f0630;
    font-size: 17px;
}
.book-printing-section-3 {
    padding: 70px 0px;
    text-align: center;
}

.book-printing-section-3 h3 {
    font-size: 16px;
    color: #004225;
    font-weight: 600;
    max-width: 90%;
    margin: auto;
}

.img-box img {
    margin-bottom: 10px;
}

.img-box {
    margin-bottom: 30px;
}
.book-printing-section-3 .row {
    justify-content: center;
}

.book-printing-section-3 h2 {
    font-size: 40px;
    color: #004225;
    font-weight: 600;
}

.book-printing-section-3 p {
    font-size: 20px;
    color: #004225;
    margin-bottom: 40px;
}
.an-banner.main-banner.inner-banner.book-printing-banner h1 {
    margin-bottom: 30px;
    font-size:35px;
}
.navbar-brand img {
    width: 340px;
}

.read-content span {
    color: #CF9B46;
}

.peal{ margin:30px 0}
.peal li{ display:inline-block; text-align:center;}
.peal li a{ width:40px; height:40px; display:block; background:#CF9B46; border-radius:50%; color:#fff; font-size:22px; padding:3px;}

a.nav-link {
    display: flex;
    align-items: center;
}
li.nav-item.dropdown a i {
    padding-left: 6px;
    color: #fff;
    font-size: 12px;
}
a.nav-link:hover i {
    color: #CF9B46 !important;
}
section.blog-tabs .nav-tabs {
    border-bottom: unset;
    justify-content: center;
    margin: 0 0 40px;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

section.blog-tabs .nav-tabs .nav-link {
    margin-bottom: 0;
    background: 0 0;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    font-family: poppins !important;
    color: #000;
}
section.blog-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #CF9B46 !important;
    border-top: unset;
    border-right: unset !important;
    border-left: unset;
}
section.blog-tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: transparent;
    color: #CF9B46;
    border-bottom: 3px solid #CF9B46 !important;
    padding-bottom: 5px;
    font-family: 'Poppins' !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}
li.nav-item.dropdown i {
    color: #fff;
    font-size: 12px;
}
.dropdown, .dropup {
    position: relative;
    display: flex;
        align-items: stretch;
    flex-direction: column;
}
.blog-start {
    text-align: center;
    padding: 70px 0;
}
.blog-bottom-main p, .blog-bottom-main li {
    color: #000000c4;
    font-family: 'Poppins' !important;
    font-size: 19px;
    line-height: 34px;
    margin: 0 0 30px;
    text-transform: none;
}
.blog-bottom-main p {
    font-weight: 400;
    font-size: 18px;
    /*text-transform: capitalize;*/
    color: #292929;
}
.blog-start h4 {
    font-size: 48px;
    text-transform: capitalize;
    line-height: 70px;
    margin: 0 0 30px;
}
section.blog-tabs {
    padding: 80px 0px 0px 0px;
}
.blog-img img {
    width: 70%;
}
.blog-start p span i {
    padding-right: 10px;
}
.blog-bottom-main h4 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}
.blog-img-two img {
    width: 100%;
    margin-bottom: 20px;
}
.blog-bottom-main h5 {
    font-weight: 800;
    font-family: 'lmromandunh10';
    font-size: 32px;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.nav-link:focus, .nav-link:hover {
    color: #0a58ca;
}
.tab-content>.active {
    display: block;
}
.row.visiblity {
    display: flex;
    justify-content: center;
}
.tb-box-content {
    margin: 0 0 60px;
}
.tb-box-content img {
    width: 100%;
    min-height: 264px;
    object-fit: cover;
    margin: 0 0 20px;
    border-radius: 10px;
}
.tb-box-content h4 {
    color: #000;
    font-size: 17px;
    font-family: 'Poppins' !important;
    font-weight: 500;
}
section.blog-tabs .nav-tabs .nav-link {
    border: 3px transparent;
}
.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .content {
    height: auto;
    width: 30%;
    font-size: 24px;
    line-height: 100px;
    text-align: center;
    margin: 15px;
    display: none;
}
  #loadMore {
    text-align: center;
    transition: .3s;
  }
  .loadmore-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
  .noContent {
    color: #000 !important;
    background-color: transparent !important;
    pointer-events: none;
  }

.hdr-form {
    position: relative;
    z-index: 99;
    padding: 30px;
    border-radius: 15px;
}
.hdr-form {
    background-color: #fff;
}
.hdr-form h3 {
    color: #000;
    margin: 0 0 8px;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
}
.hdr-form input, .hdr-form select {
    width: 100%;
    border: 1px solid #717171;
    padding: 5px 5px;
    margin: 8px 0 0;
}
.serv-looking {
    margin: 25px 0 5px;
}
.serv-looking h3 {
    color: #000;
    font-size: 18px;
    text-align: left;
    font-weight: 900;
}
.serv-looking label {
    margin-right: 16px;
    display: inline-block;
    color: #717171;
}
.serv-looking span {
    font-size: 14px;
}
.serv-looking input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    width: 10px;
    height: 10px;
}
.serv-looking input {
    width: auto;
    margin-right: 2px;
    transform: scale(1.4);
}
.row.my {
    min-height: 0 !important;
    padding: 0 !important;
}
button.an-primary-btn.yellow.form-btn {
    width: 90%;
    margin: 10px 26px;
}
.book-gallery {
    text-align: center;
    padding: 60px 0;
}
.book-glry-title h2 {
    line-height: 48px;
    font-size: 33px;
    font-weight: 800;
    color: #000;
}
.book-glry-title p {
    color: #6c757d;
    font-size: 18px;
    padding-bottom: 12px;
}
.packagesSec{/* background: #1d3f50; */padding:20px 0;}
.packagesSec h2 {
    color: #000;
    text-align: center;
    font-weight: 900;
}
.packagesSec .pkBox{transition:200ms;background-color: #f5f5f5;text-align:center;color:#000;margin:30px 0;cursor: pointer;border-radius: 10px;padding:10px;box-shadow: 0 0 20px 2px rgb(92 92 92 / 40%);border-top: 6px solid;}
.packagesSec .pkBox:hover{ background:#CF9B46; color:#000;}
.packagesSec .pkBox:hover h3{ color:#000;}
.packagesSec .pkBox:hover li:before{  background:#000;}
.packagesSec .pkBox:hover li{ color:#000}
.packagesSec .pkBox:hover .btn{ background:#000; color:#fff;}
.packagesSec .pkBox:hover .btn.chat{ background:none; color:#000; border:1px solid #000;}
.packagesSec .pkBox:hover sup{color: #000;}
.packagesSec .pkBox h3 {
    text-align: center;
    padding: 8px;
    font-size: 30px;
    color: #000000;
    text-transform: uppercase;
    font-family: 'Teko', sans-serif;
    margin: 0;
    font-weight: 800;
}
.packagesSec .pkBox span{font-family: 'Teko', sans-serif;text-align:center;padding: 0px;display:block;font-size: 35px;font-weight:900;background: #000;margin-bottom: 13px;}
.packagesSec .pkBox span sup{text-align:center;/* margin: 49px 0 0; *//* display:block; */color: #ff0000;font-size: 26px;font-weight: 400;top: -3px;text-decoration: line-through;}
.packagesSec ul{height: 172px;overflow-y:scroll;text-align:left;padding:0 10px;margin-bottom: 14px !important;}
.packagesSec ul li{position:relative;font-size: 14px;margin:10px 0;padding-left:15px;}
.packagesSec .pkBox a{
    border: 1px solid #CF9B46;
    display: inline-block;
    padding: 10px 20px;
    background: #CF9B46;
    border-radius: 10px 10px 10px 0;
    margin-left: 12px;
    font-weight: 400;
    color: #fff;
    margin: 7px 0;
    }
.packagesSec .pkBox .chat{background:none;border: 1px solid #000;color: #000;}
.packagesSec .pkBox .chat.calle{
  background:#fff;
  border: 1px solid #fff;
  color: #000 !important;
  background-color: #fff;
  position:relative;
  z-index: 999;
}

.packagesSec .pkBox .chat.calle::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: #CF9B46;
  z-index: -1;
  animation: ripple 1.5s ease-out infinite;
  animation-delay: 0.4s;
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.packagesSec ul li:before{ width:7px; height:7px; background:#CF9B46; content:''; display:inline-block; border-radius:30px; position:absolute; left:0; top:8px;}
.packagesSec ul::-webkit-scrollbar {
  width: 0.5em;
}
 
.packagesSec ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
.packagesSec ul::-webkit-scrollbar-thumb {
  background-color: #CF9B46;
  outline: 1px solid slategrey;
}

.calle{
  background:#ffffff;
  border: 1px solid #000 !important;
  color: #000 !important;
  background-color: #ffffff;
  position:relative;
  z-index: 9999;
}
.calle:hover{
  background-color: #CF9B46 !important;}
.calle::before {
    border-radius: 10px 10px 10px 0;
  content: "";
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-color: #CF9B46;
  z-index: -1;
  animation: ripple 1.2s ease-out infinite;
  animation-delay: 0.6s;
}
.divider {
    display: flex;
    justify-content: center;
}
span.price {
    background: #000;
    width: 75%;
    height: 5px;
    border-radius: 50px;
}
section.testimonial-sec .slick-dots li button::before {
    content: '';
    height: 5px;
    width: 25px;
    background-color: #042a3d
}

.tmls-title {
    width: 60%;
    margin: 0 auto
}

.tmls-blk::-webkit-scrollbar {
    width: 5px
}

.tmls-blk::-webkit-scrollbar-track {
    border-radius: 10px
}

.tmls-blk::-webkit-scrollbar-thumb {
    background: #004224;
    border-radius: 10px
}

.tmls-blk::-webkit-scrollbar-thumb:hover {
    background: #004224
}

.tmls-blk {
    border-radius: 15px;
    padding: 25px;
    margin: 30px 10px;
    overflow-y: scroll;
    height: 260px
}

.tmls-blk li {
    color: #f5bd07;
    font-size: 20px
}

.tmls-blk p {
    margin: 10px 0
}

.tmls-blk h5 {
    color: #175b71;
    font-size: 18px;
    font-weight: 800;
}
.tmls-title h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #000;
}
.tmls-title p {
    text-align: center;
    font-size: 17px;
    color: #8e8c8c;
}
.review-img {
    margin: 30px 0 0;
    display: flex;
    justify-content: center;
}
.tmls-blk {
    border-radius: 15px;
    padding: 25px;
    margin: 30px 10px;
    overflow-y: scroll;
    height: 260px;
    text-align: center;
}

.tmls-blk {
    background-color: #efefef;
}
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.tmls-blk li {
    display: inline-block;
}
.myfooterlogo img {
    width: 52%;
    margin-left: -18px;
}
.mydisclamer p {
    color: #fff;
    font-size: 16px;
}
.mark_list {
    display: flex;
}
ul.nylist_mark {
    /* display: flex; */
    padding-left: 50px;
}
.mark_btn {
    display: flex;
    justify-content: center;
}
.mark_head h2 {
    font-size: 24px;
    text-align: center;
    padding-top: 15px;
}
.trusted_img {
    display: flex;
    justify-content: space-around;
}
.trusted_img img {
    width: 15%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-top: 3px;
}
.mark_form {
    padding: 34px 10px;
    border-radius: 10px;
    box-shadow: 10px 12px 10px #000;
    border: 1px solid #fff;
    background: transparent;
}
.mark_form h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #CF9B46;
}

/* whatsapp */
.contact-whatsapp {
    position: fixed;
    z-index: 99999;
    bottom: 100px;
    left: 25px;
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .5s ease infinite alternate;
  }
  
  .contact-whatsapp img {
    max-width: 70%;
  }
  
  @keyframes scrollDownAnimation {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(-10px);
    }
  }
  
  @-moz-keyframes scrollDownAnimation {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(-10px);
    }
  }
  
  @-webkit-keyframes scrollDownAnimation {
    from {
      transform: translateY(0);
    }
  
    to {
      transform: translateY(-10px);
    }
  }
  
  
  .reviews-container {
            max-width: 1200px;
            margin: 120px auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .review-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .video-container {
            position: relative;
            width: 100%;
            padding-top: 177.78%; /* 9:16 aspect ratio for Shorts */
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .review-title {
            padding: 15px;
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-align: center;
        }
        
        footer {
            margin-top: 40px;
            text-align: center;
            color: #666;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .reviews-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 480px) {
            .reviews-container {
                grid-template-columns: 1fr;
            }
        }