/* @import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,700,900|Open+Sans:300,400,600,700'); */


#jqcheck {
    background: #fff9d7;
    text-align: center;
    color: #333;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: bold;
    position: fixed;
    z-index: 9991;
    width: 100%;
    font-family: 'Bai Jamjuree', sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
}

/* text selection color */
::-moz-selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--theme-white);
    text-shadow: none;
}

/* browser scroller style */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: #ecedf1;
    -webkit-border-radius: 0px;
    border-left: 1px solid #888;
}

::-webkit-scrollbar-thumb:vertical {
    -webkit-border-radius: 0px;
    background: var(--primary-color);
}


@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {
        -webkit-appearance: none !important;
        line-height: 28px !important;
    }
}

body {
    font-family: 'Bai Jamjuree', sans-serif;
    color: var(--default-color);
    font-size: var(--base-font-size);
    position: relative;
    overflow-x: hidden;
}


preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.preloader .preloader-after,
.preloader .preloader-before {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to right, #cb568a, #b10655);
}

.preloader .preloader-before {
    top: 0;
}

.preloader .preloader-after {
    bottom: 0;
}

.preloader .preloader-block {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
}

.preloader .preloader-block .title {
    position: absolute;
    left: 0;
    bottom: calc(50% + 16px);
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
}

.preloader .preloader-block .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    font-weight: 700;
    letter-spacing: 8px;
    font-size: 24vw;
    color: rgba(255, 255, 255, .14);
    z-index: 1;
}

.preloader .preloader-block .loading {
    position: absolute;
    top: calc(50% + 16px);
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fff;
    -webkit-animation: blink-animation 2.2s linear infinite;
}

.preloader .preloader-bar {
    position: absolute;
    z-index: 2;
    top: calc(50% - 1px);
    right: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .14);
}

.preloader .preloader-bar .preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    height: 100%;
    width: 0;
    background: #fff;
}

@-webkit-keyframes blink-animation {
    0% {
        opacity: 0
    }
}

@-moz-keyframes blink-animation {
    0% {
        opacity: 0
    }
}

@keyframes blink-animation {
    0% {
        opacity: 0
    }
}

.preloader.hidden-main {
    opacity: 0;
    visibility: hidden
}

.preloader .preloader-after,
.preloader .preloader-before {
    transition: .6s ease-in-out
}

.hidden .preloader-after {
    transform: translate(0, 100%)
}

.hidden .preloader-before {
    transform: translate(0, -100%)
}

.loader-width .preloader-progress {
    width: 100% !important
}

.preloader .preloader-bar .preloader-progress {
    transition: width 3.2s;
    transition-timing-function: cubic-bezier(.1, .5, 1.3, .1)
}

.bubbles_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
    pointer-events: none
}

@-webkit-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-moz-keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@keyframes animateBubble {
    0% {
        margin-top: 20%
    }

    to {
        margin-top: -30%
    }
}

@-webkit-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@-moz-keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

@keyframes sideWays {
    0% {
        margin-left: 0
    }

    to {
        margin-left: 25px
    }
}

.x1 {
    -webkit-animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 15s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 6%;
    top: 45%;
    background: #ffb739
}

.x2 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 5%;
    top: 80%;
    background: #fc4fdd
}

.x3 {
    -webkit-animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 18s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 10%;
    top: 40%;
    background: #5ed5cb
}

.x4 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 20%;
    top: 0;
    background: #3de4a3
}

.x5 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 30%;
    top: 50%;
    background: #fc4fb1
}

.x6 {
    -webkit-animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 11s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 50%;
    top: 0;
    background: #2c4aff
}

.x7 {
    -webkit-animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 10s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 65%;
    top: 70%;
    background: #ffb739
}

.x8 {
    -webkit-animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    animation: animateBubble 12s linear infinite, sideWays 3s ease-in-out infinite alternate;
    left: 80%;
    top: 10%;
    background: #8f3de4
}

.x9 {
    -webkit-animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    animation: animateBubble 19s linear infinite, sideWays 4s ease-in-out infinite alternate;
    left: 90%;
    top: 50%;
    background: #fff339
}

.x10 {
    -webkit-animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    animation: animateBubble 16s linear infinite, sideWays 2s ease-in-out infinite alternate;
    left: 80%;
    top: 80%;
    background: #fc4f4f
}

.bubble {
    border-radius: 50%;
    box-shadow: none;
    height: 5px;
    position: absolute;
    width: 5px
}





