@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}


:root {
  --theme: #22acac;
  --gradient: linear-gradient(90deg, #FFFDFC, #FFF5F1, #FDE7DB);
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}


/***** Font Files *****/



/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}

/* project css start */

header {
    position: absolute;
    width: 100%;
    z-index: 99;
    transition: 0.3s ease-in-out;
    background: var(--gradient);
    padding: 5px 0;
}

header a.logo_here {
    display: block;
    font-size: 25px;
    font-weight: 600;
    color: #000;
    margin-left: 0px;
}

header a.logo_here > img {
    width: 120px;
    transition: 0.3s ease-in-out;
    margin-right: 10px;
}

.btn1 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    transition: 0.5s;
    width: fit-content;
    border-radius: 30px;
    height: 50px;
    padding: 0 30px;
    padding-left: 5px;
}

.btn1 > i {
    background: #fff;
    color: var(--theme);
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.btn1:hover {
    color: var(--theme);
    background: transparent;
    border-color: var(--theme);
    transition: 0.3s ease-in-out;
}

.btn1:hover > i {
    color: #000;
    border-color: #000;
    transition: 0.3s ease-in-out;
}

.btn2 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--theme);
    color: #fff;
    border: 2px solid var(--theme);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: center;
    transition: 0.5s;
    width: fit-content;
    border-radius: 30px;
    height: 50px;
    padding: 0 30px;
    padding-left: 5px;
}

.btn2 > i {
    background: #000;
    color: #fff;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    font-size: 16px;
}

.btn2:hover {
    color: #000;
    background: transparent;
    border-color: #000;
    transition: 0.3s ease-in-out;
}

.btn2:hover > i {
    background: #fff;
    color: var(--theme);
}

