@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); /* "Poppins", sans-serif; */
/* "Plus Jakarta Sans", sans-serif; */
::-webkit-scrollbar-track {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 6px inset;
    background-color: rgb(27 25 23);
}

::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(27 25 23);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(255 127 80);
    background-image: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.2) 25%, rgba(5, 5, 5, 0) 25%, transparent 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2) 75%, transparent 75%, transparent);
}

:root {
    --theme: #ff7f50;
    --gradient: linear-gradient(90deg, rgba(255, 127, 80, 1) 0%, rgba(155, 42, 1, 1) 100%);
}

/***** General CSS *****/
body {
    word-break: break-word;
    font: 15px/25px 'Poppins', sans-serif;
    color: #393939;
    overflow-x: hidden;
    background-color: #1b1917;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

a:hover, a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

img {
    max-width: 100%;
}

input[type="text"]:focus, textarea:focus, input[type="password"]:focus, select:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="number"], textarea, input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 500;
    line-height: 1.2;
}

/***** Font Files *****/
/***** Custom Classes *****/
.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 55px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 30px;
}

h3 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: 'Poppins', Sans-Serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'Poppins', Sans-Serif;
    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 {
    padding: 30px 0px;
    position: relative;
    z-index: 1;
}

header .row {
    align-items: center;
}

header ul#menu {
    display: flex;
    align-items: center;
    justify-content: end;
    margin: 0;
    border: 1px solid var(--theme);
    gap: 0px;
    width: fit-content;
    margin-left: auto;
    border-radius: 30px;
    padding: 9px 0px;
}

header ul#menu>li>a {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    padding: 10px 25px;
}

header .header_btn>ul {
    display: flex;
    margin: 0;
    justify-content: end;
    align-items: center;
    gap: 25px;
}

header .header_btn>ul li .btn1 {
    display: flex
;
    align-items: center;
}

header .header_btn ul li i {
    background: #eaeaea;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    text-align: center;
    line-height: 44px;
}
.header_btn li a span {
    color: #fff;
    margin-left: 6px;
}

a.logo_here img {
    filter: brightness(0) invert(1);
}

img.ftrlog {
    width: 70%;
    margin-bottom: 30px;
}

.terms__links {
    text-align: right;
}
.terms__links ul li {
    display: inline-block;
    padding: 0 0 0px 40px;
}
.terms__links ul li a {
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    position: relative;
}
.terms__links ul li a:after {
    content: '';
    position: absolute;
    border-right: 1px solid #fff;
    right: -20px;
    height: 27px;
    top: -1px;
}
.terms__links ul li:nth-last-child(1) a:after {
    border: 0;
}

.theme_btn {
    background-color: var(--theme);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 25px;
    border-radius: 30px;
    border: 0;
    position: relative;
    z-index: 1;
}
.wpcf7-submit {
  position: relative !important; /* button stable rahe */
}

.wpcf7-submit.has-spinner + .wpcf7-spinner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  z-index: 2 !important;
}




.theme_btn2 {
    background-color: var(--theme)!important;
    color: #fff!important;
    font-size: 16px!important;
    font-weight: 400!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    height: 45px!important;
    padding: 0 25px!important;
    border-radius: 5px!important;
    border: 0!important;
    position: relative!important;
    z-index: 1!important;
}

/* header end */
.banner {
    padding: 70px 0px;
}

.banner .container>.row {
    align-items: center;
}

.banner .banner_text>h1 {
    font-size: 60px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.banner .banner_text>ul>li {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    position: relative;
    margin-bottom: 9px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.banner .banner_text>ul>li > i {
    color: var(--theme);
    font-size: 14px;
}

.banner .banner_text>ul {
    margin-bottom: 30px;
}

.banner .banner_text>p {
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
}

.banner .banner_form {
    background-color: #eaeaea;
    padding: 25px 25px 15px;
    border-radius: 7px;
}

.banner .banner_form form input {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid var(--theme);
    height: 45px;
    padding: 10px 10px;
    border-radius: 7px;
    color: #000;
    font-size: 14px;
}

.banner .banner_form form input::placeholder {
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
}

.banner .banner_form form button {
    width: 100%;
    border-radius: 7px;
}

.banner .banner_img_wrpr {
    position: relative;
    height: 610px;
}

.banner .banner_img_wrpr>img {
    width: 90%;
    margin-left: auto;
    display: block;
    height: 100%;
}

.banner .banner_img_wrpr>a>i {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme);
    border-radius: 50%;
    color: #fff;
    font-size: 35px;
    transition: 0.3s ease-in-out;

}

.banner .banner_img_wrpr>a {
    position: absolute;
}

.banner .banner_img_wrpr>a:nth-child(2) {
    top: 0;
    right: 0;
}

.banner .banner_img_wrpr>a:nth-child(3) {
    left: 11%;
    top: 63%;
}

.banner .banner_img_wrpr>a:nth-child(4) {
    left: 11%;
    top: 76%;
}

.banner .banner_img_wrpr>a:nth-child(5) {
    left: 11%;
    top: 89%;
}

.banner .banner_img_wrpr>a>i:hover {
    /* background: #eaeaea; */
    /* color: #000; */
}

.banner .banner_img_wrpr>a>i.fa-arrow-right-long {
    transform: rotate(-35deg);
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

/* banner end */
.logos_sec .slick-slide {
    opacity: 1;
}

.logos_sec img {
    filter: grayscale(1);
    width: 110px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.logos_sec {
    padding: 50px 0px;
}

header ul#menu>li>a:after {
    position: absolute;
    content: "";
    background: linear-gradient(0deg, rgba(255, 127, 80, 1) 0%, rgba(155, 42, 1, 1) 100%);
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    transition: 0.3s ease-in-out;
    right: 0;
    margin: 0 auto;
}

header ul#menu>li:first-child>a:after {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

header ul#menu>li:last-child>a:after {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

header ul#menu>li>a:hover:after {
    width: 100%;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }

    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }

    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }

    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        transform: scale(1) rotate(0);
    }
}

