@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background-color: #fff;
}

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;
}


/***** 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;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}
.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: background 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', Sans-Serif;
    font-size: 55px;
    line-height: 60px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Abril Display Regular', Sans-Serif;
    font-size: 52px;
    line-height: 60px;
    color: #000;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Abril Display Regular', Sans-Serif;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Abril Display Regular', Sans-Serif;
    font-size: 24px;
    line-height: 29px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 20px;
    line-height: 25px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Montserrat', Sans-Serif;
    font-size: 18px;
    line-height: 23px;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

p {
    color: #7d7d7d;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Montserrat', serif;
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
}

/*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;
}
/* 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;
}


/*HEADER CSS*/
header{
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 8px 0;
    border-bottom: 1px solid #dadbd6;
    background: #f5f6f0;
}
.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: 15px;
    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;
}
.header_btns ul li:not(:last-child) h5 span{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #ff5037;
}


/*banner css start */
section.banner_section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f6f0;
    width: 100%;
    height: 90%;
    z-index: -2;
}
.uploadFile {
  width: 30%;
  background-color: white;
  border: none;
  color: #ff5037;
  font-size: 16px;
  line-height: 23px;
  overflow: hidden;
  padding: 8px 10px 8px 10px;
  position: relative;
  resize: none;
  font-weight: 500;
}
.uploadFile [type=file] {
  cursor: pointer !important;
  display: block;
  font-size: 16px;
  filter: alpha(opacity=0);
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  position: absolute;
  right: 0px;
  text-align: right;
  top: 0px;
  z-index: 1;
}
.banner_content{
    text-align: center;
    padding: 20px 0;
}
.banner_content h4 {
    color: #ff5037;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}
.header_btns ul li:first-child h5 span {
    font-size: 14px;
}
.banner_content h1 {
    font-size: 53px;
    color: #222222;
    margin-bottom: 5px;
    line-height: 1.2;
}

.banner_content h1 span {
    display: block;
    color: #ff5037;
    font-size: 41px;
}
.banner_content p {
    width: 50%;
    margin: 0 auto;
    color: #6a6a68;
    font-weight: 500;
    margin-bottom: 0px;
}
button:focus:not(:focus-visible) {
    color: #fff;
    background: unset;
}
button:focus:not(:focus-visible) img {filter: brightness(5.5);}
.submit_btn button{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 0.8 !important;
}
.banner_content form{
    margin-top: 0;
    padding: 70px 90px;
    position: relative;
}
.banner_content form:before{
    content: '';
    position: absolute;
    background-image: url(../images/form_bg.png);
    background-size: cover;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
}
.banner_content form h3{
    font-size: 35px;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 100;
    position: relative;
    line-height: 1;
}
.banner_content form input{
    width: 100%;
    height: 50px;position: relative;
    padding-left: 25px;
    border-radius: 12px;
    border:1px solid #ababab; 
    margin-bottom: 10px;
    background-color: transparent;
}
.banner_content form select{
    width: 100%;
    cursor: pointer;
    height: 50px;
    padding-left: 25px;
    border-radius: 12px;
    border:1px solid #ababab; 
    margin-bottom: 10px;
    background-color: transparent;
    z-index: 1;
    position: relative;
}
.banner_content form input::placeholder{
    font-weight: 500;
}
.select_div{
    position: relative;
}
.select_div i{
    position: absolute;
    top: 33%;
    right: 20px;
    z-index: 0;
    font-weight: 200;
}
.turning_icon{
    position: absolute;
    width: 24%;
    left: 0px;
    top: 0;
    transform: rotate(0deg);
}
.book-icon{
    position: absolute;
    right: 10%;
    top: 30%;
    animation: 2s moveUpDown infinite;
}
.banner_section{
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding-bottom: 6%;
}
@keyframes moveUpDown{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0);
    }

}
.banner_section:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 408px;
    bottom: 0;
    background: url(../images/banner-after.webp);
    left: 0;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}
.row_btn li:first-child .btn-theme{
    background-color: #fff;
    color: #ff5037;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
}
.row_btn li:first-child .btn-theme:hover:before{
    background-color: #ff5037;
   
}
.row_btn li:first-child .btn-theme:hover{
     color: #fff;
     border-color: #fff;
}
.row_btn ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 36%;
    margin: 30px auto 0;
}
.row_btn li:last-child a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px 8px 8px 50px;
    height: 50px;
    display: flex;
    padding-right: 10px;
    padding-left: 7px;
    align-items: center;
    justify-content: space-between;
}
.row_btn li:last-child a span{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    margin-right: 20px;
}
.pakages-box ul li span {
    font-size: 10px;
}
.row_btn li:last-child a span img {
    object-fit: contain;
    width: 22px;
}
.row_btn li:last-child a:hover{
    background-color: #fff;
    transform: 0.3s ease-in-out;
    color: #ff5037;
}
.pakages-box ul li p {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}
.row_btn li:last-child a:hover span{
    background-color: #ff5037;
}
.row_btn li:last-child a:hover span img{
    filter: brightness(5);
}
/*banner css end*/


/*StreamLine SECTION*/
.two_btns {
    display: flex;
    gap:20px;
    margin-top: 20px;
}
.two_btns li a{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 0.8 !important;
}
.two_btns li:last-child a.btn-theme{
    background-color: #fff;
    color: #ff5037;
}
.two_btns li:last-child a.btn-theme:hover{
    color: #fff;
}
.two_btns li:last-child a.btn-theme:before{
    background-color: #ff5037;
}
.streamline_content h3 {
    font-size: 42px;
    line-height: 1.2;
    color: #222;
    font-weight: 100;
    margin-bottom: 14px;
}

.streamline_content {
    padding-left: 30px;
}