header ul.header_btns {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

header .row {
    align-items: center;
}

.banner {
    background: var(--gradient);
    padding-top: 170px;
    padding-bottom: 60px;
}

.banner .banner_textt > h1 {
    position: relative;
    font-size: 44px;
    font-weight: 600;
    line-height: 48px;
    margin: 0 0 20px 0;
    color: #000;
    padding-bottom: 20px;
}

.banner .banner_textt > h1:after {
    position: absolute;
    content: "";
    background: #000;
    width: 80px;
    height: 5px;
    left: 0;
    bottom: 0;
}

.banner .banner_textt > p {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.banner .banner_textt > ul:not(.banner_btns) > li {
    font-size: 18px;
    line-height: 20px;
    color: #000;
    margin: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner .banner_textt > ul:not(.banner_btns) {
    margin: 30px 0px;
}

.banner .banner_textt > ul:not(.banner_btns) > li > i {
    width: 20px;
    border: 1px solid;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
}

.banner .banner_textt > ul:not(.banner_btns) > li > span {
    color: #fff;
    background: #000;
    padding: 2px 5px;
    font-weight: 600;
}

.banner .banner_textt > .banner_btns {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 10px;
}

.inner-published-form {
    background: #fff;
    padding: 20px 20px;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 0 5px 15px -4px #b2b2b2;
    margin-top: 0px;
}

.inner-published-form > h2 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 30px;
    color: #00112b;
    font-family: Poppins, sans-serif;
    margin: 0px 0 10px 0;
    line-height: 40px;
    text-align: center;
}

.inner-published-form .form-group > select {
    border: 2px solid #b2b2b2;
    box-shadow: 0 5px 5px -1px #eee;
    font-size: 16px;
    color: #00112b;
    padding: 10px 30px 10px 10px;
    cursor: pointer;
    font-weight: 400;
    border-radius: 0px;
    width: 100%;
}

.inner-published-form .form-group {
    margin: 0 0 15px 0;
}

.inner-published-form > form {
    padding: 0 20px;
    margin-top: 20px;
}

.inner-published-form .form-group-select {
    margin-bottom: 15px;
}

.inner-published-form .form-group-select > span {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin: 0px 0 10px 0;
    line-height: 28px;
    display: block;
}

.inner-published-form .form-group-select > .form-check-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.inner-published-form .form-group-select > .form-check-flex > .form-check {
    margin: 0 5px 10px;
    width: 45%;
    display: flex;
    align-items: center;
    padding: 0;
}

.inner-published-form .form-group-select > .form-check-flex > .form-check > .form-check-input {
    border: 1px solid #000;
    outline: none;
    box-shadow: none;
    margin: 0 10px 0 0;
    cursor: pointer;
}

.inner-published-form .form-group-select > .form-check-flex > .form-check > .form-check-label {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.inner-published-form .form-group > input {
    border: 2px solid #b2b2b2;
    width: 100%;
    height: 45px;
    padding: 0 20px;
    border-radius: 0px;
    box-shadow: 0 5px 5px -1px #eee;
    font-size: 16px;
    color: #00112b;
    font-weight: 400;
}

.inner-published-form .form-group > .submit-btn {
    background-color: #000;
    color: #fff;
    font-weight: 500;
    transition: all .3s ease-in-out;
    border: 2px solid #000;
    margin: 0 10px 0 0;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    width: 100%;
    border-radius: 0px;
}

.inner-published-form .form-group > .submit-btn:hover {
    background-color: #fff;
    color: #000;
}

.banner .row {
    align-items: center;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%,
    20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}


.btn1 > i:before {
    animation: tada 1.5s ease infinite;
}

.btn2 > i:before {
    animation: tada 1.5s ease infinite;
}

.portfolio_sec {
    padding: 70px 0px;
}

.portfolio_sec ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.portfolio_sec .portfolioSlider .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.portfolio_sec .portfolioSlider ul.slick-dots {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.portfolio_sec .portfolioSlider ul.slick-dots > li {
    width: 50px;
    height: 5px;
}

.portfolio_sec .portfolioSlider ul.slick-dots > li > button {
    border: 0;
    background: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio_sec .portfolioSlider ul.slick-dots > li > button:after {
    position: absolute;
    content: "";
    background: #636363;
    width: 100%;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
}

.portfolio_sec .portfolioSlider ul.slick-dots > li.slick-active > button:after {
    opacity: 1;
    background: #000;
}

.portfolio_sec .portfolioSlider ul.slick-dots > li.slick-active {
    opacity: 1;
}

.our_book_publishing {
    padding: 40px 0px;
    background: var(--gradient);
    padding-bottom: 0;
}

.our_book_publishing .book_publishing_img {
    text-align: center;
}

.theme_heading > h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #000000;
    padding-top: 0px;
    position: relative;
    padding-bottom: 20px;
}

.theme_heading > p {
    color: #000000;
    font-size: 18px;
    margin: 25px 0 15px;
    line-height: 1.6;
    font-weight: 500;
}

.our_book_publishing ul:not(.btnss) > li {
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    margin: 15px 0;
    font-size: 17px;
    position: relative;
    padding-left: 30px;
}

.our_book_publishing ul:not(.btnss) > li > i {
    background: #000;
    color: #fff;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.btn3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 600;
    color: #000;
    transition: 0.3s ease-in-out;
}

.btn3:hover {
    transition: 0.3s ease-in-out;
    color: var(--theme);
}

.btn3 > i {
    animation: tada 1.5s ease infinite;
}

ul.btnss {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0px;
}

.theme_heading > p:last-child {
    margin-bottom: 0;
}

.theme_heading > p > a {
    color: #000;
    text-decoration: underline;
}

.process_secc {
    padding: 70px 0px;
}

.process_secc .theme_heading > h2 {
    text-align: center;
}

.theme_heading > h2:before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 100px;
    height: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0px;
}
.our_book_publishing .theme_heading > h2:before {
    margin: 0;
}

.process_secc .process_box > span {
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #000;
    margin: 0 auto;
    box-shadow: 0 0 20px 10px #e2e2e2;
    position: relative;
    z-index: 1;
}

.process_secc .process_box > h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.035em;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.process_secc .process_box > p {
    font-size: 16px;
    min-height: 80px;
    line-height: 26px;
    margin: 15px 15px 0;
    font-weight: 500;
    text-align: center;
}

.process_secc .process_box {
    margin-top: 20px;
}

.packages_secc {
    padding: 70px 0px;
}

.packages_secc .theme_heading > h2 {
    text-align: center;
}

.packages_secc .packages_box {
    background: #FFFFFF;
    border: 1px solid #22acac;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.packages_secc .packages_box > h3 {
    background: #000;
    border-radius: 6px 6px 0px 0px;
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.packages_secc .packages_box > .packages_box_body {
    padding: 0 25px;
    padding-bottom: 30px;
}

.packages_secc .packages_box > .packages_box_body > span {
    display: block;
    text-align: center;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
    margin: 20px 0px;
    font-size: 28px;
}

.packages_secc .packages_box > .packages_box_body > ul {
    height: 360px;
    overflow-y: scroll;
}

.packages_secc .packages_box > .packages_box_body > ul > li {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #E4E4E4;
    padding-left: 30px;
    position: relative;
    color: #000;
}

.packages_secc .packages_box > .packages_box_body > ul > li > i {
    font-size: 12px;
    background: #000;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.packages_secc .packages_box > .packages_box_body .btn1 {
    border-radius: 5px;
    padding: 0 30px;
    margin: 0 auto;
}


.packages_secc .packages_box > .packages_box_body > ul::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

.packages_secc .packages_box > .packages_box_body > ul::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

.packages_secc .packages_box > .packages_box_body > ul::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.our_book_publishing.before_pubb {background: #f8f9fa;}

.our_book_publishing .row {
    align-items: center;
}

.our_book_publishing.before_pubb .btn2 {
    padding: 0 20px;
}

.services_secc {
    padding: 70px 0px;
    background: var(--gradient);
}

.services_secc .theme_heading > h2 {
    text-align: center;
}

.services_secc .services_bx {
    background: #F8FDFF;
    border-radius: 7px;
    width: auto;
    margin: 0 5px;
    position: relative;
    transition: 0.5s ease-In-Out;
    box-shadow: 1px 6px 4px 0px #dcdcdc;
    height: 100%;
    text-align: center;
    padding: 30px 10px;
}

.services_secc .services_bx > img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.services_secc .services_bx > h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 18px;
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
}

.services_secc .services_bx > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #000;
}

.services_secc .services_bx > .btn1 {
    border-radius: 5px;
    padding: 0 20px;
    margin: 0 auto;
    font-size: 16px;
    height: 40px;
}

.services_secc .services_bx:hover {
    background: transparent;
}

.our_book_publishing.seen_online {
    background: transparent;
}

.our_book_publishing.seen_online .theme_heading > h2 {
    font-size: 43px;
}

.faqs_secc {
    padding: 70px 0px;
    background: #f8f9fa;
}

.faqs_secc .theme_heading > h2 {
    text-align: center;
}

.faqs_secc .faqs_wrpr {
    width: 80%;
    margin: 0 auto;
}

.faqs_secc .faqs_wrpr .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #adadad;
}

.faqs_secc .faqs_wrpr .accordion-item .accordion-button {
    background: transparent;
    color: #000;
    font-size: 20px;
    border: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 600;
}

.faqs_secc .faqs_wrpr .accordion-item .accordion-body {
    padding: 0;
}

.faqs_secc .faqs_wrpr .accordion-item .accordion-body > p {
    margin: 0;
    padding-bottom: 20px;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

.faqs_secc .accordion-button::after {content: "+";background: #000;font-size: 20px;background-image: none;color: #fff;display: flex;align-items: center;justify-content: center;border-radius: 50%;width: 30px;height: 30px;}

.faqs_secc .accordion-button:not(.collapsed)::after {
    content: "-";
}

.free_quote_secc {
    padding: 70px 0px;
    background: var(--gradient);
}

.free_quote_secc .theme_heading > h2 {
    text-align: center;
}

.free_quote_secc .theme_heading > p {
    text-align: center;
    font-size: 16px;
}

.free_quote_secc form {
    background-color: #fff;
    text-align: center;
    border-radius: 12px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 15px;
    width: 60%;
    box-shadow: 0 3px 18px rgb(0 0 0 / 14%);
}

.free_quote_secc form > .formGroup > input {
    width: 100%;
    height: 50px;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    color: #000;
    margin: 5px 0;
    border-radius: 6px;
    padding: 12px;
    font-family: "Montserrat";
    outline: 0;
    transition: all 0.3s ease-in-Out;
    font-size: 14px;
    position: relative;
}

.free_quote_secc form > .formGroup > textarea {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #e1e1e1;
    color: #000;
    margin: 5px 0;
    border-radius: 6px;
    padding: 12px;
    font-family: "Montserrat";
    outline: 0;
    transition: all 0.3s ease-in-Out;
    font-size: 14px;
    position: relative;
    resize: none;
    height: 85px;
}

.free_quote_secc form .form-btn.btn {
    background: var(--theme);
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: normal;
    padding: 9px 34px;
    line-height: 28px;
    width: 100%;
}

footer {
    background: var(--theme);
    padding: 20px 0px;
}

footer .row {
    align-items: center;
}

footer p {
    margin: 0;
    color: #fff;
}

footer ul {
    margin: 0;
}

footer privacy-terms {
    display: flex;
    align-items: center;
    justify-content: end;
}

footer .privacy-terms {
    display: flex;
    align-items: center;
    justify-content: end;
    color: #fff;
    gap: 10px;
}

footer .privacy-terms > a {
    color: #fff;
    font-size: 16px;
}

.modal-content {
    padding: 30px 0;
    border: 2px solid #22acac;
}

.modal-header .close {
    width: 14%;
    padding: 0px 0px 10px 0px;
    margin: 0;
    height: 3rem;
    position: absolute;
    top: 0px;
    color: #ffffff;
    font-size: 50px;
    right: 0px;
    background: #22acac;
    opacity: 1;
    border-radius: 0 0 0 20px;
    border: 0;
}

.modal-title {
    font-weight: 800;
    font-size: 30px;
    color: #494949;
    position: relative;
    line-height: 1.4;
}

.modal-title span {
    color: #22acac;
}

.modal-content .form-control {
    border: 1px solid #22acac;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 10px;
    resize: none;
}

.modal-content .modal-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 0;
}

.modal-content .modal-body {
    padding-top: 0;
    padding-bottom: 0;
}

.modal-content .modal-footer {
    padding-bottom: 0;
    padding-top: 0;
}

.modal-content .modal-footer button.btn.btn-success {
    width: 100%;
    background: var(--theme);
    border: 0;
    height: 45px;
    font-weight: 500;
}

.banner .banner_textt > .banner_btns a.btn2 {
    padding: 0 30px;
}

header.sticky {
    position: fixed;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 4px 0px #0000001a;
}

header.sticky a.logo_here > img {
    width: 100px;
    transition: 0.3s ease-in-out;
}