header .header_btn>ul>li>.btn1>i {
    animation: tada 1.5s ease infinite;
}

header ul#menu>li>a.active:after {
    width: 100%;
}

.theme_btn:after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #ff7f50, #ff7f50, #782709ba, #ab4520, #ff7f50, #78240547);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    z-index: -1;
    background-position: 0%;
    transition: 0.3s ease-in-out;
    background-size: 400% 400%;
}

.theme_btn:hover:after {
    animation: ani 8s linear infinite;
}

@keyframes ani {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

.theme_btn:hover {
    color: #fff;
}

.banner .banner_form form button:after {
    border-radius: 5px;
}

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

.fold_one .explore_img {
    position: relative;
}

.fold_one .explore_img>img {
    width: 100%;
    height: auto;
}

.fold_one .explore_img>.explore_img_textt {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 60%;
}

.fold_one .explore_img>.explore_img_textt>span {
    color: #fff;
    font-size: 29.47px;
    display: block;
    line-height: 1.2;
    font-weight: 500;
}

.fold_one .explore_img>.explore_img_textt>a>i {
    width: 60px;
    height: 60px;
    border: 2px solid var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    color: #fff;
    font-weight: 300;
    transform: rotate(-35deg);
    transition: 0.3s ease-in-out;
}

.fold_one .explore_img>.explore_img_textt:hover>a>i {
    background: var(--theme);
    transition: 0.3s ease-in-out;
    transform: rotate(320deg);
}

.fold_one .explore_textt_wrpr>ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fold_one .explore_textt_wrpr>ul>li {
    width: 50%;
    background-color: #ff7f50;
    border-radius: 30px;
}

.fold_one .explore_textt_wrpr>ul>li:not(:last-child)>img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 30px;
}

.fold_one .explore_textt_wrpr>ul>li:last-child>img {
    display: block;
    margin-left: auto;
    width: auto;
    height: 210px;
    margin-top: -30px;
    border-bottom-right-radius: 20px;
}

.theme_heading>h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.theme_heading>p {
    color: #fff;
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
}

.theme_btn1 {
    background-color: var(--theme);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding: 0 25px;
    border-radius: 30px;
    border: 0;
    position: relative;
    z-index: 1;
}

.theme_btn1:after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, #ff7f50, #ff7f50, #782709ba, #ab4520, #ff7f50, #78240547);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    z-index: -1;
    background-position: 0%;
    transition: 0.3s ease-in-out;
    background-size: 400% 400%;
}

.theme_btn1:hover:after {
    animation: ani 8s linear infinite;
}

.theme_btn1:hover {
    color: #fff1;
}

.theme_btn1>i {
    position: absolute;
    right: -45px;
    border: 1px solid;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border-color: var(--theme);
    font-size: 25px;
    font-weight: 600;
    transform: rotate(-35deg);
    transition: 0.3s ease-in-out;
}

.theme_btn1:hover>i {
    background-color: var(--theme);
    transform: rotate(320deg);
}

.fold_one .laptopimg_wrpr {
    margin-top: 70px;
}

.fold_one .laptopimg_wrpr>img {
    width: 100%;
    height: 523px;
    object-fit: cover;
    border-radius: 40px;
}

.fold_two .serv_box {
    background-color: var(--theme);
    padding: 25px;
    border-radius: 30px;
    position: relative;
    transition: 0.3s ease-in-out;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
}

.fold_two .row {
    align-items: end;
}

.fold_two .serv_box>h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 500;
}

.fold_two .serv_box>p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.fold_two .serv_box>img {
    margin-left: auto;
    display: block;
    margin-top: 50px;
}

.fold_two .serv_box>i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 25px;
    font-weight: 300;
    transform: rotate(-35deg);
    margin-left: auto;
    margin-bottom: 40px;
    transition: 0.3s ease-in-out;
}

.fold_two .serv_box:hover>i {
    transform: rotate(320deg);
}

.fold_two .serv_box.box_three>img {
    transform: scale(1.5);
    margin-bottom: -190px;
    margin-top: 90px;
    opacity: .6;
}

.fold_two .serv_box.box_three {
    overflow: hidden;
}

.fold_two .serv_box.box_four>img {
    width: 100%;
    margin-left: 90px;
    margin-top: -40px;
    opacity: .6;
}

.fold_two .serv_box.box_four {
    overflow: hidden;
}

.fold_two .serv_box:after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(255, 127, 80, 1) 0%, rgb(155 42 1 / 82%) 100%);
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.fold_two .serv_box:hover:after {
    height: 100%;
}

.fold_two .theme_heading>h2 {
    width: 50%;
    margin: 0 auto;
    margin-bottom: -50px;
}

/* fold two end */
.cust_tabs_wrp>ul {
    display: flex;
    align-items: center!important;
    justify-content: center!important;
    width: fit-content;
    margin: 0 auto!important;
    margin-bottom: 30px!important;
    padding: 0px!important;
    border-radius: 30px;
    border: 1px solid var(--theme);
}

.cust_tabs_wrp>ul>li {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
}

.cust_tabs_wrp>ul>li:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.cust_tabs_wrp>ul>li:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.cust_tabs_wrp>ul>li.current {
    background-color: var(--theme);
}

.tabs_box.current {
    display: block;
}

.tabs_box {
    display: none;
}

.cust_tabs_wrp .tabs_box a>img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.cust_tabs_wrp .tabs_box a.port_wrp {
    margin-bottom: 20px;
    display: block;
}

.cust_tabs_wrp .tabs_box a>img:hover {
    transition: .5s ease-in-out;
    transform: scale(.9);
    object-position: bottom;
}