/* font family */
.ff-primary {
    font-family: 'Bai Jamjuree', sans-serif;
}

.ff-secondary {
    font-family: 'Bai Jamjuree', sans-serif;
}

/* font colors */
.fc-primary {
    color: var(--primary-color);
}

.fc-secondary {
    color: var(--secondary-color);
}

.fc-dark {
    color: var(--theme-dark);
}

.fc-lite {
    color: var(--theme-lite);
}

/* buttons */
.primary-btn,
.secondary-btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 8px 15px;
    position: relative;
    display: table;
    border-radius: 3px;
}

.primary-btn:after,
.secondary-btn:after {
    content: "\e957";
    font-family: 'icomoon' !important;
    font-size: 13px;
    color: white;
    padding-left: 10px;
    display: table-cell;
    vertical-align: middle;
}

.primary-btn {
    background: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background: var(--primary-color-dark);
    color: white;
}

.secondary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background: var(--secondary-color-dark);
    color: white;
}

.banner-btn {
    text-transform: capitalize;
    display: inline-block;
    transform: translateY(0rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #fff !important;
    background-color: transparent;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #fff !important;
}


.secpad-100 {
    padding: 100px 0;
}


.sm-btn {
    font-size: 14px;
}

.md-btn {
    font-size: 16px;
}

.lg-btn {
    font-size: 18px;
}

.xl-btn {
    font-size: 20px;
}

/* headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
    margin: 0;
    padding: 0;
}

h1,
.h1,
h2,
.h2 {
    font-family: 'Bai Jamjuree', sans-serif;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Bai Jamjuree', sans-serif;
    padding-bottom: 10px;
    color: var(--theme-dark);
}

h2,
.h2 {
    font-size: 6.7vmin;
}

h3,
.h3 {
    font-size: var(--font-size-h3);
    font-weight: 600;
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

p {
    /*font-size: var(--base-font-size);*/
}

p {
    font-weight: 400;
    line-height: 1.4;
    padding: 0 0 20px;
    margin: 0px;
    color: #687087;
}

/*** theme sections padding ***/
.sec-padding-100 {
    padding: 100px 0;
}

.sec-padding-90 {
    padding: 90px 0;
}

.sec-padding-80 {
    padding: 80px 0;
}

.sec-padding-70 {
    padding: 70px 0;
}

.sec-padding-60 {
    padding: 60px 0;
}

.sec-padding-xlarge {
    padding: 50px 0;
}

.sec-padding-large {
    padding: 40px 0;
}

.sec-padding-medium {
    padding: 30px 0;
}

.sec-padding-small {
    padding: 25px 0;
}

.sec-padding-xsmall {
    padding: 10px 0;
}

/*** theme sections margin ***/
.sec-margin-100 {
    margin: 100px 0;
}

.sec-margin-90 {
    margin: 90px 0;
}

.sec-margin-80 {
    margin: 80px 0;
}

.sec-margin-70 {
    margin: 70px 0;
}

.sec-margin-60 {
    margin: 60px 0;
}

.sec-margin-xlarge {
    margin: 50px 0;
}

.sec-margin-large {
    margin: 40px 0;
}

.sec-margin-medium {
    margin: 30px 0;
}

.sec-margin-small {
    margin: 25px 0;
}

.sec-margin-xsmall {
    margin: 10px 0;
}

/*** no padding, no marging ***/
.p-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pl-0 {
    padding-left: 0px;
}

.pr-0 {
    padding-right: 0px;
}

.m-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mr-0 {
    margin-right: 0px;
}




.tt-uppercase {
    text-transform: uppercase;
}

.tt-capitalize {
    text-transform: capitalize;
}




p strong {
    color: black;
}

p span {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

img {
    border: 0px;
    outline: none;
}

/*img { max-width: 100%;  }*/
ul,
li {
    list-style-type: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

h2,
.h2 {
    color: #171717;
    line-height: 1.2;
    font-weight: 700;
    padding: 0 0 15px 0;
    position: relative;
    letter-spacing: -1px;
}

h2 span,
.h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
}

.list-simple {
    list-style: none;
    margin: 0 0 15px 0;
    width: 100%;
    display: inline-block;
}

.list-simple li {
    color: var(--default-color);
    padding: 0 0 10px 16px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
}

.list-simple li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 13px;
    color: var(--secondary-color);
    content: "\e93a";
    font-family: 'icomoon' !important;
}

