@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* font-family: "Montserrat", sans-serif; */

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

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-size: 15px;
    color: #000;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
}


/***** Font Files *****/

@font-face {
    font-family: 'Abril Display Regular';
    src: url(../fonts/Abril_Display_Regular.otf);
}

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

.btn-theme {
    color: #fff;
    font-family: inherit;
    display: flex;
    width: auto;
    height: 50px;
    line-height: 50px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #ff5037;
    transition: color .5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    background-color: #ff5037;
    align-items: center;
    justify-content: space-around;
    padding: 0 30px;
    text-transform: uppercase;
}

.btn-theme img.normal-icon {
    display: block;
}

.btn-theme img.hover-icon {
    display: none;
}

.btn-theme:hover img.normal-icon {
    display: none;
}

.btn-theme:hover img.hover-icon {
    display: block;
}

.btn-theme:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #fff;
    height: 150px;
    width: 200%;
    border-radius: 50%;
}

.btn-theme:hover {
    color: #ff5037;
}

.btn-theme:before {
    top: 100%;
    left: 100%;
    transition: all .7s;
}

.btn-theme:hover:before {
    top: -40px;
    left: -30px;
}

.btn-theme>img {
    margin-left: 10px;
}

.btn-theme:active:before {
    background: #ff5037;
    transition: 0s;
}

.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: 'Abril Display Regular';
    font-size: 55px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Abril Display Regular';
    font-size: 55px;
    line-height: 1.2;
    color: #000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Abril Display Regular';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Abril Display Regular';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Abril Display Regular';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Abril Display Regular';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-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 CSS*/
header {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 8px 0;
    background: #fff;
}

.header-logo img {
    width: 50%;
}

.header_btns ul {
    display: flex;
    justify-content: flex-end;
    gap: 45px;
    margin-bottom: 0;
}

.header_btns ul li:not(:last-child) a {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: flex-start;
}

.header_btns ul li:first-child {
    margin-right: 4%;
    position: relative;
}

.header_btns ul li:first-child:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 120%;
    transform: translateY(-50%);
    right: -14%;
    top: 50%;
    background-color: #dedfd9;
}

.header_btns ul li:not(:last-child) h5 {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Montserrat';
}

.header_btns ul li:not(:last-child) h5 span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ff5037;
}

.header_btns ul li:first-child h5 span {
    font-size: 14px;
}

/* header end */

/* footer */

footer {
    position: relative;
    z-index: 1;
    padding: 70px 0px 20px;
}

footer>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

footer .footer_info>img {
    filter: brightness(0) invert(1);
    width: auto;
}

footer .footer_info>p {
    font-size: 13px;
    color: #a7a4a3;
    font-family: 'Montserrat';
    line-height: 1.6;
    margin: 20px 0px;
    font-weight: 500;
    width: 80%;
}

footer .footer_info>span {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 20px 0 10px;
    color: #a7a4a3;
    cursor: pointer;
}

footer .footer_info>span>i {
    color: #24ad7a;
}

footer .footer_info>span>p {
    color: #fff;
    font-weight: bold;
    margin: 0;
}

.footer_links>h3 {
    font-size: 24.83px;
    color: #ff5037;
    font-family: 'Abril Display Regular';
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer_links>ul {
    margin: 0;
}

.footer_links>ul>li>a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #aaaaa8;
    font-size: 15px;
    font-family: 'Montserrat';
}

.footer_links>ul>li>a>i {
    color: #ff5037;
}

.footer_links>ul>li {
    margin-bottom: 12px;
}

.footer_links>ul>li:last-child {
    margin: 0;
}

.footer_links>ul>li>a>span {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_links>ul>li>a>span>i {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b5b5b3;
    border-radius: 50%;
    color: #373430;
}

ul.sfd li a {
    display: inline-block;
}

ul.sfd li a i {
    padding-right: 10px;
}

ul.sfd li a b {
    padding-left: 0;
    padding-right: 5px;
    display: block;
}

.sfd li:nth-child(03) a {
    align-items: center;
    display: table;
    position: relative;
    padding-left: 24px;
}

.sfd li:nth-child(03) i {
    position: absolute;
    left: 0;
    top: 4px;
}

.copy_right {
    border-top: 1px solid #464342;
    padding-top: 20px;
    margin-top: 30px;
}

.copy_right ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.copy_right ul>li>a {
    color: #828282;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 500;
}

.copy_right ul>li:first-child {
    position: relative;
}

.copy_right ul>li:first-child:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #464342;
    right: -10%;
}