.cust_tabs_wrp .tabs_box a.port_wrp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cust_tabs_wrp .tabs_box a.port_wrp:after {
    position: absolute;
    content: "\f06e";
    font-size: 50px;
    font-family: 'Font Awesome 5 Pro';
    color: var(--theme);
    transform: translate(0%, -170px);
    transition: 0.3s ease-in-out;
    opacity: 0;
    text-shadow: 0px 0px 20px black;
}

.cust_tabs_wrp .tabs_box a.port_wrp:hover:after {
    transform: translate(0%, 0px);
    opacity: 1;
}

/* fold three end */
.fold_four .theme_heading>h2>span {
    display: block;
    font-size: 67px;
    font-weight: 600;
}

.fold_four .theme_heading {
    position: relative;
    margin-bottom: 40px;
}

.fold_four .theme_heading>.disc_box {
    position: absolute;
    top: -40px;
    right: 1%;
}

.fold_four .theme_heading>.disc_box>span {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
    z-index: 2;
}

.fold_four .theme_heading>.disc_box>img {
    animation: 10s linear 0s infinite normal none running abc;
}

@keyframes abc {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pricing_box {
    background-color: #eaeaea;
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
    overflow: hidden;
}

.pricing_box>h3 {
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.pricing_box>h4 {
    text-align: center;
    font-size: 60px;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: end;
    line-height: 1;
    margin-bottom: 20px;
    justify-content: center;
}

.pricing_box>h4>span {
    font-size: 16px;
    line-height: 1;
    position: relative;
    bottom: 10px;
    text-decoration: line-through;
   /* display: none;*/
}

.pricing_box>ul.price_list {
    height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.pricing_box>ul.price_list::-webkit-scrollbar-track {
    border-radius: 10px;
}

.pricing_box>ul.price_list::-webkit-scrollbar {
    width: 7px;
}

.pricing_box>ul.price_list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #3c3c3c;
}

.pricing_box>ul.price_list>li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #000;
    transition: 0.3s ease-in-out;
}

.pricing_box .price_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.pricing_box .price_btns>* {
    width: 50%;
    font-size: 14px;
    padding: 0 15px;
}

.btn2 {
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.btn2:hover {
    color: var(--theme);
    border-color: var(--theme);
}

.pricing_box:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 20px;
    bottom: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: 0.3s ease-in-out;
    right: 0;
}

.pricing_box:hover:after {
    width: 100%;
}

.pricing_box:before {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 0;
    height: 20px;
    left: 0;
    top: 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transition: 0.3s ease-in-out;
}

.pricing_box:hover:before {
    width: 100%;
}

.pricing_box:hover>ul.price_list>li>i {
    color: var(--theme);
}

.pricing_box>ul.price_list>li>i {
    transition: 0.3s ease-in-out;
    margin-right: 6px;
}

/* fold four end */
.fold_five {
    background-color: #252423;
}

.fold_five .chose_img_wrp>img {
    width: 100%;
    height: 565px;
    object-fit: cover;
    border-radius: 30px;
}

.fold_five .chose_textt_wrp>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fold_five .chose_textt_wrp>div>h2 {
    color: #fff;
    font-size: 50px;
    line-height: 1;
    margin: 0;
}

.fold_five .chose_textt_wrp>span {
    font-size: 25px;
    color: #fff;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.fold_five .chose_textt_wrp>p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
}

.fold_five .chose_textt_wrp>ul {
    margin-bottom: 20px;
}

.fold_five .chose_textt_wrp>ul>li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #fff;
}

/* fold five end */
.industry_slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.fold_six .industry_box {
    background-color: #252423;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.fold_six .industry_box>img {
    width: 100px;
    height: 80px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    margin-bottom: 30px;
}

.fold_six .industry_box>span {
    font-size: 17px;
    color: var(--theme);
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
}

.fold_six .industry_box:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    right: 0;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}

.fold_six .industry_box:hover:after {
    height: 15px;
}

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

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

.fold_six .slick-arrow>i {
    color: #fff;
    border: 1px solid var(--theme);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 600;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.fold_six .slick-arrow {
    width: 50px;
    height: 50px;
}

.fold_six .slick-prev.slick-arrow>i {
    transform: rotate(35deg);
}

.fold_six .slick-next.slick-arrow>i {
    transform: rotate(-35deg);
}

.fold_six .slick-prev {
    left: -60px;
    z-index: 1;
}

.fold_six .slick-next {
    right: -60px;
    z-index: 1;
}

.fold_six .slick-prev.slick-arrow>i:hover {
    transform: rotate(360deg);
}

.fold_six .slick-next.slick-arrow>i:hover {
    transform: rotate(360deg);
}

.fold_six .slick-arrow>i:hover {
    background: var(--theme);
    color: #000;
}

/* fold six end */
.cust_faqs .accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
}

.cust_faqs .accordion-item h2 {
    border-radius: 15px;
}

.cust_faqs .accordion-item .accordion-button {
    border-radius: 15px;
    padding-left: 55px;
    position: relative;
    font-size: 16px;
    color: #000;
    line-height: 1.3;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    border-radius: 30px !important;
}

.cust_faqs .accordion-button::after {
    position: absolute;
    left: 10px;
    background-image: none;
    content: "+";
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme);
    border-radius: 50%;
    color: var(--theme);
    line-height: 1;
}

.cust_faqs .accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: none;
}

.cust_faqs .accordion-button:focus {
    box-shadow: none;
}

.cust_faqs .accordion-body {
    padding: 0;
}

.cust_faqs .accordion-body>p {
    padding-left: 55px;
    margin-right: 20px;
    line-height: 1.6;
    font-size: 14px;
    color: #000;
}

.cust_faqs .accordion-button:not(.collapsed)::after {
    content: "-";
}