/*** morefull block link ***/
.moreFull {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-indent: -9999px;
}

/*** transition ***/
.transition {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** scale with transition ***/
.scale-with-transition {
    -webkit-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

/* header 
------------------------------------*/


.btn-1 {
    color: #fff;
    background: #ff9f1c;
    padding: 15px 30px;
    font-size: 16px;
    border: blanchedalmond;
    border-radius: 7px;
    font-weight: 500;
    transition: 0.5s all;
    margin: 0;
    display: inline-block;
}

.btn-1:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #fff;
}

.btn-2 {
    color: #ff9f1c;
    font-weight: 600;
    font-size: 16px;
    background-color: #fff0;
    padding: 15px 30px;
    border-radius: 7px;
    border: 1px solid;
    transition: 0.5s all;
    margin: 0 10px 0 10px;
    display: inline-block;
}

.btn-2:hover {
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #ff9f1c;
}

.main-heading {
    color: #000;
    font-size: 42px;
    font-weight: 600;
}

.main-heading span {
    color: #ff9f1c;
}

.main-pera {
    font-size: 16px;
    font-weight: 600;
}



header {
    padding: 10px 0 15px 0;
    background: #fafafa;
}

header .logowrp {}

header .logowrp img {
    width: 170px;
}

header .navwrp {}

header .navwrp ul {
    margin: 0;
    text-align: right;
}

header .navwrp ul li {
    display: inline-block;
    margin: 0 0 0 20px;
}

header .navwrp ul li a {
    color: #1b122f;
    font-weight: 700;
}

header .navwrp ul li a img {
    width: 40px;
}

header .navwrp ul li a.btnmain {
    background: #ff9f1c;
    color: #fff;
    padding: 16px 20px;
    border-radius: 6px;
    font-weight: 600;
}

header .navwrp ul li a.chatbtn {
    padding: 13px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #ff9f1c;
}


.home-banner-wrp {
    /*background-image: url(../images/contact-banner.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0 70px;
    background-position: 0;
        background: #fbfbfb;
        position: relative;
        z-index: 10;
}


.banner-book-form {
    position: absolute;
    z-index: 0;
    top: 35%;
    width: 350px;
    right: 38%;
    transform: rotate(-20deg);
}

.home-banner-wrp .txtwrp h2 {
    font-size: 47px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.home-banner-wrp .txtwrp h2 span {
    color: #ff9f1c;
}

.home-banner-wrp .txtwrp h4 {
    color: #ff9f1c;
    font-size: 25px;
    text-transform: capitalize;
    padding: 0 0 15px;
    font-weight: 400;
}

.home-banner-wrp .txtwrp p {
    color: #000;
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
    width: 70%;
}

.home-banner-wrp .imgwrp {}

.home-banner-wrp .imgwrp ul {
    margin: 0;
}

.home-banner-wrp .imgwrp ul li {
    display: inline-block;
    margin: 0 30px 0 0;
}

.home-banner-wrp .imgwrp ul li img {
    width: 120px;
}

.home-banner-wrp .btnwrp {
    display: block;
    padding: 30px 0 0;
}

.home-banner-wrp .btnwrp .btn-2 {
    background: #fff;
}

.home-banner-wrp .btm-logos {}

.home-banner-wrp .btm-logos ul {
    margin: 40px 0 0;
}

.home-banner-wrp .btm-logos ul li {
    display: inline-block;
}

.home-banner-wrp .btm-logos ul li img {
    width: 150px;
}

.home-banner-wrp .pricewrp {
    display: block;
    padding: 10px 0 0;
}

.home-banner-wrp .pricewrp h2 {
    font-size: 34px;
    padding: 0 0 30px;
}

.home-banner-wrp .pricewrp ul {}

.home-banner-wrp .pricewrp ul li {
    display: block;
    margin: 0 20px 10px 0px;
    color: #000;
    font-weight: 600;
}

.home-banner-wrp .pricewrp ul li h4 {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    width: 140px;
    margin: 0 0 0 10px;
}

.home-banner-wrp .pricewrp ul li img {
    width: 30px;
    vertical-align: baseline;
}

.home-banner-wrp .frmbtmwrp {
    display: block;
    padding: 0 0 0 50px;
}

.home-banner-wrp .frmbtmwrp .txtdiv {
    display: inline-block;
    width: 80%;
    margin: 0 0 0 20px;
    vertical-align: top;
}

.home-banner-wrp .frmbtmwrp img {
    width: 55px;
}

.home-banner-wrp .frmbtmwrp h4 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.home-banner-wrp .frmbtmwrp p {
    color: #000;
    font-size: 16px;
}






.blink {
    animation: blinker 1s step-start infinite;
}

@keyframes blinker {
    50% {
        color: #ff9f1c;
    }
}




.cstm-banner-form {
    background: #ffffff;
    padding: 0 10px;
    position: relative;
    z-index: 9;
    border-radius: 9px;
    width: 90%;
    display: inline-block;
    box-shadow: 0px 0px 30px #0000001f;
    text-align: center;
    margin: 40px 0 30px;
    float: right;
}

.cstm-banner-form .intl-tel-input {
    width: 100%;
    margin-bottom: 18px;
}

.cstm-banner-form h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.cstm-banner-form form {
    padding: 30px 20px;
    /* background: #f435351f; */
    border-radius: 22px;
}

.cstm-banner-form h3 {
    font-size: 22px;
    line-height: 33px;
    font-weight: 700;
    font-family: poppins, sans-serif !important;
    color: #000;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
}

.cstm-banner-form h3 span {
    font-weight: 700;
}

.cstm-banner-form a {
    display: inline-block;
    margin: 0 0 20px;
    color: #fff;
    position: relative;
    font-family: poppins, sans-serif;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 15px;
}

.cstm-banner-form select,
.cstm-banner-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    border: 1px solid #d4d4d4;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    font-family: poppins, sans-serif;
    height: 43px;
    border-radius: 10px;
    background: transparent;
    color: #000;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
}