.streamline_content h3 span {
    color: #ff5037;
}
.streamline_content p{
    font-weight: 500;
    color: #383838;
}
.streamline_section{
    padding: 80px 0 10%;
    position: relative;
}
.streamline_section:before{
    content: '';
    position: absolute;
    left: 8%;
    top: 20%;
    background-image: url(../images/turning-icon2.webp);
    background-repeat: no-repeat;
    width: 408px;
    height: 680px;
    z-index: -1;
}
.streamline_section:after{
    content: '';
    position: absolute;
    right: 5%;
    bottom: 12%;
    background-image: url(../images/book-cover.png);
    background-repeat: no-repeat;
    width: 175px;
    height: 100px;
    z-index: 0;
    animation: 2s moveUpDown infinite;
}

.book_industry_content h3 {
    font-weight: 100;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
}

.book_industry_content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}

.book_industry_content a {
    display: inline-flex;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 0.8 !important;
    border-color: #fff;
    /* border-width: 1px; */
}
.book_industry_Sec{
    position: relative;
}
.book_industry_Sec:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 75%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #ff5037;
    z-index: -2;
}

/* logos :start */
.logos-slider img:hover {
    filter: none;
}
section.logos-wrap .logos-slider {
    border-width: 1px;
    border-color: rgb(225, 225, 225);
    border-style: solid;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding: 50px 0;
}

section.logos-wrap {
    padding: 60px 0 30px;
}

.logos-slider .slick-active {
    opacity: 1;
}
.logos-slider img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    /* opacity: 0.2; */
    filter: grayscale(1);
}
.logos-slider .slick-prev {
    left: -80px;
    top: 38%;
}
.logos-slider .slick-prev:before {
    content: "\f060";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-weight: 900;
    border-width: 1px;
    border-color: rgb(225, 225, 225);
    border-style: solid;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef5037;
    opacity: 1;
}
.logos-slider .slick-next {
    right: -50px;
    top: 40%;
}
.logos-slider .slick-next:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    font-weight: 900;
    border-width: 1px;
    border-color: rgb(225, 225, 225);
    border-style: solid;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef5037;
    opacity: 1;
}
ul.logsthird li img {
    width: 80%;
}
.logsthird .trist {
    width: 85px;
}

ul.logsthird {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logsthird .trist {
    width: 85px;
}
/* logos :end */

/* service :start */

.service-main-text h2 span {
    color: #ff5037;
    display: block;
}
section.Services-wrap {
    position: relative;
    padding-top: 90px;
    padding-bottom: 0;
}

img.pancel-img {
    position: absolute;
    top: -80px;
    z-index: -8;
    left: 22%;
}
.service-box span {
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 47px 98px 0px rgb(0 0 0 / 32%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: absolute;
    top: -37px;
}

.service-box h4 {
    font-size: 28px;
    color: #000;
}

.service-box {
    position: relative;
    border: 1px solid rgb(225, 225, 225);
    padding: 70px 40px 70px 30px;
    margin-bottom: 80px;
}

.service-box p {
    color: #000;
    font-weight: 500;
}

.service-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #ff5037;
}

.service-box h2 {
    margin-bottom: 10px;
    text-align: end;
    color: #ff5037a6;
    font-size: 65px;
    position: absolute;
    right: 30px;
    top: 20px;
}



.service-box span img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
section.Recent-releases {
    background: #f5f6f0;
    position: relative;
    z-index: 1;
}
/* service :end */


/* Recent Releases :start */

.recent-main h2 {
    font-size: 58px;
    margin-bottom: 10px;
}

.recent-main p {
    color: #000;
    font-weight: 500;
}
.recent-slider .slick-active {
    opacity: 1;
}
section.Recent-releases img.book-icon {
    left: 12%;
    top: 100px;
}
img.turning-line {
    position: absolute;
    bottom: 0;
    z-index: -2;
    width: 100%;
}
/* Recent Releases :end */


/* pricing :start */
.pakages-box {
    margin-top: 100px;
    border: 1px solid rgb(225, 225, 225);
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    padding-bottom: 20px;
    transform: scale(0.9);
    transition: 0.5s;
}

.pakages-box h3 {
    background: #222222;
    color: #fff;
    text-align: center;
    font-size: 29px;
    font-weight: 500;
    border-radius: 10px;
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
    margin-top: -50px;
}

.pakages-box h3 span {
    display: block;
}

.pakages-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 20px;
    border-bottom: 1px solid rgb(225, 225, 225);
    margin-bottom: 16px;
    padding-bottom: 10px;
    height: 42px;
}

.pakages-box ul {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    padding: 0 30px;
    overflow-y: scroll;
    height: 400px;
}
.pakages-box ul::-webkit-scrollbar-track
{
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.082); */
    background-color: #cfcfcf;
}

.pakages-box ul::-webkit-scrollbar
{
    width: 4px;
    background-color: #cfcfcf;
}

.pakages-box ul::-webkit-scrollbar-thumb
{
    background-color: #ff5037;
}
.pakages-box .btn-theme {
    width: 50%;
    margin: 0 auto;
    background: #222;
    border: 1px solid #222;
}

.pakages-box .btn-theme:before {
    background: #ff5037;
}

.pakages-box .btn-theme:hover {
    color: #fff !important;
    border: 1px solid #ff5037;
}

.pakages-box .btn-theme:hover img.hover-icon {
    filter: brightness(5.5);
}
.pakages-box:hover {
    transform: scale(1.0);
    box-shadow: 0px 81px 69.6px 17.4px rgba(0, 0, 0, 0.05);
}
.pakages-box:hover h3 {
    background: #ff5037;
}

.pakages-box:hover .btn-theme:before {
    background: #ff5037 !important;
}
.pakages-box:hover .btn-theme {
    color: #fff !important;
    border: 1px solid #ff5037;
}
.pakages-box:hover .btn-theme:before {
    top: -40px;
    left: -30px;
}
section.pakeges-wrap {
    position: relative;
}

img.cards-arm-hinge {
    position: absolute;
    top: 0;
    left: 8%;
}

img.plane-beige {
    position: absolute;
    right: 5%;
    top: 11%;
    animation: 2s moveUpDown infinite;
}
/* pricing :end */

  
/*Section What People Say Start*/