.skill-main {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-main .skill-wrrap {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-main .skill-wrrap .skill-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.skill-main .skill-wrrap .skill-bar {
    height: 12px;
    background-color: #eaeaea;
    border-radius: 8px;
}

.skill-main .skill-wrrap .skill-per {
    height: 12px;
    background: #23576f;
    border-radius: 8px;
    width: 0;
    transition: 1s linear;
    position: relative;
    background: linear-gradient(90deg, rgba(2, 0, 36, 0) 0%, rgb(161 42 0) 0%, rgba(255, 129, 83, 1) 100%);
    top: 0px;
}

.skill-main .skill-wrrap .skill-per:before {
    content: attr(per);
    position: absolute;
    padding: 4px 6px;
    color: #fff;
    font-size: 19px;
    top: -35px;
    right: 0;
    transform: translateX(50%);
}

.theme_heading>h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fold_seven .row {
    align-items: end;
}

.skill-main .skill-wrrap .skill-per:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    right: -2px;
    background: #ffffff;
    border-radius: 50%;
    top: -2px;
}

.cust_faqs .accordion>.accordion-item:last-child {
    margin: 0;
}

.main_footer {
    background-color: #252423;
    padding: 60px 0px 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.main_footer h3 {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Plus Jakarta Sans';
}

.main_footer ul>li>a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-family: 'Plus Jakarta Sans';
    font-weight: 300;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid transparent;
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

.main_footer ul>li>a:hover {
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid;
    transform: translate(5px, 0px);
    color: var(--theme);
}

.footer_bottm p {
    color: rgb(255, 255, 255);
    font-size: 19px;
    margin: 0px;
    font-weight: 300;
    display: inline-block;
    text-align: center;
    float: none;
}
.terms__links {
    text-align: right;
    float: right;
}

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

.main_footer span {
    font-size: 20px;
    font-family: 'Plus Jakarta Sans';
    display: block;
    margin-bottom: 20px;
    color: var(--theme);
}

.main_footer a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-family: 'Plus Jakarta Sans';
    font-weight: 300;
    transition: all 0.3s ease 0s;
    border-bottom: 1px solid transparent;
    display: block;
    width: fit-content;
    margin-bottom: 5px;
}

.main_footer .social_media_links>li>a {
    font-size: 20px;
    border: 1px solid;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.main_footer .social_media_links {
    gap: 20px;
    margin: 0px;
}

.main_footer .social_media_links>li>a:hover {
    transform: none;
    background: transparent;
    color: rgb(255, 255, 255);
    border: 0px;
}

.main_footer .social_media_links>li>a:hover .fa-facebook-f {
    background: rgb(63, 81, 181);
}

.main_footer .social_media_links>li>a:hover .fa-linkedin-in {
    background: rgb(2, 136, 209);
}

.main_footer .social_media_links>li>a:hover .fa-twitter {
    background: rgb(3, 169, 244);
}

.main_footer .social_media_links>li>a:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, rgb(253, 244, 151) 0%, rgb(253, 244, 151) 5%, rgb(253, 89, 73) 45%, rgb(214, 36, 159) 60%, rgb(40, 90, 235) 90%);
}

.main_footer .social_media_links>li>a>i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}

.main_footer .social_media_links>li>a:hover i {
    border-radius: 10px;
    transform: rotate(15deg) scale(1.2);
    box-shadow: rgb(255, 255, 255) 0px 2px 40px -5px;
    transition: all 0.1s ease-in-out 0s;
}

.footer_bottm img {
    margin-inline-start: auto; display: block;
}

.main_footer::after {
    z-index: -1;
    position: absolute;
    content: "";
    /* background-image: url("../images/vec4.png"); */
    width: 100%;
    height: 100%;
    left: 0px;
    top: 10%;
    background-size: 100%;
    background-repeat: no-repeat;
}

.fold_one .laptopimg_wrpr>img.laptab.curr {
    display: block;
}

.fold_one .laptopimg_wrpr>img.laptab {
    display: none;
}

/*  inner pages start  */
.innerr_pages header {
    position: absolute;
    width: 100%;
    z-index: 9999;
}

.services_banner {
    position: relative;
    z-index: 1;
    height: 800px;
    display: flex;
    align-items: end;
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.services_banner .serv_banner_textt {
    text-align: center;
}

.services_banner .serv_banner_textt>h1 {
    font-size: 72px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services_banner .serv_banner_textt>p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px !important;
    width: 80%;
    margin: 0 auto;
    font-weight: 300;
}

.services_banner .serv_banner_textt>ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.services_banner .serv_banner_textt>ul>li:first-child>a:after {
    background: #fff;
    border: 1px solid var(--theme);
}

.services_banner .serv_banner_textt>ul>li:first-child>a {
    color: #000;
}

.innerr_pages .fold_four .theme_heading>p {
    width: 65%;
    margin: 0 auto;
    font-weight: 300;
}

.contact_form_secc .row>.col-lg-8 {
    padding-right: 0;
}

.contact_form_secc .row>.col-lg-4 {
    padding-left: 0;
}

.contact_form_secc .contact_form_wrp {
    background-color: #252423;
    padding: 70px 50px;
    border-radius: 40px;
}

.contact_form_secc .contact_form_wrp>h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
}

.contact_form_secc .contact_form_wrp>p {
    color: #fff;
    line-height: 1.6;
    font-weight: 300;
    width: 80%;
}

.contact_form_secc .contact_form_wrp>form>input, textarea {
    width: 100%;
    background-color: transparent;
    border: 1px solid #fff;
    height: 60px;
    padding: 10px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}