.cstm-banner-form textarea {
    min-height: 115px;
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #d4d4d4 !important;
    outline: none;
    font-size: 14px;
    line-height: normal;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    font-family: poppins, sans-serif;
    background: #d2b48c00;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.09);
}

.cstm-banner-form input[type=submit] {
    border: none;
    box-shadow: none;
    padding: 13px 16px;
    margin-top: 0;
    border-radius: 5px;
    margin-bottom: 0;
    outline: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 17px;
    width: 100%;
    margin: 0 auto !important;
    height: auto;
    color: #ffffff;
    font-weight: 600;
    background: #ff9f1c;
}

.cstm-banner-form input::placeholder,
.cstm-banner-form textarea::placeholder {
    color: #a6a7a6;
}

.cstm-banner-form a.chat.form-chat {
    background: 0 0 !important;
    color: #000;
    margin: 10px 0 0;
    padding: 0;
}

.home-bnr .btnwrp .btn-one:hover {
    color: #fff;
}

.cstm-banner-form p {
    color: #ff9f1c;
    font-weight: 600;
    text-align: left;
    padding-bottom: 8px;
    font-size: 18px;
}

.intl-tel-input.separate-dial-code .selected-dial-code {
    color: #000;
}

.main-index .cstm-banner-form {
    margin: 90px 0 0;
}





.clientlogo-wrp {
    padding: 60px 0;
    background: #f9f9f9;
}

.clientlogo-wrp .imgwrp {
    text-align: center;
    display: block;
}

.clientlogo-wrp .imgwrp ul {
    margin: 0;
}

.clientlogo-wrp .imgwrp ul li {
    display: inline-block;
    padding: 0 20px;
}

.clientlogo-wrp .imgwrp ul li img {
    filter: opacity(0.5);
    transition: 0.4s all;
    width: 170px;
}

.clientlogo-wrp .imgwrp ul li img:hover {
    transition: 0.4s all;
    filter: unset;
}




.convertedwrp {
    padding: 90px 0;
}

.convertedwrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 30px;
}

.convertedwrp .txtwrp i {
    color: #ff9f1c;
    font-size: 112px;
    padding: 0 0 90px;
}

.convertedwrp .boxwrp {
    display: block;
    text-align: center;
    margin: 50px 0 0px;
}

.convertedwrp .boxwrp img {
    filter: hue-rotate(-70deg);
    width: 70px;
    padding: 0 0 20px;
}

.convertedwrp .boxwrp p {
    font-size: 16px;
    color: #000;
}







.writing-serviceswrp {
    padding: 70px 0 140px;
    background: #fff;
}

.writing-serviceswrp .txtwrp {
    display: block;
    text-align: center;
}

.writing-serviceswrp .txtwrp ul {
    margin: 30px 0 0;
}