.dv1whtpeoplesay h2 span {
    display: block;
    font-size: 14px;
    font-family: 'Roboto';
    color: #000;
    font-weight: 400;
}
.dv1whtpeoplesay h2 {
    font-size: 25px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 6px;
    margin-top: 20px;
}
.dv1whtpeoplesay {text-align: center;margin-bottom: 15px;}
.dv1whtpeoplesay h2 span {
    display: block;
    font-size: 14px;
    font-family: 'Roboto';
    color: #919191;
    font-weight: 400;
}

.dv2whtpeoplesay p {color: #000;font-weight: 500;font-family: 'Roboto';}
.mainwhtpeoplesay {
    position: relative;
    padding: 0 50px 70px;
    text-align: center;
}
.Whatpeoplesay {
    position: relative;
}
.dv3whtpeoplesay img {
    position: absolute;
    top: 31%;
    left: 17%;
}
.dv4whtpeoplesay img {
    position: absolute;
    left: 8%;
    top: 44%;
}

.dv5whtpeoplesay img {
    position: absolute;
    bottom: 17%;
    left: 16%;
}
.dv6whtpeoplesay {
    position: absolute;
    top: 27%;
    right: 15%;
}
.dv7whtpeoplesay img {
    position: absolute;
    top: 49%;
    right: 8%;
}
.Whatpeoplesay:before {
    content: '';
    position: absolute;
    background-image: url(../images/whtpeoplesaystars.png);
    background-repeat: no-repeat;
    width: 20%;
    height: 100px;
    top: 32%;
    left: 69%;
    z-index: -1;
}
.dv1whtpeoplesay img {
    width: 16%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.mainwhtpeoplesay:before {
    content: '';
    position: absolute;
    height: 85%;
    width: 99%;
    bottom: -14px;
    right: -15px;
    background: #fff;
    box-shadow: 0 0 10px #00000036;
    z-index: -4;
}

.whtpeoplesayslid {
    width: 65%;
    position: relative;
    z-index: 1;
}
.recent-main h2 span {
    color: #fd4f37;
}
.mainwhtpeoplesay:after {content: '';position: absolute;bottom: 0;left: 0;width: 100%;height: 89%;box-shadow: 0 4px 8px 0 rgb(0 0 0 / 7%), 0 6px 20px 0 rgb(0 0 0 / 9%);background: #fff;z-index: -1;}

/*Section What People Say End*/

.recent-slider img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: top;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.dv2whtpeoplesay p>span {
    font-weight: 700;
    font-size: 15px;
}

.whtpeoplesayslid .slick-list {
    padding-bottom: 30px;
}

.whtpeoplesayslid .slick-prev:before {
    display: none;
}

.whtpeoplesayslid .slick-next:before {
    display: none;
}

ul.slidr_btnns {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}

ul.slidr_btnns > li > img {
    cursor: pointer;
    display: block;
    width: fit-content;
}

ul.slidr_btnns > li > img:hover {
    filter: invert(43%) sepia(70%) saturate(3452%) hue-rotate(340deg) brightness(104%) contrast(101%);
}

/* faqs */

.coach-lead-tabs .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: transparent;
}

.cust-faqs .accordion-item {
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid #b6a994;
    border-radius: 5px;
}

.cust-faqs .accordion-button {
    background: transparent;
    border-radius: 10px;
    font-size: 25px;
    font-family: 'Abril Display Regular';
    font-weight: 500;
    padding: 9px 20px;
    color: #222222;
    box-shadow: none;
}


.cust-faqs .accordion-body {
    padding: 15px 20px 30px;
}

.cust-faqs .accordion-body > p {
    font-weight: 500;
    line-height: 1.5;
    color: #000;
    font-family: 'Montserrat';
    line-height: 1.6;
    margin-bottom: 15px;
}

.cust-faqs .accordion-button:focus {
    border-color: #000;
    box-shadow: none;
}

.faqs-secc.all-sec.position-relative {
    background-color: #ffebcc;
    padding: 80px 0px;
}

.faqs-secc.all-sec.position-relative .theme-heading h2 {
    color: #222222;
    font-size: 58px;
    margin-top: 40px;
}

.faqs-secc .accordion-button::after {
    transform: rotate(-90deg);
}

.faqs-secc .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    filter: brightness(0);
}

.faqs-secc.all-sec.position-relative>img.vec1 {
    position: absolute;
    top: 0;
    right: 0;
}

.faqs-secc.all-sec.position-relative>img.vec2 {
    position: absolute;
    bottom: 35%;
    left: 3%;
}

.faqs-secc.all-sec.position-relative>img.vec3 {
    position: absolute;
    right: 3%;
    bottom: 50%;
}
/* faqs */

/* contact form */

.contact_us {
    padding: 70px 0px;
}

.contact_us .contact_form {
    position: relative;
    width: 100%;
    margin-left: auto;
}

.form-img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: contain;
}

.contact_us .contact_form h2 {
    font-size: 51px;
    color: #ff5037;
    font-weight: 600;
}

.contact_us .contact_form h2>span {
    color: #222222;
}

.contact_us .contact_form>form {
    padding: 70px 80px;
}
img.vec5 {
    position: absolute;
    right: -46px;
    top: -70px;
}
.contact_us .contact_form>form>input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: 1px solid #ababab;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contact_us .contact_form>form>textarea {
    width: 100%;
    height: 130px;
    padding: 10px 20px;
    border: 1px solid #ababab;
    border-radius: 10px;
    resize: none;
    margin-bottom: 20px;
}

.contact_us .contact_form>form>input::placeholder {
    color: #3d3d3d;
    font-size: 14px;
    font-family: 'Montserrat';
}

.contact_text_wrpp > h2 {
    color: #ff5037;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 11px;
}

.contact_text_wrpp > h2 >span {
    color: #222222;
    display: block;
}