.contact_form_secc .contact_form_wrp>form>input::placeholder {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.contact_form_secc .contact_form_wrp>form>textarea::placeholder {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.contact_form_secc .contact_form_wrp>form>textarea {
    resize: none;
    height: 200px;
    padding-top: 20px;
}

.contact_form_secc .contact_form_wrp>form>button {
    width: 100%;
    border-radius: 10px;
    height: 50px;
}

.contact_form_secc .contact_img>img {
    width: 100%;
    height: 730px;
    border-radius: 40px;
}

.contact_form_secc .contact_form_wrp>form>input:focus {
    border-color: var(--theme);
}

.contact_form_secc .contact_form_wrp>form>textarea:focus {
    border-color: var(--theme);
}

.cta_two_secc .ctatwo_wrpr {
    background-color: var(--theme);
    padding: 50px 50px;
    position: relative;
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.cta_two_secc .ctatwo_wrpr>h3 {
    color: #fff;
    font-size: 50px;
    width: 50%;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.2;
}

.cta_two_secc .ctatwo_wrpr>img {
    position: absolute;
    right: 5%;
    bottom: 0;
}

.services_banner .serv_banner_textt .wpcf7>form {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eaeaea;
    width:80%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
    margin-bottom: 80px;
}


.services_banner .serv_banner_textt .wpcf7 form>* {
   width: 33.33333%;
}

.services_banner .serv_banner_textt .wpcf7 form input {
    border: 1px solid var(--theme);
    height: 45px;
    padding: 10px;
    width:100%;
    border-radius: 5px;
    color: #000;
    font-size: 14px;
}

.services_banner .serv_banner_textt .wpcf7 form input::placeholder {
    color: #000;
    font-size: 13px;
}

.services_banner .serv_banner_textt .wpcf7 form button {
    border-radius: 5px;
}

.services_banner .serv_banner_textt .wpcf7 form button:after {
    border-radius: 5px;
}

.services_banner .serv_banner_textt>.logo_slider img {
    filter: grayscale(1);
    width: 110px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.services_banner .serv_banner_textt>.logo_slider .slick-slide {
    opacity: 1;
}

.recent_work_secc .recent_work_box {
    padding-left: 11%;
    position: relative;
}

.recent_work_secc .recent_work_box>h2 {
    writing-mode: tb;
    color: #fff;
    height: fit-content;
    margin-bottom: 0;
    transform: rotate(180deg);
    font-size: 42px;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: end;
    position: absolute;
    left: 8%;
    top: 50px;
}

.recent_work_secc .recent_work_box .recent_div {
    position: relative;
}

.recent_work_secc .recent_work_box .recent_div>span>img {
    width: 100%;
    height: 380px;
    /*object-fit: cover;*/
        object-fit: fill;
    object-position: top;
    border-radius: 30px;
    display: block;
    margin-bottom: 20px;
}

.recent_work_secc .recent_work_box .recent_div>ul {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.recent_work_secc .recent_work_box .recent_div>ul>li>span {
    font-size: 12px;
    color: #fff;
}

.recent_work_secc .recent_work_box .recent_div>ul>li>h4 {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    margin-top: 10px;
}

.recent_work_secc .recent_work_box .recent_div>ul>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #fff;
    flex-direction: row-reverse;
}

.recent_work_secc .recent_work_box .recent_div>ul>li>a>i {
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 600;
    transform: rotate(35deg);
    transition: 0.3s ease-in-out;
}

.recent_work_secc .recent_work_box .recent_div:hover>ul>li>a>i {
    background-color: var(--theme);
    border-color: #fff;
    transform: rotate(410deg);
}

.recent_work_secc>.container-fluid {
    padding-right: 0;
}

.recent_work_secc .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.recent_work_secc .recent_work_box .recent_div>span {
    position: relative;
    display: block;
}

.recent_work_secc .recent_work_box .recent_div>span:after {
    position: absolute;
    content: "";
    background: #fd7e4f30;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: 0s ease-in-out;
    transform: scale(0);
    opacity: 10;
}

.recent_work_secc .recent_work_box .recent_div:hover>span:after {
    opacity: 0;
    transition: 0.3s ease-in-out;
    transform: scale(1);
}

.recent_work_secc .recent_work_box .recent_div>ul>li {
    text-align: left;
}

.fold_four.spages_sec>.container-fluid {
    padding-right: 0;
}

.fold_four.spages_sec .packages_slider {
    padding-left: 7%;
}

.fold_four.spages_sec .packages_slider .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.packages_slider .slick-list {
    padding-right: 200px !IMPORTANT;
}

.fold_four.spages_sec .theme_heading>.disc_box {
    right: 24%;
}

.testi_box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi_box>span {
    font-size: 16.83px;
    color: #7f7f7f;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.testi_box>ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.testi_box>ul>li>i {
    font-size: 20px;
    color: #ffd200;
}

.testi_box>ul>li:nth-child(4)>i {
    color: #ffd200;
}

.testi_box>ul>li:nth-child(5)>i {
    color: #ffd200;
}

.testi_box>p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 20px;
}

.testi_box>ul:last-child {
    margin: 0;
    justify-content: space-between;
}

.testi_box>ul:last-child>li>h4 {
    font-size: 24.14px;
    color: #000;
    line-height: 1.1;
    margin-bottom: 5px;
    font-weight: 700;
}

.testi_box>ul:last-child>li>span {
    color: #7f7f7f;
    font-size: 16.83px;
    font-weight: 500;
}

.testi_box>ul:last-child>li>i {
    color: #000000;
    font-size: 60px;
}

.testi_secc .theme_heading>h2 {
    margin-bottom: 0;
}

.testi_secc .theme_heading {
    margin-bottom: 60px;
}

.testi_box.rating_pro>ul>li:nth-child(4)>i {
    color: #ffd200;
}

.testi_box.rating_proro>ul>li:nth-child(4)>i {
    color: #ffd200;
}

.testi_box.rating_proro>ul>li:nth-child(5)>i {
    color: #ffd200;
}

.testi_secc .slick-slide {
    opacity: 1;
    margin: 0 10px;
}

.our_custom_secc .theme_heading>h2 {
    margin-bottom: 0;
}

.our_custom_secc .theme_heading {
    margin-bottom: 30px;
}

.our_custom_secc .custom_box_wrp {
    background-color: #302f2e;
    padding: 30px;
    border-radius: 30px;
    margin-bottom: 20px;
    height: 100%;
    max-height: -webkit-fill-available;
    transition: 0.3s ease-in-out;
    cursor: grab;
}

.our_custom_secc .custom_box_wrp>h3 {
    color: #fff;
    font-size: 25px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.our_custom_secc .custom_box_wrp>p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.our_custom_secc .custom_box_wrp.box_three {
    position: relative;
    z-index: 1;
    height: 200px;
    overflow: hidden;
}

.our_custom_secc .custom_box_wrp.box_three>img {
    position: absolute;
    z-index: -1;
    left: 0;
    transition: 0.2s ease-in-out;
}

.our_custom_secc .custom_box_wrp.box_four {
    position: relative;
    z-index: 1;
    height: 200px;
}

.our_custom_secc .custom_box_wrp.box_four>img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 50%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.5);
}

.our_custom_secc .custom_box_wrp:hover {
    background-color: var(--theme);
}

.our_custom_secc .custom_box_wrp.box_three:hover>img {
    /* opacity: 0; */
    transition: 0.2s ease-in-out;
}

.cta_two_secc .ctatwo_wrpr .theme_btn:after {
    background: #fff;
}

.cta_two_secc .ctatwo_wrpr .theme_btn {
    color: #000;
}

.about_pagee .banner .banner_text>h1>span {
    display: block;
    font-size: 52px;
}

.about_pagee .banner .banner_text>h1 {
    font-size: 72px;
    line-height: 1.2;
}

.about_pagee .banner .banner_text>p {
    width: 80%;
}

.about_pagee .banner .banner_form {
    width: 80%;
}

.aboutbanner_img_wrpr {
    position: relative;
}

.aboutbanner_img_wrpr>img {
    width: 95%;
    height: 100%;
    object-fit: cover;
    margin-left: auto;
    display: block;
}

.aboutbanner_img_wrpr>.explore_img_textt {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 0;
    width: 58%;
}

.aboutbanner_img_wrpr>.explore_img_textt>span {
    color: #fff;
    font-size: 29.47px;
    line-height: 1;
    font-weight: 500;
    width: 60%;
}

.aboutbanner_img_wrpr>.explore_img_textt>a>i {
    font-size: 40px;
    border: 1px solid var(--theme);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 300;
    transform: rotate(-35deg);
    transition: 0.3s ease-in-out;
}

.aboutbanner_img_wrpr>.explore_img_textt:hover>a>i {
    background-color: var(--theme);
    transform: rotate(330deg);
}

.great_team_secc .theme_heading>.theme_btn {
    margin: 0 auto;
}

.great_team_secc .theme_heading>p {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 1.7;
}

.great_team_secc .great_team_wrp {
    display: flex;
    align-items: end;
    gap: 10px;
}

.great_team_secc .great_team_wrp>.great_team_box {
    padding: 20px;
    background-color: var(--theme);
    border-radius: 30px;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxone>img {
    width: 70%;
    margin-left: auto;
    display: block;
}

.great_team_secc .great_team_wrp>.great_team_box>h3 {
    color: #fff;
    font-size: 29.47px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.great_team_secc .great_team_wrp>.great_team_box>p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxtwo {
    text-align: center;
    padding-top: 90px;
    width: 60%;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxthree {
    background-color: transparent;
    padding: 0;
    width: 80%;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxthree>img {
    width: 100%;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxfour {
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxfour>img.vec8 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    bottom: 0;
    right: 0;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxfive {
    padding: 0;
    background-color: transparent;
    width: 54%;
}

.great_team_secc .great_team_wrp>.great_team_box.great_boxfive>img {
    width: 100%;
    height: 450px;
    object-fit: contain;
}

.about_cta .about_cta_wrp {
    position: relative;
    height: 355px;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 50px;
}

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

.about_cta .about_cta_wrp>.about_cta_textt>h2 {
    color: #fff;
    width: 80%;
    font-size: 50px;
}

.about_cta .about_cta_wrp>a {
    position: absolute;
    top: -10%;
    right: 9%;
}

.about_cta .about_cta_wrp>a>i {
    border: 1px solid var(--theme);
    color: #fff;
    font-size: 40px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 200;
    transform: rotate(35deg);
    transition: 0.3s ease-in-out;
}

.about_cta .about_cta_wrp:hover>a>i {
    background-color: var(--theme);
    transform: rotate(400deg);
}

.fold_one .counter_wrpr {
    margin-top: 60px;
}

.fold_one .counter_wrpr .counter_box {
    text-align: center;
}

.fold_one .counter_wrpr .counter_box>h2 {
    font-size: 85.75px;
    color: var(--theme);
    font-family: 'Plus Jakarta Sans';
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}

.fold_one .counter_wrpr .counter_box>p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

header ul#menu>li {
    position: relative;
}

header ul#menu>li>ul {
    position: absolute;
    width: 300px;
    background-color: #fff;
    top: 34px;
    z-index: 9999;
    transition: 0.3s ease-in-out;
    max-height: 0;
    height: 0;
    overflow: hidden;
}

header ul#menu>li>ul>li>a {
    display: flex;
    padding: 10px 20px;
    position: relative;
    color: #000;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    transition: 0.3s ease-in-out;
}

header ul#menu>li>ul>li>a:hover {
    background-color: var(--theme);
}

header ul#menu>li:hover>ul {
    height: 450px;
    max-height: fit-content;
    transition: 0.3s ease-in-out;
}

header ul#menu>li>a>i {
    font-size: 14px;
    margin-left: 5px;
    transition: 0.3s ease-in-out;
}

header ul#menu>li:hover>a>i {
    transform: rotate(180deg);
}

header ul#menu>li:hover>a:after {
    width: 100%;
}