.writing-serviceswrp .txtwrp ul li {
    display: inline-block;
    margin: 0 10px 40px;
    box-shadow: 0px 0px 20px 1px #e0d6d673;
    border-radius: 5px;
    height: 170px;
    text-align: center;
    transition: 1s cubic-bezier(0.51, 0.92, 0.27, 0.96) !important;
    width: 135px;
    padding: 40px 0 0;
    background: #fff;
}

.writing-serviceswrp .txtwrp ul li img {
    width: 46px;
}

.writing-serviceswrp .txtwrp ul li span {
    display: block;
    color: #222;
    font-size: 16px;
    padding: 12px 0 0;
}


.tabs {
    display: none;
}

.tabs.current {
    display: block;
}

.servicesec {
    width: 100%;
    background-size: cover;
    background-position: top center;
    padding: 0px 0 80px;
    text-align: center;
    background: #091523;
}

.servicesec h4 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 700;
}

.servicesec p {
    /* text-align: center; */
    /* font-size: 20px; */
    /* width: 100%; */
}

.servicesec .boxwrap {
    display: inline-block;
    width: 100%;
    margin-top: -110px;
    text-align: center;
}

.servicesec .boxwrap li {
    cursor: pointer;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: 0 10px 20px;
    position: relative;
    border-radius: 10px;
    min-height: 215px;
    padding: 40px;
    float: left;
    background: #fff;
    width: 15%;
    -moz-box-shadow: 3px -8px 43px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 3px -8px 43px 0px rgb(0 0 0 / 16%);
}

.servicesec .boxwrap li.current {
    background: #ff9f1c;
}

.servicesec .boxwrap li.current i.two {
    background-position: -70px -70px;
}

.servicesec .boxwrap li.current h6 {
    color: #fff;
}

.servicesec .boxwrap li i {
    background-image: url(../images/services-icons.png);
    background-repeat: no-repeat;
    width: 75px;
    display: inline-block;
    height: 80px;
    margin: 0 auto 10px;
    /* background-position: top center; */
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.servicesec .boxwrap li i.one {
    background-position: 13px 10px;
}

.servicesec .boxwrap li i.two {
    background-position: -70px 10px;
}

.servicesec .boxwrap li i.three {
    background-position: -150px 10px;
}

.servicesec .boxwrap li i.four {
    background-position: -230px 10px;
}

.servicesec .boxwrap li i.five {
    background-position: -320px 10px;
}

.servicesec .boxwrap li h6 {
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #2c2c2c;
    font-size: 14px;
}

.servicesec .boxwrap li:hover {
    box-shadow: 0px 0px 45px #20CB9817;
    transform: translateY(-0.625rem);
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2a3db6+0,1169cd+100 */
    background: #ff9f1c;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #2a3db6 0%, #1169cd 100%);
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a3db6', endColorstr='#1169cd', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.servicesec .boxwrap li:hover i.one {
    background-position: 13px -70px;
}

.servicesec .boxwrap li:hover i.two {
    background-position: -70px -70px;
}

.servicesec .boxwrap li:hover i.three {
    background-position: -150px -70px;
}

.servicesec .boxwrap li:hover i.four {
    background-position: -230px -70px;
}

.servicesec .boxwrap li:hover i.five {
    background-position: -320px -70px;
}

.servicesec .boxwrap li:hover h6 {
    color: #fff;
}




.services-navwrp .mainwrp-second .txtwrp {}

.services-navwrp .mainwrp-second .txtwrp h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    padding: 0 0 30px;
    text-align: left;
}

.services-navwrp .mainwrp-second .txtwrp p {
    /* font-size: 16px; */
    color: #fff;
    /* font-weight: 200; */
    /* padding: 0; */
    text-align: left;
}


.services-navwrp .mainwrp-second .imgtabs ul {
    display: block;
    text-align: center;
    margin: 30px 0 0;
}

.services-navwrp .mainwrp-second .imgtabs ul li {
    display: inline-block;
    width: 23%;
}

.services-navwrp .mainwrp-second .imgtabs ul li img {
    width: 70px;
}

.services-navwrp .mainwrp-second .imgtabs ul li p {
    color: #fff;
    font-size: 14px;
    margin: 10px 0 0;
}

.services-navwrp .mainwrp-second .imgtabs .btn-secnd {
    color: #fff;
}

.services-navwrp .btn-one:hover {
    color: #fff;
}

.services-navwrp .imgdiv img {
    width: 100%;
    height: 600px;
    object-fit: contain;
}