.contact_text_wrpp > p {
    color: #222222;
    margin: 0 0px 30px;
}

.contact_text_wrpp > ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.contact_text_wrpp > ul > li:last-child a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    color: #ff5037;
    font-family: 'Montserrat';
    font-weight: 500;
}

.contact_text_wrpp > ul > li:last-child a > span {
    width: 40px;
    height: 40px;
    background: #ff5037;
    padding: 8px;
    border-radius: 50%;
}

.contact_text_wrpp > ul > li:last-child a > span > img {
    filter: brightness(0) invert(1);
}

.contact_us .contact_form>form>button {
    margin-bottom: 20px;
}

.contact_us .contact_form>form>img.vec4 {
    position: absolute;
    top: 9%;
    right: 20%;
}
.contact_us {
    position: relative;
}

.contact_us>img.vec5 {
    position: absolute;
    top: 0;
    right: 6%;
}

.contact_us>img.vec6 {
    position: absolute;
    bottom: 10%;
    left: 0;
}

.contact_us>img.vec3 {
    position: absolute;
    top: 22%;
    left: 43%;
}
/* contact form */

/* 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: 'Roboto';
    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;
}

.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: 'Roboto';
}

.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 */

.whtpeoplesayslid .slick-track {
    display: flex;
    align-items: stretch;
}

.whtpeoplesayslid .slick-track .slick-slide {
    height: 0;
}

.whtpeoplesayslid .slick-track .slick-current {
    height: auto !important;
}

.whtpeoplesayslid .slick-track .slick-current .mainwhtpeoplesay {
    height: auto !important;
}

.modal-open {
    padding-right: 0 !important;
}

.modal-content {
    border: 0 !important;
    background-color: transparent !important;
}

.modal-body {
    /*   border: 5px solid #3682ea;
    background-image: url(/assets/images/pop-up.png);*/
    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;
    /*filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(635%) hue-rotate(273deg) brightness(119%) contrast(100%);*/
}

.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;
}

.form-group.mt-2.text-center .btn-theme {
    margin: 0 auto;
}

.uploadFile p#file-list-x {
    width: 100%;
    margin: 0;
}