.innerr_pages.short_banner_page .services_banner {
    height: 650px;
}

header ul#menu>li:nth-child(4):hover>ul {
    height: 90px;
}

.custom_box_wrp.box_one > img {
    position: absolute;
    width: 200px;
    opacity: .4;
    right: 0;
    bottom: -70px;
}

.custom_box_wrp.box_one {
    position: relative;
    overflow: hidden;
}

.custom_box_wrp.box_five {
    overflow: hidden;
    position: relative;
}

.custom_box_wrp.box_five > img {
    position: absolute;
    width: 200px;
    right: -40px;
    top: -40px;
    opacity: .3;
}

.motion_graphic_wrpr {
    margin-top: 50px;
}

.motion_graphic_wrpr .motion_graphic_box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.motion_graphic_wrpr .motion_graphic_box > video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--theme);
    border-radius: 5px;
}

.motion_graphic_wrpr .motion_graphic_box > a {
    position: absolute;
}

.motion_graphic_wrpr .motion_graphic_box > a > i {
    color: #fff;
    font-size: 24px;
    background-color: var(--theme);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: shadow-pulse 1.5s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px #ff7f5070;
    }

    100% {
        box-shadow: 0 0 7px 25px #ff7f5000;
    }
}

.contact_inner_sec {
    padding: 100px 0px;
}