.services-navwrp .mainwrp-second .btnwrp {
    display: block;
    padding: 40px 0 0;
    text-align: left;
}






.pocesswrp {
    background: #18191c url(../images/pattern-1.png) center top repeat;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 0;
}

.pocesswrp .txtwrp {
    display: block;
    text-align: center;
    padding: 0 0 50px;
}

.pocesswrp .txtwrp h2 {
    color: #fff;
}

.pocesswrp .mainwrp {}

.pocesswrp .mainwrp img {
    width: 40px;
    filter: hue-rotate(-95deg);
}

.pocesswrp .mainwrp .txtdiv {
    display: inline-block;
    width: 70%;
    margin: 0 0 0 20px;
    vertical-align: top;
}

.pocesswrp .mainwrp .txtdiv h4 {
    color: #fff;
    font-size: 22px;
}

.pocesswrp .mainwrp .txtdiv p {
    color: #fff;
    font-size: 16px;
}




.testimonialswrp {
    padding: 90px 0;
}

.testimonialswrp .txtdiv {
    display: block;
    text-align: center;
    position: relative;
}

.testimonialswrp .txtdiv h2 {
    padding: 0 0 60px;
}

.testimonialswrp .txtdiv i {
    font-size: 110px;
    position: absolute;
    right: 0;
    opacity: 0.3;
}

.testimonialswrp .testiboxwrp {
    display: block;
    padding: 90px 0 0;
}

.testimonialswrp .testiboxwrp .imgbox {}

.testimonialswrp .testiboxwrp .imgbox img {
    width: 90%;
}

.testimonialswrp .testiboxwrp .txtdiv {
    text-align: left;
}

.testimonialswrp .testiboxwrp .txtdiv p {
    font-size: 20px;
    color: #000;
}

.testimonialswrp .testiboxwrp .txtdiv img {
    width: 14%;
}

.testimonialswrp .testiboxwrp .txtdiv .testi-txtwrp {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 20px;
}

.testimonialswrp .testiboxwrp .txtdiv .testi-txtwrp h4 {
    font-size: 24px;
}

.testimonialswrp .testiboxwrp .txtdiv .testi-txtwrp h6 {
    font-size: 20px;
    font-style: italic;
}

.testimonialswrp .testiboxwrp .txtdiv .testi-txtwrp h6 span {
    color: #ff9f1c;
}




.btm-ctawrp {
    padding: 60px 0 0;
    background: #fbf6f6;
}

.btm-ctawrp .txtdiv {}

.btm-ctawrp .btnwrp {
    display: block;
    padding: 10px 0 0;
}

.btm-ctawrp .imgwrp {}

.btm-ctawrp .imgwrp img {
    width: 70%;
    float: right;
}



footer {
    background: #000000e6 url(../images/footer-bg.png) center top no-repeat;
    padding: 50px 0 10px 0;
}

footer .logowrp {
    text-align: center;
    display: block;
    padding: 0 0 20px;
}

footer .logowrp img {
    display: block;
    text-align: center;
    margin: 0 auto;
    width: 240px;
    filter: brightness(0) invert(1);
}

footer .txtwrp {
    display: block;
    text-align: center;
    border-top: 1px solid #7c7878;
    padding: 18px 0 10px 0px;
}

footer .txtwrp p {
    color: #fff;
    width: 70%;
    margin: 0 auto;
    padding-bottom: 5px;
}

footer .txtwrp h4 {
    color: #fff;
}

footer .txtwrp ul {
        margin-bottom: 0;
}

footer .txtwrp ul li {
    display: inline-block;
    margin: 0 10px;
}

footer .txtwrp ul li a {
    color: #fff;
}



.form-box-main {
    padding: 0 0;
}

.form-box-main h2 {
    text-align: left;
}

.myprocess h2 {
    color: #091e42;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    font-weight: 700;
    line-height: 1.2;
}

.form-box-main form {
    width: 100%;
    margin: 0 auto;
}

.form-box-main form label.field-txt {
    font-weight: 500;
    font-size: 15px;
    color: #091e42;
    margin: 0 0 5px;
    width: 100%;
    display: block;
}

.form-box-main form input[type=email],
.form-box-main form input[type=number],
.form-box-main form input[type=tel],
.form-box-main form input[type=text],
.form-box-main form textarea {
    width: 100%;
    margin: 0;
    border: 1px solid #b2b9c1;
    background: #fff;
    padding: 18px 15px;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    height: 55px;
    border-radius: 5px;
}