.thankyou_page {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou_page h1 {
    color: #000;
    FONT-SIZE: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.thankyou_page p {
    color: #000;
    font-size: 23px;
}

.thankyou_page a.btn-theme {
    display: inline-block;
    margin-top: 30px;
}

html {
    overflow-x: hidden !IMPORTANT;
}

body {
    overflow-x: hidden !IMPORTANT;
}

@media only screen and (min-width: 1381px) and (max-width: 1599px) {

    .logos-slider .slick-prev {
        left: -50px;
    }

    .logos-slider .slick-prev:before {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .logos-slider .slick-next:before {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .logos-slider .slick-next {
        right: -30px;
    }

    section.logos-wrap {
        padding: 50px 0px 30px;
    }

    .streamline_section:after {
        width: 150px;
        height: 80px;
        background-size: contain;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        width: 40px;
        left: 1%;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        width: 40px;
        right: 1%;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1380px){
	.row_btn ul {
    width: 42%;
}

    .logos-slider .slick-prev {
        left: -60px;
    }

    .logos-slider .slick-next {
        right: -30px;
    }

    a.btn-theme {
        font-size: 11px;
    }
    img.vec5 {width: 70px;right: -29px;}
    .header_btns ul {
        gap: 25px;
    }
    .header_btns ul li:first-child {
        margin-right: 5%;
    }
    .header_btns ul li:first-child:after {
        right: -10%;
    }
    header .btn-theme{
        padding: 0 20px;
    }
    .turning_icon {
        top: 50px;
        width: 20%;
    }
    .book_industry_content h2{
        font-size: 38px;
    }
    .book_industry_content h3 {
        font-size: 32px;
    }
    .book-icon {
        right: 6%;
        top: 23%;
    }
    .contact_us .contact_form>img{
        object-fit: inherit;
    }
    .contact_us>img.vec5{
        right: 5%;
    }

    .banner_content form:before {
        background-size: 100% 120%;
    }

    section.logos-wrap {
        padding: 50px 0px;
    }

    .streamline_section {
        padding: 20px 0px 50px;
    }

    .streamline_section:before {
        width: 50%;
        height: 80%;
        background-size: contain;
    }

    .streamline_section:after {
        width: 90px;
        background-size: contain;
        height: 50px;
    }

    section.Services-wrap.all-section {padding-bottom: 20px;}

    img.cards-arm-hinge {
        width: 30px;
    }

    .dv3whtpeoplesay img {
        left: 12%;
    }

    .dv5whtpeoplesay img {
        left: 13%;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        display: none;
    }

    .contact_text_wrpp > h2 {
        font-size: 50px;
    }

    .footer_links:after {
        left: -40px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .banner_content form:before {
        background-size: 105% 105%;
    }

    .header-logo img {
        width: auto;
    }

    .header_btns ul li:not(:last-child) h5 span {
        font-size: 14px;
    }

    .header_btns ul li:first-child {
        margin: 0;
    }

    .header_btns ul {
        gap: 0;
        align-items: center;
        justify-content: space-between;
    }

    .btn-theme {
        font-size: 15px;
        height: 45px;
        padding: 0 15px;
    }

    .header_btns ul li:first-child:after {
        opacity: 0;
    }

    .turning_icon {
        width: 17%;
    }

    .banner_content form {
        padding: 50px 70px 70px;
    }

    .banner_content form button.btn-theme {
        margin-bottom: 20px;
    }

    .banner_content form h3 {
        margin-top: 20px;
    }

    .row_btn ul {
        margin-top: 0;
    }

    section.logos-wrap {
        padding: 30px 0px;
    }

    section.logos-wrap .logos-slider {
        padding: 30px 0px;
    }

    .streamline_section {
        padding: 50px 0px;
    }

    .streamline_content h3 {
        font-size: 35px;
    }

    .streamline_section:after {
        display: none;
    }

    .streamline_section:before {
        width: 50%;
        height: 70%;
        background-size: contain;
    }

    .book_industry_Sec:before {
        height: 100%;
    }

    .book_industry_Sec {
        padding: 50px 0px;
    }

    .book_industry_content h3 {
        font-size: 25px;
    }

    .book_industry_content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    img.pancel-img {
        left: 10%;
    }

    .service-box {
        margin-bottom: 0;
        margin-top: 50px;
    }

    section.Services-wrap h2 {
        margin: 0;
    }

    .recent-slider img {
        height: auto;
    }

    img.cards-arm-hinge {
        left: 4%;
    }

    .pakages-box h3 {
        font-size: 20px;
    }

    .pakages-box ul li {
        font-size: 12px;
    }

    .pakages-box .btn-theme {
        width: 80%;
    }

    .dv3whtpeoplesay img {
        left: 12%;
    }

    .dv5whtpeoplesay img {
        left: 11%;
    }

    .dv6whtpeoplesay {
        right: 10%;
    }

    .faqs-secc.all-sec.position-relative>img.vec1 {
        width: 30%;
    }

    .cust-faqs .accordion-button {
        line-height: 1.4;
        font-size: 20px;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative .theme-heading h2 {
        font-size: 45px;
        margin-top: 0;
    }

    .recent-main h2 {
        font-size: 45px;
    }

    section.Services-wrap.all-section h2 {
        font-size: 45px;
    }

    .contact_text_wrpp > h2 {
        font-size: 45px;
    }

    .contact_text_wrpp > ul > li:last-child a {
        font-size: 16px;
    }

    .contact_text_wrpp > ul a.btn-theme {
        font-size: 13px;
    }

    img.vec5 {
        display: none;
    }

    .contact_us .contact_form>form {
        padding: 60px 60px;
    }

    .form-img {
        object-fit: fill;
    }

    .contact_us .contact_form h2 {
        font-size: 40px;
    }

    .contact_us .contact_form>form>input {
        height: 45px;
    }

    .contact_us .contact_form>form>textarea {
        height: 90px;
    }

    .contact_us {
        padding: 40px 0px;
    }

    .footer_links:after {
        display: none;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logos-slider .slick-prev {
        left: -60px;
    }
    
    .logos-slider .slick-next {
        right: -30px;
    }
    .Whatpeoplesay:before {
        z-index: 99;
    }
    .banner_content form input::placeholder {
        font-size: 13px;
    }
    
    .banner_content form input {
        padding-left: 10px;
    }

    .header-logo img {
        width: 30%;
    }

    .header_btns ul {
        gap: 10px;
        align-items: end;
        justify-content: space-between;
        margin-top: 20px;
    }

    .header_btns ul li:first-child {
        margin: 0;
    }

    .header_btns ul li:not(:last-child) h5 span {
        font-size: 14px;
    }

    .btn-theme {
        font-size: 15px;
        padding: 0 15px;
        height: 40px;
    }

    .header_btns ul li:first-child:after {
        opacity: 0;
    }

    .turning_icon {
        display: none;
    }

    .banner_content h1 {
        font-size: 45px;
    }

    .banner_content p {
        width: 80%;
    }

    .banner_content form {
        padding: 100px 40px;
    }

    .banner_content form:before {background-size: 108% 115%;}

    .uploadFile {
        width: 50%;
    }

    .row_btn ul {
        width: 60%;
        margin-top: -30px;
    }

    .row_btn li:last-child a {
        font-size: 16px;
        height: 45px;
    }

    section.logos-wrap {
        padding: 30px 0px 0px;
    }
    section.logos-wrap .logos-slider {
        padding: 30px 0;
    }
    .streamline_img >img {
        width: 100%;
        margin-bottom: 20px;
    }

    .streamline_section:before {
        display: none;
    }

    .two_btns {
        margin-bottom: 0;
    }

    .streamline_section:after {
        bottom: 0;
        width: 100px;
        background-size: contain;
        height: 60px;
    }

    .streamline_section {
        padding: 50px 0px;
    }

    .book_industry_Sec:before {
        height: 100%;
    }

    .book_industry_Sec {
        padding: 40px 0px;
    }

    .laptop_img > img {
        width: 100%;
        margin-top: 30px;
    }

    section.Services-wrap {
        padding: 50px 0px !important;
    }

    img.pancel-img {
        display: none;
    }
    .service-box h2 {
        font-size: 50px;
    }

    .service-box {
        margin-bottom: 40px;
        height: 260px;
    }

    section.Recent-releases.all-section .offset-2 {
        margin: 0;
    }

    section.Recent-releases img.book-icon {
        display: none;
    }

    .recent-slider img {
        height: auto;
    }

    img.cards-arm-hinge {
        display: none;
    }

    section.pakeges-wrap.all-section .offset-1 {
        margin: 0;
    }

    img.plane-beige {
        display: none;
    }

    .pakages-box h3 {
        font-size: 20px;
    }

    .pakages-box ul li {
        font-size: 13px;
    }

    section.pakeges-wrap.all-section .offset-3 {
        margin: 0;
    }

    .pakages-box {
        margin-top: 50px;
    }
    .all-section {
        padding: 50px 0px !important;
    }

    .mainwhtpeoplesay {
        padding: 0 20px 50px;
    }

    .whtpeoplesayslid {
        width: 100%;
    }

    .Whatpeoplesay .col-md-2.col-lg-2.col-12 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative .theme-heading h2 {
        font-size: 50px;
    }

    .faqs-secc.all-sec.position-relative>img.vec1 {
        width: 40%;
    }

    .cust-faqs .accordion-button {
        font-size: 20px;
        line-height: 1.4;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        display: none;
    }

    .contact_us>img.vec6 {
        display: none;
    }

    img.vec5 {
        display: none;
    }

    .contact_us>img.vec3 {
        display: none;
    }

    .contact_us .contact_form>form {
        padding: 100px 100px;
    }

    .contact_us {
        padding-bottom: 0;
    }
    .copy_right p {
        font-size: 13px;
    }

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    .header-logo img {
        width: auto;
    }

    .header_btns ul {
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
        align-items: center;
        justify-content: center;
    }

    .header_btns ul li:first-child {
        margin: 0;
        display: none;
    }

    .header-logo {
        text-align: center;
    }

    .header_btns ul li:not(:last-child) h5 span {
        font-size: 13px;
    }

    .header_btns ul li img {
        width: 25px;
    }

    .header_btns ul li:not(:last-child) a {
        gap: 8px;
    }

    .turning_icon {
        display: none;
    }

    h1 {
        font-size: 35px !important;
    }

    .banner_content h4 {
        font-size: 16px;
    }

    .banner_content p {
        width: 100%;
    }

    .banner_content form {
        padding: 0;
    }

    .book-icon {
        display: none;
    }

    .banner_content form h3 {
        font-size: 25px;
    }

    .banner_content form:before {
        display: none;
    }

    .uploadFile {
        width: 100%;
    }

    .row_btn ul {
        width: 100%;
        /* flex-direction: column; */
        gap: 10px;
        margin-top: 10px;
        justify-content: center;
    }

    .banner_section:after {
        display: none;
    }

    section.banner_section:before {
        height: 100%;
    }

    section.logos-wrap {
        padding: 30px 0px;
    }

    section.logos-wrap .logos-slider {
        padding: 20px 0px;
    }

    .row_btn li:last-child a {
        color: #ff5037;
        border-color: #ff5037;
    }

    .streamline_section {
        padding: 40px 0px;
    }

    .streamline_content {
        padding: 0;
    }

    .streamline_content h3 {
        font-size: 30px;
    }

    .streamline_section:before {
        display: none;
    }

    .streamline_section:after {
        display: none;
    }

    .two_btns {
        /* flex-direction: column; */
        gap: 10px;
        margin: 0;
        margin-top: 20px;
    }

    .book_industry_Sec:before {
        top: 0;
        height: 100%;
        transform: translateY(0%);
    }

    .book_industry_content h3 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .book_industry_content h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .laptop_img > img {
        width: 100%;
        margin-top: 30px;
    }

    .book_industry_Sec {
        padding: 40px 0px;
    }

    section.Services-wrap {
        padding: 50px 0px;
    }

    img.pancel-img {
        display: none;
    }

    h2 {
        font-size: 35px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .service-box {
        padding: 50px 20px 20px;
        margin-bottom: 40px;
    }

    .service-box h2 {
        display: none;
    }

    .service-box h4 {
        font-size: 25px;
    }

    .service-box p {
        font-size: 14px;
    }
    .all-section {
        padding: 50px 0px;
    }

    section.Recent-releases.all-section .offset-2 {
        margin: 0;
    }

    .recent-slider img {
        height: auto;
    }

    img.turning-line {
        display: none;
    }

    img.cards-arm-hinge {
        display: none;
    }

    section.pakeges-wrap.all-section .offset-1 {
        margin: 0;
    }

    img.plane-beige {
        display: none;
    }

    .pakages-box {
        transform: scale(1);
    }

    .pakages-box h3 {
        margin-top: -30px;
        width: 100%;
        font-size: 24px;
    }

    .pakages-box ul {
        padding: 0 11px;
    }

    .pakages-box ul li {
        font-size: 13px;
        line-height: 1.2;
    }

    .pakages-box .btn-theme {
        width: fit-content;
    }
    section.pakeges-wrap.all-section .offset-3 {
        margin: 0;
    }

    .Whatpeoplesay .col-md-2.col-lg-2.col-12 {
        display: none !important;
    }

    .whtpeoplesayslid {
        width: 100%;
    }

    .mainwhtpeoplesay {
        padding: 10px;
    }

    .dv1whtpeoplesay img {
        width: 80px;
    }

    .dv1whtpeoplesay h2 {
        font-size: 20px !important;
    }

    .dv2whtpeoplesay p {
        font-size: 14px;
    }
    .faqs-secc.all-sec.position-relative>img.vec1 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative .theme-heading h2 {
        margin-top: 0;
    }

    .faqs-secc.all-sec.position-relative {
        padding: 50px 0px;
    }

    .cust-faqs .accordion-button {
        font-size: 16px;
        padding: 9px 15px;
        line-height: 1.2;
    }

    .accordion-header {
        margin: 0 !important;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        display: none;
    }

    .contact_us {
        padding: 40px 0px;
    }

    .contact_us>img.vec5 {
        display: none;
    }

    .contact_us>img.vec3 {
        display: none;
    }

    .contact_us .contact_form>form>img.vec4 {
        display: none;
    }

    .contact_us>img.vec6 {
        display: none;
    }

    .contact_text_wrpp > ul {
        /* flex-direction: column; */
        gap: 10px;
    }

    .contact_us .btn-theme {
        font-size: 13px;
    }

    .contact_text_wrpp > ul > li:last-child a {
        font-size: 20px;
    }

    .contact_us .contact_form>img {
        display: none;
    }

    .contact_us .contact_form>form {
        padding: 0;
    }

    .contact_us .contact_form {
        margin-top: 40px;
    }

    .contact_us .contact_form h2 {
        text-align: center;
    }

    footer .footer_info > p {
        width: 100%;
    }

    footer {
        padding-top: 40px;
    }

    .footer_links {
        margin-top: 20px;
    }

    .copy_right p {
        font-size: 14px;
        text-align: center;
    }

    .btn-theme {
        width: fit-content;
        font-size: 13px;
        padding: 0 20px;
    }

    .copy_right ul {
        justify-content: center;
        margin-bottom: 10px;
    }

    .recent-main h2 {
        font-size: 40px !important;
    }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
    .header-logo img {
        width: 50%;
    }

    .header_btns ul {
        /* flex-direction: row; */
        gap: 10px;
        margin-top: 20px;
        /* align-items: center; */
        /* justify-content: center; */
        display: block;
    }

    .header_btns ul li:first-child {
        margin: 0;
        /* display: none; */
        width: 48%;
    }

   .header-logo {
    text-align: center;
    width: 180px;
    margin: 0 auto 0px;
}

    .header_btns ul li:not(:last-child) h5 span {
        font-size: 12px;
    }

    

    .header_btns ul li:not(:last-child) a {
        gap: 8px;
    }

    .turning_icon {
        display: none;
    }

    h1 {
        font-size: 24px !important;
    }
    .header_btns ul li {
    display: inline-block;
    margin-left: 20px;
}



.header_btns ul li:last-child {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.header_btns ul img {
    width: 25px;
}

.header_btns ul li:first-child:after {display: none;}

.header_btns ul li:nth-child(2) {
    /* width: 50%; */
}
    .header_btns .btn-theme {
    padding: 0 30px;
    font-size: 15px;
    height: 48px;
}

.header_btns .btn-theme img {
    width: auto;
}

.banner_content h1 span {
    font-size: 24px;
}

    .banner_content h4 {
        font-size: 16px;
    }

    .banner_content p {
        width: 100%;
    }

    .banner_content form {
        padding: 0 !important;
        padding-top: 30px !important;
    }

    .book-icon {
        display: none;
    }

    .banner_content form h3 {
        font-size: 25px;
    }

    .banner_content form:before {
        display: none;
    }

    .uploadFile {
        width: 100%;
    }

    .row_btn ul {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .banner_section:after {
        display: none;
    }

    section.banner_section:before {
        height: 100%;
    }

    section.logos-wrap {
        padding: 30px 20px;
    }

    section.logos-wrap .logos-slider {
        padding: 20px 0px;
    }

    .row_btn li:last-child a {
        color: #ff5037;
        border-color: #ff5037;
    }

    .streamline_section {
        padding: 40px 0px;
    }

    .streamline_content {
        padding: 0;
    }

    .streamline_content h3 {
        font-size: 30px;
    }

    .streamline_section:before {
        display: none;
    }

    .streamline_section:after {
        display: none;
    }

    .two_btns {
        flex-direction: column;
        gap: 10px;
        margin: 0;
        margin-top: 20px;
    }

    .book_industry_Sec:before {
        top: 0;
        height: 100%;
        transform: translateY(0%);
    }

    .book_industry_content h3 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .book_industry_content h2 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .laptop_img > img {
        width: 100%;
        margin-top: 30px;
    }

    .book_industry_Sec {
        padding: 40px 0px;
    }

    section.Services-wrap {
        padding: 50px 0px;
    }

    img.pancel-img {
        display: none;
    }

    h2 {
        font-size: 30px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .service-box {
        padding: 50px 20px 20px;
        margin-bottom: 40px;
        text-align: center;
    }

    .service-box h2 {
        display: none;
    }
    .service-box:before {
        content: '';
        position: absolute;
        top: auto;
        left: 0;
        width: 100%;
        height: 3px;
        background: #ff5037;
        bottom: 0;
    }

    .service-box h4 {
        font-size: 25px;
    }

    .service-box p {
        font-size: 14px;
    }
    .all-section {
        padding: 50px 0px;
    }

    section.Recent-releases.all-section .offset-2 {
        margin: 0;
    }

    .recent-slider img {
        height: auto;
    }

    img.turning-line {
        display: none;
    }

    img.cards-arm-hinge {
        display: none;
    }

    section.pakeges-wrap.all-section .offset-1 {
        margin: 0;
    }

    img.plane-beige {
        display: none;
    }

    .pakages-box {
        transform: scale(1);
    }

    .pakages-box h3 {
        margin-top: -30px;
        width: 100%;
        font-size: 24px;
    }

    .pakages-box ul {
        padding: 0 11px;
    }

    .pakages-box ul li {
        font-size: 13px;
        line-height: 1.2;
    }

    .pakages-box .btn-theme {
    width: 52%;
    font-size: 14px;
}
    section.pakeges-wrap.all-section .offset-3 {
        margin: 0;
    }

    .Whatpeoplesay .col-md-2.col-lg-2.col-12 {
        display: none !important;
    }

    .whtpeoplesayslid {
        width: 100%;
    }

    .mainwhtpeoplesay {
        padding: 10px;
    }

    .dv1whtpeoplesay img {
        width: 80px;
    }

    .dv1whtpeoplesay h2 {
        font-size: 20px !important;
    }

    .dv2whtpeoplesay p {
        font-size: 14px;
    }
    .faqs-secc.all-sec.position-relative>img.vec1 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative .theme-heading h2 {
        margin-top: 0;
    }

    .faqs-secc.all-sec.position-relative {
        padding: 50px 0px;
    }

    .cust-faqs .accordion-button {
        font-size: 14px;
        padding: 9px 15px;
        line-height: 1.4;
    }

    .accordion-header {
        margin: 0 !important;
    }

    .faqs-secc.all-sec.position-relative>img.vec2 {
        display: none;
    }

    .faqs-secc.all-sec.position-relative>img.vec3 {
        display: none;
    }

    .contact_us {
        padding: 40px 0px;
    }

    .contact_us>img.vec5 {
        display: none;
    }

    .contact_us>img.vec3 {
        display: none;
    }

    .contact_us .contact_form>form>img.vec4 {
        display: none;
    }

    .contact_us>img.vec6 {
        display: none;
    }

    .contact_text_wrpp > ul {
        flex-direction: column;
        gap: 10px;
    }

    .contact_us .btn-theme {
        font-size: 13px;
    }

    .contact_text_wrpp > ul > li:last-child a {
        font-size: 20px;
    }

    .contact_us .contact_form>img {
        display: none;
    }

    .contact_us .contact_form>form {
        padding: 0;
    }

    .contact_us .contact_form {
        margin-top: 40px;
    }

    .contact_us .contact_form h2 {
        text-align: center;
    }

    footer .footer_info > p {
        width: 100%;
    }

    footer {
        padding-top: 40px;
        text-align: center;
    }

    .footer_links {
        margin-top: 20px;
    }

    .copy_right p {
        font-size: 14px;
        text-align: center;
    }
    footer .footer_info > span{
        justify-content: center;
    }
    .btn-theme {
    width: fit-content;
    font-size: 9px;
    padding: 0 12px;
    height: 40px;
}

    .copy_right ul {
        justify-content: center;
        margin-bottom: 10px;
    }
    .service-box span {
        left: 50%;
        transform: translateX(-50%);
    }
    .banner_section .row_btn ul {
    flex-direction: inherit;
    gap: 0px;
}

.banner_section .row_btn li:last-child a {
    color: #ff5037;
    border-color: #ff5037;
    border-radius: 5px;
    font-size: 11px;
    height: 40px;
}
.pakages-box ul li p {
    font-size: 14px;
}
.banner_section .row_btn li:first-child .btn-theme {
    font-size: 13px !important;
    padding: 0 22px;
}

.streamline_section ul.two_btns {
    flex-direction: inherit;
}
.streamline_section ul.two_btns li a {
    padding: 0 20px;
    font-size: 15px;
}

.banner_section .row_btn li:last-child a span {
    margin-right: 0;
    width: 30px;
    height: 30px;
}
.row_btn li:last-child a span img {
    width: 18px;
}
.sfd li:nth-child(03) a{
    margin: 0 auto;
}
.sfd li:nth-child(03) i{
    left: 40px;
}
.offrftr {
    width: 50%;
}

.scilftr {
    width: 48%;
}

.offrftr .footer_links:after {
    display: none;
}

.scilftr .footer_links:after {
    left: -24px;
}

.offrftr .footer_links li a {
    justify-content: center;
}

.logsthird .trist {
    width: 85px;
}

ul.logsthird {
   
    justify-content: center;
   
}



}


@media only screen and (min-height: 640px) and (max-height: 699px){
    .banner_content h1 {
        font-size: 36px;
        line-height: 45px;
    }
    .banner_content form {
        padding: 40px 90px 50px;
    }

}
@media only screen and (min-height: 580px) and (max-height: 639px){
    .banner_content h1 {
        font-size: 36px;
    }
    .banner_content form {
        padding: 30px 90px 30px;
    }
    .banner_content form select {
        height: 45px;
    }

    .banner_content form input {
        height: 45px;
    }
    .banner_content form h3 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .banner_content h4 {
        margin-bottom: 5px;
    }
    .submit_btn button{
        height: 42px;
    }
    .banner_content form:before{
        height: 105%;
    }

}

@media only screen and (max-width: 375px) {
.streamline_section ul.two_btns li a {
    padding: 0 13px;
    font-size: 10px;
}
}



.theme-btn.bt-buy-now {
    background: #0d9f16;
    color: #fff;
    border-radius: 120px;
    padding: 10px 10px 6px;
    width: 100px !important;
}

.whattsapp .theme-btn i {
    font-size: 22px;
    line-height: 1;
}

.whattsapp .theme-btn span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 1;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    text-transform: uppercase;
}

.whattsapp .theme-btn:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
    /* line-height: 1; */
}

.whattsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99;
}

.whatsapp {
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .7s ease infinite alternate;
}

.wa_butns {
    animation: scrollDownAnimation .5s ease infinite alternate;
    -webkit-animation: scrollDownAnimation .7s ease infinite alternate;
}

@keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes scrollDownAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

 @font-face {
          font-family: scarlett;
          src: url(https://use.typekit.net/af/285b02/00000000000000003b9adc13/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff2"),url(https://use.typekit.net/af/285b02/00000000000000003b9adc13/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff"),url(https://use.typekit.net/af/285b02/00000000000000003b9adc13/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("opentype");
          font-display: swap;
          font-style: normal;
          font-weight: 400;
          font-stretch: normal
      }
            .independ-popup {
          position: fixed;
          width: 60vw;
          height: 70vh;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          margin: auto;
          box-shadow: 0 0 20px 200000px #0000005e;
          border-radius: 50px;
          z-index: 999;
      }

      .independ-popup>video {
          height: 100%;
          width: 100%;
          object-fit: cover;
          border-radius: 10px;
      }

      .independ-cont {
          position: absolute;
          height: 94%;
          width: 100%;
          top: 0;
          left: 0;
          background: transparent;
          color: #fff;
          display: flex;
          align-items: flex-end;    
          justify-content: center;
          font-family: scarlett;
          text-align: center;
      }

     

      .closebtn {
    background-color: #000;
    color: #ddd35e;
    width: 50px;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    font-family: cursive;
    opacity: 1;
    position: absolute;
    top: -20px;
    right: -20px;
    border: 2px solid #ddd35e;
    cursor: pointer;
    z-index: 9999;
}
.independ-cont a {
    padding: 15px 50px;
    background: #cd1348;
    border: 4px dashed #000;
    border-radius: 50px;
    font-size: 27px;
    text-decoration: none;
    color: #fff;
        margin: 0 0 -120px 0;
}
@media only screen and (min-width: 300px) and (max-width: 519px){
            .independ-popup {
    width: 90%;
    height: 210px;
}
.independ-cont {
    position: absolute;
    height: auto;
    width: 100%;
    bottom: -60px;
    left: 0;
    background: unset;
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: scarlett;
    text-align: center;
}
.independ-cont a {
    padding: 10px 30px;
    background: #cd1348;
    border: 4px dashed #000;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}
}
      @media only screen and (max-width: 600px) {

.closebtn {
    background-color: #000;
    color: #ddd35e;
    width: 30px;
    display: flex;
    align-items: center;
    height: 30px;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-family: cursive;
    opacity: 1;
    position: absolute;
    top: -10px;
    right: -13px;
    border: 2px solid #ddd35e;
    cursor: pointer;
    z-index: 9999;
}


      }


/* 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 */