.contact_inner_sec .contact_box {
    position: relative;
    background-color: #302f2e;
    padding: 50px 40px;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}

.contact_inner_sec .contact_box > img {
    position: absolute;
    z-index: -1;
    width: 400px;
    bottom: -120px;
    left: -50px;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.contact_inner_sec .contact_box > h3 {
    color: #fff;
    font-size: 40px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact_inner_sec .contact_box > p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 30px;
}

.contact_inner_sec .contact_box:hover {
    background-color: #ff7f50;
}

.contact_inner_sec .contact_box:hover > img {
    opacity: .4;
}

.contact_inner_sec .contact_box:hover > a.theme_btn {
    color: #000;
    border-color: #000;
}

.contact_inner_sec .contact_box > .theme_btn {
    border: 1px solid transparent;
}

.contact_inner_sec .contact_box:hover > .theme_btn:after {
    background: #fff;
}

.contact_inner_sec .row>.col-lg-6:nth-child(2) .contact_box > img {
    left: unset;
    right: -50px;
}

.contact_page .cta_two_secc .ctatwo_wrpr>h3 {
    width: 80%;
}

/* popup */
.popup_form {
    position: fixed;
    top: 50%;
    width: 60%;
    margin: 0 auto;
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 12;
}

.popup_form > .popup_form_inner {
    position: relative;
    background-color: #fb7a4b;
    height: 550px;
    border-radius: 10px;
}

.popup_form > .popup_form_inner>span.close_popup {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    background: #1b1917;
    color: #fff;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: 'FontAwesome';
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.popup_form > .popup_form_inner .popup_img_wrp > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.popup_form > .popup_form_inner .popup_img_wrp {
    height: 550px;
}

.popup_form > .popup_form_inner > .row {
    align-items: center;
}

.popup_form > .popup_form_inner .popup_form_wrpp {
    padding-right: 40px;
    padding-left: 20px;
}

.popup_form > .popup_form_inner .popup_form_wrpp > h3 {
    font-size: 40px;
    color: #fff;
    font-family: 'Plus Jakarta Sans';
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.popup_form > .popup_form_inner .popup_form_wrpp > p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}


.popup_form > .popup_form_inner .popup_form_wrpp   > form input {
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #fff;
    background: transparent;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form input::placeholder {
    color: #fff;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #ffff;
    color: #fff;
    font-size: 16px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-image: url(../images/arrow-select.png);
    background-size: auto;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form select option {
    background: #fb7a4b;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form select:focus {
    box-shadow: none;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form textarea {
    width: 100%;
    height: 120px;
    margin-bottom: 5px;
    resize: none;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form textarea::placeholder {
    color: #fff;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form button {
    width: 100%;
    height: 50px;
    background: #ffffff;
    border: 0;
    border-radius: 5px;
    color: #000;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.popup_form > .popup_form_inner .popup_form_wrpp > form button:hover {
    box-shadow: inset 0 0 20px 4px #fb7a4b;
}


.overlay {
    background-color: rgb(235 235 235 / 55%);
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    position: fixed;
    left: 0;
}

/* popup */
.pricing_box>h4>span.prc {
    text-align: center;
    font-size: 60px;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: end;
    line-height: 1;
    margin-bottom: 0;
    justify-content: center;
    bottom: 0;
    text-decoration: none;
}

.testi_slider .slick-track {
    display: flex;
    align-items: stretch;
}

.testi_slider .slick-track .slick-slide {
    height: auto;
}

.testi_slider .testi_box {
    height: 100%;
}

.about_cta .about_cta_wrp>.about_cta_textt>p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    width: 60%;
}

.about_cta .about_cta_wrp>.about_cta_textt>h2 {
    margin-bottom: 10px;
}

/* project css end */
.website-development_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 50px;
}

.website-development_pagee .services_banner .serv_banner_textt>h4 {
    color: #ff7f50;
}
.services_banner {
    height: 650px;
}

.website-development_pagee .fold_four .theme_heading>.disc_box {
    right: -60px;
}

.e-commerce_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 60px;
}

.e-commerce_pagee .fold_four.spages_sec .theme_heading>.disc_box {
    right: 170px;
}

.shopifydev_pagee .fold_four.spages_sec .theme_heading>.disc_box {
    right: 160px;
}

.logo_design_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 60px;
}

.websapp_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 60px;
}

.websapp_pagee .fold_four .theme_heading>.disc_box {
    right: 150px;
}

.cust_faqs .accordion-body>ul {
    padding-left: 55px;
    padding-right: 20px;
}

.cust_faqs .accordion-body>ul > li {
    color: #000;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cust_faqs .accordion-body>ul > li > span {
    margin-right: 10px;
    color: var(--theme);
    font-weight: bold;
}

.motionsgraphic_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 60px;
}