.form-box-main form label.field-txt span {
    color: #b32524;
}

.form-box-main form select {
    width: 100%;
    margin: 0;
    border: 1px solid #b2b9c1;
    background: #fff;
    padding: 12px 15px;
    color: #091e42;
    font-size: 18px;
    font-weight: 400;
    border-radius: 5px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input,
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=tel],
.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-3 input[type=text] {
    padding-left: 84px;
}

.form-box-main form .col-md-12,
.form-box-main form .col-md-6 {
    padding-bottom: 30px;
}

.form-box-main form textarea {
    width: 100% !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    height: 100px !important;
}

.form-box-main form input[type=submit]:hover {
    display: inline-block;
    color: #fff;
    transform: translateY(-0.625rem);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.form-box-main form input[type=submit] {
    display: inline-block;
    transform: translateY(0);
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
    color: #fff;
    background: #ff9f1c;
    border: 1px solid #ff9f1c;
    padding: 15px 60px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    margin-left: 0;
}

.form-ryt-img img {
    width: 100%;
    margin-top: 35px;
}





/* new css start */


.form_main_div {
    display: flex;
    width: 100%;
    position: fixed;
    top: 60px;
    z-index: 99999999;
    display: none;
}

.form_main_div.show-modal.active {
    display: block;
}

.form_main_div .Mainbanner_form,
.process_img {
    margin: 0 auto;
}

.Mainbanner_form {
    width: 30%;
    margin-left: auto;
    background: #ff9f1c;
    padding: 40px 30px;
    border-radius: 7px;
    position: relative;
    overflow: hidden;
}

.banner_formHead {
    text-align: center;
    font-size: 29px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-family: 'Alan Sans';
    margin: 0 0 20px;
}

.formIcon {
    height: 80px;
    justify-content: center;
    margin: 0 auto 10px;
    background: #bf3c384a;
    font-size: 25px;
}

.book_icon,
.formIcon {
    width: 80px;
    border-radius: 100%;
}

.banner_formHead span {
    display: block;
    text-align: center;
    font-size: 19px;
    color: #fff;
    font-weight: 600;
}

.banner_feild {
    background: #eee;
    padding: 4px 20px;
    border-radius: 10px;
    margin: 12px 0;
}

.feild_icon {
    color: #7d7d7d;
}


.banner_feild :is(input, textarea) {
    height: 40px;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background-color: transparent;
    box-shadow: none !important;
    border: none !important;
}

.textarea_feild {
    align-items: flex-start;
}

.banner_feild textarea {
    height: 90px;
}

.banner_feild :is(input, textarea):focus-visible {
    box-shadow: none !important;
    border: none !important;

    outline: none;
}

.Mainbanner_form .btn {
    background-color: white;
    color: black;
}

.closePoptwo {
    animation: 5s linear infinite movement;
    right: 0;
    position: absolute;
    top: 0;
    background: white;
    color: black;
    width: 35px;
    height: 35px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 600;
    z-index: 1;
    opacity: 1 !important;
    text-shadow: none !important;
}

.form_main_div button.btn-2 {
    background: white;
    text-transform: uppercase;
    font-weight: bold;
}

.loader img {
    width: 50px;
}

.site-info {
    display: flex;
    align-items: baseline;
}

.site-info ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

@media(max-width:1440px) {
    .Mainbanner_form {
        width: 45%;
        padding: 15px 20px;
    }
    
    .banner-book-form {
    right: 34%;
}
}


@media(max-width:576px) {

    #footer-widget p strong,
    #footer-widget p a strong {
        color: #fff;
        font-size: 9px;
    }
    

}

@media(max-width:576px) {
    .Mainbanner_form {
        width: 80%;
    }

    .banner_formHead {
        font-size: 20px;
    }
}

@media(max-width:992px) {
  .banner-book-form {
   display: none;   
  }
  }

/* new css end */




.hero {
    /* display: grid; */
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center;
    padding: 24px 0;
}
.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(43, 157, 136, 0.1);
    color: var(--accent-dark);
    font-weight: 600;
}

.hero h2 {
    font-size: 32px;
    margin: 0 0 12px;
}
.hero p {
    color: #6b7280;
    margin: 0 0 18px;
}
a.cta {
    background: #ff9f1c;
    color: white !important;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}