.copy_right p {
    margin: 0;
    text-align: end;
    color: #828282;
    font-size: 14px;
}

.footer_links {
    position: relative;
}

.footer_links:after {
    position: absolute;
    content: "";
    background: #555450;
    width: 1px;
    height: 230px;
    top: 0;
    left: -60px;
}

/* footer */

.banner_secc {
    position: relative;
    padding: 70px 0px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner_secc .banner-textt>span {
    font-size: 16.69px;
    color: #fff;
    font-family: 'Abril Display Regular';
    background: #ff5037;
    padding: 14px 20px 10px;
    line-height: 1;
    display: block;
    width: fit-content;
    border-radius: 5px;
    margin-bottom: 18px;
}

.banner_secc .banner-textt>h1 {
    color: #202020;
    font-size: 53.39px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.banner_secc .banner-textt>h1>span {
    font-size: 41.95px;
    color: #ff5037;
}

.banner_secc .banner-textt .btn-theme {
    width: fit-content;
}

.banner-form {
    position: relative;
    width: 90%;
    margin-left: auto;
    z-index: 1;
    height: 520px;
}

.banner-form>img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    object-fit: contain;
}

.banner-form>.ban-form-inner {
    padding: 30px 70px 20px;
}

.banner-form>.ban-form-inner>h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.banner-form>.ban-form-inner>form>input,
select {
    width: 100% !important;
    height: 50px !important;
    padding: 5px 20px !important;
    border: 1px solid #ababab !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    color: #575757 !important;
}

.banner-form>.ban-form-inner>form>input::placeholder {
    color: #575757 !important;
}

.banner-form>.ban-form-inner>form>button {
    margin-top: 30px;
}

.banner_secc:after {
    position: absolute;
    content: "";
    background: #202020;
    width: 100%;
    clip-path: polygon(100% 60%, 100% 60%, 26% 94%, 0 70%, 0 64%, 26% 88%);
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.banner_secc:before {
    position: absolute;
    content: "";
    background: #f3f4ee;
    width: 100%;
    height: 90%;
    top: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(100% 0%, 100% 67%, 26% 100%, 0 73%, 0 0, 24% 0);
}

.banner_secc>img {
    position: absolute;
}

.banner_secc>img.vec1 {
    top: 0;
    right: 30%;
    width: 28%;
}

.banner_secc>img.vec3 {
    left: 37%;
    bottom: 30%;
}

.banner-form>img.vec2 {
    width: auto;
    object-fit: contain;
    height: auto;
    right: 0;
    bottom: -31%;
}

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

.logo-secc h2 {
    text-align: center;
    color: #202020;
    position: relative;
    font-size: 53px;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.logo-secc h2:after {
    position: absolute;
    content: "";
    width: 10%;
    height: 2px;
    background: #ff5037;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
}

.slick-slide {
    opacity: 1;
}

.logo-box_wrppr,
.client-logo-slider {
    border: 1px solid #e1e1e1;
    padding: 20px;
    border-radius: 10px;
}

.slider_icons .slick-prev:before {
    display: none;
}

.slider_icons .slick-next:before {
    display: none;
}

.slider_icons .slick-arrow>i {
    color: #ff5037;
    font-size: 20px;
    background: #f5f6f0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.slider_icons .slick-arrow>i:hover{
    background-color: #ff5037;
    color: #fff;
    transition: 0.3s ease-in-out;
}
.slider_icons .slick-prev {
    left: -40px;
    top: 50%;
    width: 60px;
    height: 60px;
}

.slider_icons .slick-next {
    width: 60px;
    height: 60px;
    right: -40px;
}

.theme-heading {
    text-align: center;
}

.theme-heading>h2 {
    font-size: 40px;
    color: #222222;
    line-height: 1.1;
    margin-bottom: 15px;
}

.theme-heading>h2>span {
    color: #ff5037;
}

.theme-heading>p {
    width: 60%;
    margin: 0 auto;
}

.theme-heading {
    margin-bottom: 50px;
}

.latest_bm_boxx img {
    width: 100%;
}

.latest_bm_boxx span {
    font-size: 15px;
    color: #ff5037;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.latest_bm_boxx h3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #222222;
}

.latest_bm_boxx p {
    font-size: 15px;
    margin-bottom: 20px;
}

.lastest_book_marketing.slider_icons .slick-next {
    right: -70px;
}

.lastest_book_marketing.slider_icons .slick-prev {
    left: -60px;
}

/*  process */

.process_secc {
    background-color: #ffebcc;
}

.process_box>ul>li>span {
    font-size: 20px;
    color: #222222;
    font-family: 'Abril Display Regular';
    display: block;
    margin-bottom: 10px;
}

.process_box>ul>li>p {
    font-size: 13px;
    line-height: 1.6;
}

.process_box>ul>li {
    margin-bottom: 30px;
}

.process_box>ul {
    margin: 0;
}

.process_box.box_left>ul>li:nth-child(1) {
    text-align: right;
    margin-bottom: 60px;
}

.process_box.box_left>ul>li:nth-child(3) {
    text-align: right;
    margin-top: 78%;
    margin-right: 80px;
}

.process_box.box_left {
    width: 80%;
}

.process_box.box_right {
    width: 85%;
    margin-left: auto;
}

.process_box.box_right>ul>li:nth-child(1) {
    text-align: left;
    margin-bottom: 60px;
}

.process_box.box_right>ul>li:nth-child(2) {
    text-align: right;
    margin-right: 60px;
}

.process_box.box_right>ul>li:nth-child(3) {
    margin-top: 70%;
    margin-left: 90px;
}

.process_main_boxx {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.process_main_boxx>img {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.process_box.box_left>ul>li:nth-child(2) {
    margin-left: 60px;
}

.process_secc {
    position: relative;
}

.process_secc>img {
    position: absolute;
}

.process_secc>img.vec4 {
    top: -16%;
    left: -5%;
}

.process_secc>img.vec5 {
    bottom: -18.3%;
    left: 10%;
}

/*  process */

.pkg_boxx {
    margin-top: 30px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 25px 0px;
    position: relative;
}

.pkg_boxx>h3 {
    text-align: center;
    font-size: 26.55px;
    color: #ff5037;
    font-weight: 500;
    margin-bottom: 30px;
}

.pkg_boxx>span {
    background: #222222;
    width: 100%;
    display: flex;
    color: #fff;
    font-size: 15px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pkg_boxx>ul {
    padding: 0 30px;
    margin-bottom: 20px;
}

.pkg_boxx>ul>li {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding: 10px 0px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.pkg_boxx>ul>li:last-child {
    /* border: 0; */
    margin: 0;
}

.pkg_boxx>ul>li>p {
    margin: 0;
    color: #000;
    font-size: 15px;
}

.pkg_boxx>.pkg_head {
    text-align: center;
    background: #ff5037;
    width: 80%;
    margin: 0 auto;
    margin-top: -59px;
    padding: 0px 0px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
}

.pkg_boxx>.pkg_head>h3 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

.pkg_boxx>.pkg_head:after {
    position: absolute;
    content: "";
    background: #af2511;
    width: 30px;
    height: 35px;
    left: -30px;
    top: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.pkg_boxx>.pkg_head:before {
    position: absolute;
    content: "";
    background: #af2511;
    width: 30px;
    height: 35px;
    top: 0;
    right: -30px;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.pkg_boxx .btn-theme {
    width: fit-content;
    margin: 0 auto;
    background: #222222;
    border-color: #222222;
    margin-bottom: -50px;
    transition: 0.3s ease-in-out;
}
.pkg_boxx .btn-theme:focus{
    color:#fff; 
}
.packages_secc.all-sec {
    padding-bottom: 100px;
}

.packages_secc.all-sec {
    padding-bottom: 100px;
}

.pkg_boxx {
    transition: 0.3s ease-in-out;
    background: #fff;
}

.pkg_boxx:hover {
    transition: 0.3s ease-in-out;
    transform: scale(1.15);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 11;
}

.pkg_boxx:hover .btn-theme {
    background: #ff5037;
    border-color: #ff5037;
}
.pkg_boxx ul {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding: 0 30px;
    overflow-y: scroll;
    height: 400px;
}
.pkg_boxx ul::-webkit-scrollbar-track
{
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.082); */
    background-color: #cfcfcf;
}

.pkg_boxx ul::-webkit-scrollbar
{
    width: 4px;
    background-color: #cfcfcf;
}

.pkg_boxx ul::-webkit-scrollbar-thumb
{
    background-color: #ff5037;
}

.experience_the_best h2 {
    text-align: center;
    font-size: 53px;
    color: #202020;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}

.experience_the_best h2:after {
    position: absolute;
    content: "";
    background-color: #ff5037;
    width: 15%;
    height: 2px;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

.experience_box {
    position: relative;
    height: 500px;
}

.experience_box>img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experience_box>.experience_box_inner {
    text-align: center;
    padding: 40px 30px;
}

.experience_box>.experience_box_inner>img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.experience_box>.experience_box_inner>h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ff5037;
}

.experience_the_best .slick-slide {
    margin: 0 10px;
}

.experience_the_best.slider_icons .slick-prev {
    left: -70px;
}

.experience_the_best.slider_icons .slick-next {
    right: -70px;
}

.ready_to_secc {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
}

.ready_to_secc>img.bg_cta {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready_to_secc>img {
    position: absolute;
}

.ready_to_secc .ready_to_textt {
    text-align: center;
}

.ready_to_secc .ready_to_textt h2 {
    color: #fff;
    font-size: 53px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.ready_to_secc .ready_to_textt p {
    color: #fff;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.ready_to_secc .ready_to_textt ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    margin-top: 30px;
}

.ready_to_secc .ready_to_textt .btn-theme {
    background: #fff;
    color: #ff5037;
}

.ready_to_secc>img.vec7 {
    left: 0;
    top: 0;
}

.ready_to_secc>img.vec8 {
    top: 0;
    left: 16%;
}

.ready_to_secc>img.vec9 {
    right: 4%;
    bottom: 0;
}

.ready_to_secc .ready_to_textt ul>li>.btn-theme1 {
    background: #fff;
    color: #ff5037;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 99;
}

.ready_to_secc .ready_to_textt ul>li>.btn-theme1>img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.packages_secc {
    position: relative;
}

.packages_secc>img {
    position: absolute;
}

.packages_secc>img.vec3 {
    bottom: 0;
    left: 3%;
}

.packages_secc>img.vec6 {
    top: 9%;
    right: 10%;
}

/*  project css end  */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* client logo css */
.client_logos h2 {
    text-align: center;
    color: #202020;
    position: relative;
    font-size: 53px;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.client_logos {
    padding: 100px 0;
    position: relative;
}

.client-logo-slider img {
    width: 130px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto;
}

.book-hanging {
    position: absolute;
    top: 0;
    left: 220px;
}

/* client logo css */

/* testimonial start */
section.testimonial {
    background: #f5f6f0;
    padding: 100px 0 220px;
    position: relative;
}

img.book-hang {
    position: absolute;
    top: 0;
    left: 200px;
}

img.vec6 {
    position: absolute;
    top: 30%;
    right: 200px;
}

.testimonial-item img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 5px solid #fff;
    box-shadow: 5px 2px 10px 0 #1b6fbd33;
}

.user-name h4 {
    background: #ff5037;
    width: fit-content;
    padding: 15px 30px;
    margin: 0;
    line-height: normal;
    font-size: 12px;
    font-family: 'Montserrat';
    color: #fff;
    position: relative;
    left: 0;
    top: 13px;
    cursor: pointer;
    margin: 0 auto;
    z-index: 1;
    text-transform: uppercase;
}

.user-name h4:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff5037;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.testimonial-item {
    height: 160px;
    width: 33.3%;
    text-align: center;
}

.testi-content {
    background: #222222;
    padding: 30px 25px;
    position: absolute;
    top: 90%;
    opacity: 0;
    transform: translateY(-290px);
    transition: 0.8s all;
    pointer-events: none;
    z-index: 10;
}

.testi-content h4 {
    color: #fff;
    margin: 0;
    font-weight: 400;
}

.testi-content p {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
}

.testimonial-item.testi-1 {
    position: absolute;
    top: 8%;
    left: 17%;
}

.all-testimonial {
    position: relative;
}

.testi-content:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: #222222;
    transform: translateX(-50%) rotate(45deg);
    top: -20px;
}

.testimonial-item:hover .user-name {
    opacity: 0;
    transform: translateY(-100px);
    z-index: -1;
    position: relative;
}

.user-name {
    transition: 0.8s all;
    transform: translate(0);
    height: 60px;
}

.testimonial-item:hover .testi-content {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-item.testi-2 {
    position: absolute;
    top: 8%;
    right: 11%;
}

.testimonial-item.testi-3 {
    position: absolute;
    bottom: 14%;
}

.testimonial-item.testi-4 {
    position: absolute;
    bottom: 14%;
    left: 37%;
}

.testimonial-item.testi-5 {
    position: absolute;
    bottom: 14%;
    right: 0;
}

/* testimonial end */

/* faq start */
.faq {
    background: #ffebcc;
    padding: 100px 0;
    position: relative;
}

span.faq-number {
    background: #000;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    margin-right: 10px;
}

.accordion-button:not(.collapsed) span.faq-number {
    background: #ff5037;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: unset;
}

.accordion-item {
    background: transparent;
    border: 0;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) span.faq-heading {
    background: #ff5037;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 94%;
}

.accordion-button::after {
    display: none;
}

.accordion-body {
    background: #ff5037;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 6px;
    width: 98.5% !important;
    margin: 6px auto;
    margin-left: 3px;
}

img.faq-vec2 {
    position: absolute;
    top: 0;
    right: 15%;
}

img.faq-vec3 {
    position: absolute;
    top: 50%;
    left: 7%;
}

img.faq-vec4 {
    position: absolute;
    transform: rotate(90deg);
    right: 50px;
    bottom: 100px;
}

.accordion-button {
    padding: 0;
    background: transparent;
    justify-content: center;
}

span.faq-heading {
    background: #000;
    padding: 20px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    margin-right: 10px;
    width: 92% !important;
}

/* faq end */

/* Contact start */
section.contact-sec {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact-info h2 span {
    display: block;
    color: #ff5037;
}

.contact-info p {
    color: #222222;
    font-size: 17px;
    width: 90%;
    margin-bottom: 40px;
}

.contact-actbtn {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

.contact-actbtn a:last-child {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff5037;
    font-weight: 600;
    font-size: 26px;
}

.contact-form input,
.contact-form textarea {
    width: 100% !important;
    height: 50px !important;
    padding: 5px 20px !important;
    border: 1px solid #ababab !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
    color: #575757 !important;
}

.contact-form textarea {
    height: 120px !important
}

.contact-form.theme-heading {
    text-align: start;
}

.cntct-outer {
    background: url(../images/contact-frame.png) no-repeat;
    background-size: 100% 100%;
    padding: 60px 40px 10px;
}

img.contact-vec4 {
    position: absolute;
    top: -210px;
    left: -100px;
    z-index: -1;
}

img.contact-vec3 {
    position: absolute;
    left: 45%;
    top: 25%;
}

img.contact-vec10 {
    position: absolute;
    right: 16%;
    top: 13.5%;
}

/* contact end */


.cov_img{
    width:100% !important; 
    height: 450px;
}


html, body {
    overflow-x: hidden !important;
}

/* popup */

.modal-open {
    padding-right: 0 !important;
}

.modal-content {
    border: 0 !important;
    background-color: transparent !important;
}

.modal-body {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    background-color: transparent;
    background-color: #fff;
}

.btn-close-ctm {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
}

.header-form input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 2px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 50px;
    padding: 10px;
}
.header-form select {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 2px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 50px;
    padding: 10px;
    appearance: auto;
}

.header-form input:focus {
    background-color: transparent;
    border: 1px solid rgb(77, 78, 78);
    box-shadow: none;
}

.js-submit {
    font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1920 - 300)));
    font-weight: 500;
    padding: 14px 60px;
    display: inline-block;
    color: #fff;
    margin-bottom: 0;
    margin-right: 0;
    border: 0;
    border-radius: 0;
    transition: 0.5s ease-in-out;
    background: linear-gradient(45deg, #f98113, #fdb304);
    border-radius: 50px;
        border: 1px solid #2e2e2e;
}

.js-submit:hover {
    
    color: #fff;
    background: linear-gradient(90deg, rgba(63,63,63,1) 1%, rgba(36,36,36,1) 40%, rgba(24,24,24,1) 100%);
    
}
.iti.iti--allow-dropdown {
    width: 100%;
    margin-bottom: 10px;
}

.header-form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    border: 2px solid rgb(234, 234, 234);
    background-color: #fff;
    height: 50px;
    padding: 10px;
}

.btn-part .btn-theme {
    margin: 0 auto;
}

/* popup */

.thankyou_page {
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.thankyou_page .btn-theme {
    width: fit-content;
    margin: 0 auto;
}

.ready_to_secc .ready_to_textt p >a {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: underline;
}

/* new css */

.mobile_testimonials {
    display: none;
}

.moble_testi_box > span {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 5px solid #ffff;
    border-radius: 50%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.moble_testi_box > span > img {
    border-radius: 50%;
}

.moble_testi_box h4 {
    text-align: center;
    color: #000;
    font-size: 30px;
    margin-top: 20px;
}

.moble_testi_box p {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

/* new css */

.book-icon {
    animation: 2s moveUpDown infinite;
}
@keyframes moveUpDown{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0);
    }

}
/*services-secc*/

.services-secc {}

.services-secc h2 {
    text-align: center;
    color: #202020;
    position: relative;
    font-size: 53px;
    margin-bottom: 50px;
    padding-bottom: 20px;
}

.services-secc h2:after {
    position: absolute;
    content: "";
    width: 10%;
    height: 2px;
    background: #ff5037;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    right: 0;
}
.services-secc  .box-of-services{
    background: url(../images/exp-img.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /*width: 33%;*/
    text-align: center;
    padding: 50px 31px;
    margin: 0px 14px;
    height: 540px;
}

.services-secc  .box-of-services img{
    width: 100%;
    margin-bottom: 20px;
    margin-top: 20px;
    margin: 0px auto 20px;
    height: 220px;
    object-fit: contain;
}

.services-secc  .box-of-services h3{
    color: #ff5037;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 26px;
}

.services-secc  .box-of-services p{
    font-size: 15px;
    color: #222222;
}
.services-secc .slick-prev {
    left: -70px;
}

.services-secc .slick-next {
    right: -70px;
}

.laptop-content ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 0;
    margin-top: 35px;
}

.laptopscreen {
    position: relative;
    padding-top: 120px;
}

.laptopscreen {}

.laptopscreen .btn-theme {
}

.laptopscreen .laptop-content span {
    color: #ff5037;
}

.laptopscreen .laptop-content h3 {
    font-size: 50px;
    margin-bottom: 14px;
    font-weight: 400;
}

.laptopscreen .laptop-content p {
    line-height: 26px;
}

.laptopscreen .laptop-content {
    padding-top: 30px;
}
.laptopscreen .btn-theme {
    font-size: 14px;
}

.laptopscreen .orgnbrrd {
    font-size: 14px;
    background: transparent;
    color: #ff5037;
}
.laptopscreen img.contact-vec4 {
    z-index: 7;
}


/*services=secc end*/

img.cov_img.cov_new_img {
    width: auto !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    box-shadow: 20px 15px 20px 8px #00000063;
}



.pkg_boxx a:hover, a:focus {color: #fff;}
.logsthird .trist {
    width: 85px;
}

ul.logsthird {
    display: flex;
    align-items: center;
    gap: 0px;
}

ul.logsthird li img {
    width: 80%;
}


.whatsapp {width: 50px;height: 51px;color: #fff;display: block;text-align: center;border-radius: 100%;font-size: 34px;position: fixed;bottom: 40px;left: 20px;z-index: 9999;box-shadow: 6px 9px 30px 1px rgba(37, 0, 22, 0.71);padding: 10px 0;animation: scrollDownAnimation .5s ease infinite alternate;-webkit-animation: scrollDownAnimation .5s ease infinite alternate;background: #00a155;background: -moz-linear-gradient(left, #ea018e 0%, #9b2c92 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea018e', endColorstr='#9b2c92',GradientType=1 );}
.whatsapp:hover {color: #ffffff; }
@keyframes scrollDownAnimation{from{transform:translateY(0);}
to{transform:translateY(-10px);}
}
@-webkit-keyframes scrollDownAnimation{from{transform:translateY(0);}
to{transform:translateY(-10px);}
}

/* easter popup */

        .easter_popup {
            position: fixed;
            z-index: 9999;
            top: 50%;
            left: 50%;
            right: 0;
            transform: translate(-50%, -50%);
            width: 50%;
            height: 550px;
            align-items: center;
            justify-content: end;
            display: none;
            box-shadow: 0 0 20px 20000000px #0000008c;
        }
        
        .easter_popup>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            z-index: -1;
            left: 0;
        }
        
        .easter_popup > span.popup_cls {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 40px;
            height: 40px;
            background: #fff;
            border: 1px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .easter_popup > .easter_pop_wrp {
            padding: 30px;
            text-align: center;
        }
        
        .easter_popup > .easter_pop_wrp > img {
            width: 350px;
        }
        
        .easter_popup > .easter_pop_wrp > h2 {
            color: #fff;
            font-family: 'Montserrat';
            text-transform: capitalize;
            font-size: 33px;
            letter-spacing: 7px;
            font-weight: 400;
            line-height: 1;
            margin: 15px 0px;
        }
        
        .easter_popup > .easter_pop_wrp > h3 {
            background: #24384e;
            padding: 5px 0px;
            color: #fff;
            font-size: 33px;
            margin-bottom: 10px;
            font-weight: 200;
            font-family: 'Montserrat';
}
.easter_popup > .easter_pop_wrp > h3 span {
    font-weight: 700;
}
            
        }
        
        .easter_popup > .easter_pop_wrp > h3 > span {
            font-weight: bold;
        }
        
        .easter_popup > .easter_pop_wrp > p {
            color: #fff;
            font-size: 16px;
            width: 70%;
            margin: 0 auto;
        }
        
        .easter_popup.show_popup {
            display: flex;
        }
        
        body.overlay {
            position: relative;
            height: 100vh;
        }
        
        body.overlay:before {
            position: absolute;
            content: "";
            background: #00000078;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            z-index: 999;
        }
        
        @media only screen and (min-width: 1600px) and (max-width: 1800px) {
            
            .easter_popup {
                width: 65%;
            }
            
        }
        
        @media only screen and (min-width: 1366px) and (max-width: 1599px) {
            
            .easter_popup {
                width: 75%;
            }
            
        }
        
        @media only screen and (min-width: 1200px) and (max-width: 1365px) {
            
            .easter_popup {
                width: 80%;
            }
            
        }
        
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
            
            .easter_popup {
                width: 90%;
            }
            
            .easter_popup > .easter_pop_wrp > img {
                width: 300px;
            }
            
            .easter_popup > .easter_pop_wrp > h3 {
                font-size: 40px;
            }
            
            .easter_popup > .easter_pop_wrp > h2 {
                font-size: 30px;
            }

        }
        
        @media only screen and (min-width: 768px) and (max-width: 991px) {
            
            .easter_popup {
                width: 60%;
            }
            
            .easter_popup>img {
                object-position: right;
            }
            
        }
        
        @media only screen and (min-width: 520px) and (max-width: 767px) {
            
            .easter_popup {
                width: 80%;
            }
            
            .easter_popup>img {
                object-position: right;
            }
            
            .easter_popup > .easter_pop_wrp > p {
                width: 80%;
                line-height: 1.6;
            }
            
        }
        
        @media only screen and (min-width: 320px) and (max-width: 519px) {
            .easter_popup {
                width: 90%;
                height: 400px;
            }
            
            .easter_popup>img {
                object-position: right;
            }
            
            .easter_popup > .easter_pop_wrp > h2 {
                font-size: 30px;
            }
            
            .easter_popup > .easter_pop_wrp > h3 {
                font-size: 30px;
            }
            
            .easter_popup > .easter_pop_wrp > p {
                width: 100%;
                line-height: 1.6;
                font-size: 14px;
            }
            
            .easter_popup > .easter_pop_wrp > img {
                width: 250px;
            }
            
            .easter_popup > span.popup_cls {
                right: -10px;
                top: -10px;
            }
        }
        
        /* easter popup */