.motionsgraphic_pagee .fold_four.spages_sec .theme_heading>.disc_box {
    right: 300px;
}

.combo_pagee .services_banner .serv_banner_textt>h1 {
    font-size: 60px;
}

/* detail page */
.packages_detail_secc {
    padding: 80px 0px;
}

.packages_detail_secc .packages_detail_left > h2 {
    color: #fff;
    font-size: 50px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    margin-bottom: 40px;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner {
    background: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    height: 415px;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > h3 {
    color: #000;
    font-size: 30px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
    margin-bottom: 20px;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > h4 {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    font-family: 'Plus Jakarta Sans';
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > p {
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > .theme_btn {
    border: 1px solid #000;
    width: 100%;
    margin-bottom: 20px;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > ul {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.packages_detail_secc .packages_detail_left > .packages_detail_left_inner > ul > li >a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 17px;
    font-family: 'Plus Jakarta Sans';
    font-weight: bold;
}

.packages_detail_secc .packages_detail_right > h2 {
    color: #fff;
    font-size: 31px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 700;
}

.packages_detail_secc .packages_detail_right > ul {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 0;
    height: 350px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.packages_detail_secc .packages_detail_right > ul > li {
    font-size: 17px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 500;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #efefef;
    position: relative;
}

.packages_detail_secc .packages_detail_right > ul > li:after {
    position: absolute;
    content: "\f336";
    =: #000; font-family: 'Font Awesome 6 Pro';
    color: var(--theme);
    font-weight: bold;
    right: 0;
    top: 0;
}

.packages_detail_secc .packages_detail_right > ul > li:last-child {
    margin: 0;
    display: none;
}

/* detail page */
.combo_pagee .contact_form_secc .contact_img>img {
    height: 860px;
    object-fit: cover;
}

.thankyou_secc {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 0px;
}

.thankyou_secc p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px !important;
    font-weight: 300;
    width: 80%;
    margin: 0 auto;
}

.thankyou_secc .theme_btn {
    margin: 0 auto;
}

.services_banner .serv_banner_textt>.logo_sliderecom img {
    filter: grayscale(1);
    width: 200px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: 0.3s ease-in-out;
}

.services_banner .serv_banner_textt>.logo_sliderecom .slick-slide {
    opacity: 1;
}

.services_banner .serv_banner_textt>.logo_sliderecom img:hover {
    filter: none;
}

.packages_slider .pricing_box .price_btns>* {
    font-size: 13px;
}

.banlogoswrp {
    display: flex;
    align-items: end;
    gap: 15px;
    margin: 20px 0px;
}

.banlogoswrp>img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.innerr_pages .banlogoswrp {
    justify-content: center;
}

.pricing_box >.view_detail {
    margin: 0 auto;
    display: block;
    width: fit-content;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans';
    margin-top: 30px;
}

/* privacy & terms */
.terms_and_condition {
    padding: 100px 0px;
}

.terms_and_condition h2 {
    font-size: 45px;
    font-family: 'Plus Jakarta Sans';
    color: var(--theme);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    line-height: 1.1;
}

.terms_and_condition p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans';
}

.terms_and_condition span {
    color: #fff;
    font-size: 25px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.terms_and_condition ul {
    margin-bottom: 20px;
}

.terms_and_condition ul > li {
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding-left: 25px;
    font-family: 'Plus Jakarta Sans';
    font-weight: 300;
}

.terms_and_condition ul > li:after {
    position: absolute;
    content: "";
    background: var(--theme);
    width: 10px;
    height: 10px;
    left: 0;
    top: 7px;
    border-radius: 50%;
}

.terms_and_condition ul > li > ul {
    margin-bottom: 0;
    margin-top: 20px;
}

.terms_and_condition ul > li > ul > li >a {
    color: var(--theme);
    font-weight: 600;
}

.terms_and_condition ul > li >a {
    font-weight: 600;
    color: var(--theme);
}

.terms_and_condition ul > li > ul > li:after {
    background: transparent;
    border: 2px solid var(--theme);
}

.terms_and_condition p:last-child {
    margin: 0;
}

.terms_and_condition p>a {
    color: var(--theme);
    font-weight: 600;
}

.terms_and_condition p > strong {
    font-weight: 600;
}

.terms_and_condition p > strong > a {
    color: var(--theme);
}

.banlogoswrp {
    display: none;
}

header.sticky {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: all 0.6s ease-in-out 0s;
    top: 0px;
    background: #000000a8;
}

/* privacy & terms */

.fold_four .nav-pills {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fold_four .nav-pills .active {
    background-color: var(--theme);
}

.fold_four .nav-pills .nav-link {
    border-radius: 30px;
    padding: 12px 25px;
    color: #fff;
}

.fold_four .nav-pills .nav-link:hover {
    background-color: var(--theme);
}

.thankyou-section {
    padding-top: 10%;
    padding-bottom: 150px;
}

.thankyou-section p {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    font-size: 21px;
    line-height: 34px;
    color: #fff;
}

.thankyou-section h2 {
    font-size: 65px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.thankyou-section a.btn-home {
    background: #ff7f50;
    color: #fff;
    padding: 13px 40px;
    font-size: 17px;
    border-radius: 60px;
    margin: 40px auto;
    display: table;
}
.moble{
    display:none !important;
}