.view-services {
    padding: 10px 14px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: #6b7280;
    transition: all 0.25s ease;
}
.kpis {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}
.kpi {
    background: #ffffff;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
    min-width: 120px;
}
.muted {
    color: #6b7280;
}
.hero-card {
    background: linear-gradient(180deg, #fff, #fbfffd);
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.03);
}
.mockup-carousel {
    width: 100%;
    height: 260px;
    border-radius: 8px;
    background: linear-gradient(180deg, #eef7f4, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}
.mockup-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.mockup-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-dots {
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: rgba(0, 0, 0, 0.8);
}
.ordernowcta {
    background: #ff9f1c;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}








  .releases {
        background: #ff9f1c;
        color: #fff;
        padding: 56px 0;
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        position: relative;
      }

      .releases .intro {
        max-width: 820px;
        margin: 0 auto 28px;
        padding: 0 20px;
        text-align: center;
      }

      .releases h2 {
        font-size: 28px;
        margin: 0 0 8px;
        font-weight: 700;
      }

      .releases p {
        color: #000000;
        font-size: 16px;
        line-height: 1.6;
      }

      /* Marquee container */
      .marquee-row {
        overflow: hidden;
        position: relative;
        margin: 36px 0;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
      }

      .marquee-track {
        display: flex;
        align-items: center;
        gap: 50px;
        will-change: transform;
      }

      /* Book images – updated for WIDE open book mockups */
      .book {
        flex: 0 0 auto;
        width: 420px;
        height: 280px;
        overflow: hidden;
        background: transparent;
        transition: transform 0.3s ease;
        border-radius: 8px;
      }

      .book img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* keeps open book proportional */
        display: block;
      }

      .book:hover {
        transform: scale(1.05);
      }

      /* Animations */
      @keyframes marquee-left {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes marquee-right {
        0% {
          transform: translateX(-50%);
        }

        100% {
          transform: translateX(0);
        }
      }

      .marquee-track.slow {
        animation: marquee-right 40s linear infinite;
      }

      .marquee-track.fast {
        animation: marquee-left 28s linear infinite;
      }

      .marquee-row:hover .marquee-track {
        animation-play-state: paused;
      }

      @media (max-width:1100px) {
        .book {
          width: 360px;
          height: 240px;
        }

        .marquee-track {
          gap: 40px;
        }
      }

      @media (max-width:700px) {
        .book {
          width: 300px;
          height: 200px;
        }

        .marquee-track {
          gap: 28px;
        }
      }
      
      
      
      
       /* Unique class names to avoid collisions with your existing CSS */
      .formats-section-v2 {
        background: whjite;
        color: #fff;
        padding: 56px 20px;
        text-align: center;
        border-radius: 6px;
      }

      .formats-section-v2 .fs-title {
        font-size: 30px;
        margin: 0 0 10px;
        font-weight: 700;
        color: black;
      }

      .formats-section-v2 .fs-desc {
        color: black;
        max-width: 820px;
        margin: 0 auto 22px;
        font-size: 16px;
        line-height: 1.45;
      }

      .formats-buttons-v2 {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin: 18px auto 32px;
        flex-wrap: wrap;
      }

      .formats-buttons-v2 .fs-btn {
        background: #ff9f1c;
        color: white;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        border: 2px solid rgba(255, 255, 255, 0.08);
        transition: transform .18s ease, color .18s ease, background .18s ease;
      }

      .formats-buttons-v2 .fs-btn:hover {
        transform: translateY(-4px);
        background: #ff9f1c;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.18);
      }

      /* Grid of platform cards */
      .formats-grid-v2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
      }

      .platform-card-v2 {
        background: #ff9f1c;
        border: 1px solid rgba(255, 255, 255, 0.10);
        padding: 18px;
        border-radius: 12px;
        text-align: center;
        transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .platform-card-v2:hover {
        transform: translateY(-6px);
        background: #ff9f1c;
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
      }

      .platform-icon-v2 {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
        display: inline-grid;
        place-items: center;
        border-radius: 10px;
        background: #ff9f1c40;
        color: #fff;
        border: 3px solid white;
      }

      .platform-title-v2 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 6px;
        color: #fff;
      }

      .platform-desc-v2 {
        color: white;
        font-size: 14px;
        margin: 0;
        font-weight: 900;
      }

      /* small screens */
      @media (max-width:620px) {
        .formats-section-v2 {
          padding: 36px 16px;
        }

        .platform-icon-v2 {
          width: 48px;
          height: 48px;
          margin-bottom: 10px;
        }
      }