/* Base CSS */

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    font-weight: 700;
    color: #343434;
    font-family: 'Gotham';
}

body {
    color: #4A4A4A;
    font-weight: 400;
    font-family: 'Gotham';
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamMedium.woff2') format('woff2'),
        url('../fonts/GothamMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBlack.woff2') format('woff2'),
        url('../fonts/GothamBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBold.woff2') format('woff2'),
        url('../fonts/GothamBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamLight.woff2') format('woff2'),
        url('../fonts/GothamLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}



.selector-for-some-widget {
    box-sizing: content-box;
}

a:hover {
    text-decoration: none
}

/*---------------------- Header area start ----------------------*/

.menu-close {
    font-size: 22px;
    color: #3d424e;
    position: absolute;
    top: 12px;
    right: 11px;
    cursor: pointer;
    transition: .4s;
}

.menu-close:hover {
    color: #fff;
    background: #EC7122;
}

.offcanvas-area {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 280px;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    transition: .3s;
    background: #000;
    z-index: 11111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 24px;
    left: -100%;
}

.offcanvas-area.active {
    left: 0;
    visibility: visible;
}

.offcanvas-area .main-menu>ul>li>a {
    display: flex;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 16px;
    color: #fff;
    letter-spacing: 1.2px;
    text-align: start;
    border-top: 1px solid #e8e8e86b;
    transition: .3s;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-menu ul li:last-child>a {
    border-bottom: 1px solid #e8e8e86b;
}

.offcanvas-area .main-menu ul li a:hover, .offcanvas-area .main-menu ul li a[aria-expanded="true"] {
    color: #EC7122;
}

.menu-close {
    border: 1px solid #EC7122 !important;
    width: 28px;
    height: 28px;
    padding: 0 !important;
    color: #EC7122;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.offcanvas-menu .main-menu>ul {
    display: block;
    padding-top: 104px;
    padding-left: 0;
    margin-bottom: 15px;
}

.offcanvas-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 9;
}

.offcanvas-overlay.active {
    opacity: .4;
    visibility: visible;
}

.menu-open {
    font-size: 22px;
    color: #FFF;
    display: none;
    cursor: pointer;
    position: relative;
    top: 2px;
    margin-left: 20px;
    transition: .3s;
    margin-right: 96px;
}

.menu-open:hover {
    color: #EC7122 !important;;
}
.header.dark .menu-open {
	color: #343434;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 8;
    background: transparent;
    padding: 20px 0;
}

.nav-link {
    font-size: 20px;
    color: #fff;
    transition: .3s;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

.nav-link-item {
    padding: 19px 0px;
}

.nav-link:hover, .nav-link-item:hover>.nav-link {
    color: #ED7122;
}

.nav-link-icon {
    flex-shrink: 0;
    margin-left: 10px;
}

.header.dark .nav-link {
    color: #343434
}

.header-dropdown {
    position: absolute;
    top: 124%;
    left: 15px;
    width: calc(100% - 30px);
    z-index: 5;
    background: #fff;
    transition: .3s;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.138);
    opacity: 0;
    visibility: hidden
}

.nav-link-item:hover>.header-dropdown {
    opacity: 1;
    visibility: visible;
    top: 109%
}

.header-dropdown::after {
    clip-path: polygon(51% 7%, 0% 100%, 100% 100%);
    position: absolute;
    top: -22px;
    content: '';
    width: 27px;
    height: 22px;
    background: #fff;
    left: 44%;
}

.header-btn.active {
    z-index: -2;
}

.header-dropdown-item:hover {
    background: #000;
    color: #fff;
}

.header-dropdown-item:hover img {
    filter: invert(100%)
}

.header-dropdown-item * {
    transition: .23s;
}

.header-dropdown-item:hover * {
    color: #fff !important;
}

.header-dropdown-wrap {
    padding: 27px;
}

.header-dropdown-title h5 {
    font-size: 16px;
    color: #FE7200;
    font-weight: 500;
    margin-bottom: 14px;
}

.header-dropdown-title {
    padding-bottom: 4px;
    padding-left: 20px;
}

.header-dropdown-item {
    display: flex;
    padding: 12px 19px;
    transition: .23s;
    margin-bottom: 1px;
}

.header-dropdown-icon {
    flex: 0 0 auto;
    min-width: 33px;
    margin-right: 10px;
}

.header-link h5 {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 9px;
}

.header-link h5 a {
    display: block;
    text-decoration: none;
    color: #000;
    transition: .3s;
}

.header-dropdown-item:hover h5 a {
    color: #EC7122;
}

.header-link p {
    font-size: 13px;
    margin: 0;
    line-height: 1.35;
    margin-bottom: 3px;
}

.header-dropdown-footer {
    background: #F5F8FB;
    padding: 13px;
    padding-left: 30px;
}

.header-footer-content h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 5px;
}

.header-footer-content p {
    margin: 0;
    font-size: 14px;
}
/*
.nav-link-item>.nav-link::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #00000070;
    content: '';
    opacity: 0;
    visibility: hidden;
    transition: .1s;
}

.nav-link-item:hover>.nav-link::after {
    opacity: 1;
    visibility: visible
}
*/
.header-dropdown-card {
    background: url(../img/h-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 14px;
    min-height: 210px;
    position: relative;
    z-index: 1;
}

.header-dropdown-card::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background: #000;
    opacity: .7;
}

.nav-link-item.statup-link .header-dropdown::after {
    left: 56.8%;
}

.nav-link-item.resources-link .header-dropdown::after {
    left: 81.5%;
}

.nav-link-item.about-link .header-dropdown::after {
    right: 80px;
    left: auto;
}

.nav-link-item.outcome-link .header-dropdown::after {
    left: 69%;
}

.outcome-link .header-dropdown-wrap {
    min-height: 631px;
}

.dropdown-slider {
    background: #F3F7FB;
    border-radius: 12px;
    padding: 34px;
}

.q-2 {
    max-width: 80px;
    margin-bottom: 25px;
}

.dropdown-profile-thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    margin-right: 12px;
}

.dropdown-profile-content h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.dropdown-profile-content p {
    margin: 0;
    font-size: 14px;
}

.dropdown-content {
    font-size: 19px;
    line-height: 1.45;
    margin-bottom: 25px;
    max-width: 642px;
}

.dropdown-slider .owl-nav {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    background: #F5F8FB;
    width: 120px;
    z-index: 1;
    padding: 10px;
    bottom: 38px;
}

.dropdown-slider .owl-nav button {
    margin-right: 10px;
}

.dropdown-slider .owl-dots {
    display: none;
}

.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: #00000091;
    overflow-y: auto;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    transform: scale(.9)
}

.contact-modal.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.contact-form-wrapper {
    background: #FE7200;
    max-width: 930px;
    margin-left: auto;
    padding: 35px 40px;
    flex-shrink: 0;
    position: relative;
}

.contact-form-title h3 {
    font-size: 39px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.contact-form-title p {
    color: #fff;
}

.contact-form-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}

.btn.btn-primary.btn-light {
    background: #fff;
    color: #FE7200;
}

.row.position-relative {
    z-index: 1;
}

.plane {
    z-index: -1;
}

.contact-close {
    font-size: 30px;
    color: #fff;
    transition: .3s;
    line-height: 1.3;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.contact-close:hover {
    opacity: .6;
}

.single-input label {
    display: block;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: -6px;
}

.single-input input, .single-input select {
    width: 100%;
    height: 54px;
    border: 0;
    outline: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    padding: 5px 0;
}

.input-icon {
    display: none;
}

.single-input {
    position: relative;
    margin-bottom: 20px;
}

input::-webkit-input-placeholder {
    opacity: 1;
}

input::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder {
    opacity: 1;
}

input::-ms-input-placeholder {
    opacity: 1;
}

input::placeholder {
    opacity: 1;
}

.labeled-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
    line-height: 1.2
}

.labeled-text span {
    margin-right: 10px;
    flex: 0 0 auto;
}

.contact-footer {
    padding-top: 32px;
    border-top: 1px solid #fff;
    margin-top: 40px;
}

.contact-footer {
    padding-top: 32px;
    border-top: 1px solid #fff;
    margin-top: 40px;
}

.contact-footer h5 {
    font-size: 20px;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.contact-footer>div>div {
    font-size: 16px;
    color: #fff;
    line-height: 1.34;
}

.check-icon {
    flex: 0 0 auto;
    margin-right: 20px;
}

.plane.position-absolute {
    width: auto;
    max-width: 300px;
    margin-right: 50px;
    margin-bottom: -95px;
}

.cs-1 {
    left: -180px;
    top: 0;
    z-index: -1;
    max-width: 250px;
}

.cs-2 {
    bottom: -140px;
    right: 0;
    z-index: -1;
    max-width: 250px;
}

.contact-thumb {
    width: 100%;
    text-align: center;
    padding: 40px;
    padding-top: 70px;
}

.contact-thumb img {
    max-width: 370px;
}

/*---------------------- Header area end ----------------------*/


/*---------------------- Hero area start ----------------------*/
.hero-area {
    /* min-height: 804px; */
    padding-top: 100px;
    padding-bottom: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;

}

.header-btn {
    position: fixed;
    right: 0;
    top: 0px;
    z-index: 3;
    max-width: 213px;
    overflow: hidden;
    cursor: pointer;
}

.header-btn img {
    right: -9px;
    position: relative;
    top: -12px;
}

.header-btn a {
    position: absolute;
    top: 36%;
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: .3s;
    transform: translateY(-50%);
    font-size: 18px;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-left: 42px;
}

.hero-area::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: #000;
    opacity: .6;
    z-index: -1;
}

.hero-content h3,
.hero-content h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 37px;
    color: #fff;
    max-width: 634px;
}

.hero-content p {
    font-size: 21px;
    line-height: 1.37;
    margin-bottom: 34px;
    color: #fff;
    max-width: 610px;
}

.hero-content-wrap {
    max-width: 480px;
    margin: 0 auto;
}

.hero-content-wrap h3 {
    font-size: 74px;
    line-height: 1.1;
    margin-bottom: 37px;
    max-width: 634px;
}

.has-bg {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.no-after::after {
    display: none;
}

.hero-thumb {
    padding: 60px 0;
}

.hero-links {
    padding-bottom: 28px;
}

.hero-links a {
    font-size: 17px;
    text-decoration: none;
    color: #fff;
    padding: 4px 18px;
    transition: .3s;
    border-left: 1px solid #ED7122;
    display: inline-block;
    line-height: 1.3;
    margin-bottom: 11px;
}

.hero-links a:hover {
    color: #ED7122
}

.hero-links a:first-child {
    padding-left: 0;
    border-left: 0
}

.btn.btn-primary {
    width: 250px;
    height: 70px;
    background: #FE7200;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    padding: 10px;
    padding-top: 11px;
}

.btn.btn-primary:hover {
    background: #4f4f4f;
}

/*---------------------- Hero area end ----------------------*/


/*---------------------- Roadmap area start ----------------------*/
.roadmap-thumb img {
    width: 100%;
}

.roadmap-thumb {
    margin-bottom: -100px;
}

.roadmap-area {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.roadmap-card {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 3px 25px rgba(221, 221, 221, 0.51);
    margin-bottom: 20px;
    min-height: 581px;
    padding-bottom: 40px;
    transition: .3s;
    padding-top: 10px;
}

.roadmap-card h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
}

.roadmap-card p {
    margin-bottom: 0;
    font-size: 24px;
}

.roadmap-card-icon {
    max-width: 263px;
    overflow: hidden;
    margin-bottom: 10px;
}

.roadmap-card-icon img {
    margin-left: -33px;
}

.roadmap-slider.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: visible;
    -webkit-transform: translate3d(0, 0, 0);
}

.roadmap-area .owl-stage {
    padding-left: 0 !important;
}

.roadmap-area .owl-dots {
    display: none;
    align-items: center;
}

.roadmap-area .owl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 32px;
}

.roadmap-area .owl-nav button {
    margin-left: 40px;
    max-width: 28px;
}

/*---------------------- Roadmap area end ----------------------*/


/*---------------------- Content area start ----------------------*/

.content-item {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.content-item-thumb {
    flex: 0 0 auto;
    width: 60%;
    height: 304px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.content-item-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.content-item-body {
    width: 40%;
    padding: 10px 55px;
}

.content-item-text {
    max-width: 500px;
    margin-left: auto;
}

.content-item-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.content-item-text h4 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}

.content-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.content-item:nth-child(2n) .content-item-text {
    margin-right: auto;
    margin-left: 0;
}

.content-item:nth-child(2n) .content-item-thumb {
    border-radius: 0 20px 20px 0;
}

/*---------------------- Content area end ----------------------*/


/*---------------------- Trusted area start ----------------------*/
.trusted-logos>* {
    margin-bottom: 20px;
    padding: 0 10px;
}

.trusted-area {
    padding-top: 60px;
    padding-bottom: 50px;
}

.text-theme {
    color: #ED7122 !important;
}

/*---------------------- Trusted area end ----------------------*/


/*---------------------- Card area start ----------------------*/
.card-area {
    padding: 110px 0;
}

.card-item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 30px 38px;
    min-height: 385px;
    border-radius: 20px;
    box-shadow: 0 2px 19px rgba(0, 0, 0, 0.102);
    margin-bottom: 24px;
    transition: .3s;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.card-item .stretched-link {
    color: #fff;
    text-decoration: none;
    display: block;
    line-height: 1.1;
    font-size: 38px;
}

.card-item:hover .card-content {
    opacity: 1;
    visibility: visible;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 2;
    transition: .3s;
    width: 100%;
    height: 100%;
    border-radius: 19px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.card-content>* {
    max-width: 360px;
    margin: 0 auto;
}

.card-content h3 {
    margin-bottom: 20px;
    font-size: 39px;
    line-height: 1.1;
}

.cta-card {
    border: 1px solid rgba(255, 255, 255, 0.326);
    border-radius: 17px;
    padding: 23px;
    display: flex;
    align-items: center;
    min-height: 165px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+25,ffffff+100&0.4+0,0.14+100 */
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66ffffff', endColorstr='#24ffffff', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 0 20px #00000085;
    transition: .3s;
}

.cta-card:hover {
    border-color: #fe7200;
}

/*---------------------- Card area end ----------------------*/


/*---------------------- About area start ----------------------*/
.common-content h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 24px;
}

.common-content p {
    font-size: 18px;
    max-width: 515px;
}

.about-card {
    display: flex;
    padding-top: 70px;
}

.about-card-count {
    font-size: 120px;
    line-height: .8;
    font-weight: 700;
    color: #FE7200;
    opacity: .13;
    flex: 0 0 auto;
    margin-right: 12px;
    text-align: center;
    min-width: 82px;
}

.about-card-content {
    max-width: 280px;
}

.about-card-content h5 {
    font-size: 23px;
    margin-bottom: 13px;
    font-weight: 700;
    line-height: 1.1;
}

.title-text {
    max-width: 1258px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 45px;
    font-weight: 700;
    color: #A8A8A8;
    line-height: 1.23;
    text-align: center;
}

.title-text span {
    color: #000;
}

.about-area {
    padding-bottom: 135px;
    padding-top: 75px;
}

/*---------------------- About area end ----------------------*/


/*---------------------- Contact Item area start ----------------------*/
.contact-items {
    padding-top: 100px;
    padding-bottom: 120px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.contact-item-thumb {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-item-content {
    width: 500px;
    flex: 0 0 auto;
}

.contact-item-content>* {
    max-width: 250px;
    margin: 0 auto;
}

.contact-item-content h4 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 16px;
}

.contact-item-content p {
    font-size: 16px;
    margin-bottom: 11px;
}

.contact-item-content h5 {
    font-size: 20px;
    text-decoration: none;
    color: #FE7200;
}

.contact-item-content h5 a {
    color: #FE7200;
    text-decoration: none;
    display: block;
}

/*---------------------- Contact Item area end ----------------------*/


/*---------------------- Team area start ----------------------*/
.team-member-card-thumb {
    height: 480px;
    width: 320px;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 auto;
}

.team-member-card-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}

.team-member-card {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.team-member-card:hover .team-member-card-thumb img {
    transform: scale(1.04);
}

.team-member-cards {
    max-width: 1120px;
    margin: 0 auto;
}

.team-member-card-content {
    width: 100%;
    border-top: 1px solid #fe7200;
    text-align: right;
    padding: 20px;
}

.team-area {
    padding-bottom: 140px;
    padding-top: 100px;
}

.team-member-card-content h4 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 13px;
}

.team-member-card-content p {
    margin-bottom: 10px;
}

.team-member-social-link a {
    color: #000;
    font-size: 21px;
    line-height: 1;
    transition: .3s;
}

.team-member-social-link a:hover {
    color: #EC7122;
}

.team-member-card.flex-row-reverse .team-member-card-content {
    text-align: left;
}

.zi-1 {
    z-index: 1 !important;
}

.wing-shape {
    position: absolute;
    left: 0;
    top: 165px;
    z-index: -1;
}

.wing-shape img {
    width: 100%;
}

.members-area {
    margin-top: 80px;
    padding-bottom: 100px;
}

.py-100 {
    padding: 100px 0;
}

.team-card {
    height: 100%;
}

.team-card-thumb {
    margin-bottom: 15px;
}

/*---------------------- Team area end ----------------------*/


/*---------------------- Offer area start ----------------------*/
.why-card-thumb {
    height: 290px;
    margin-bottom: 22px;
    border-radius: 24px;
    overflow: hidden;
}

.why-card {
    margin-bottom: 35px;
}

.why-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-content h3 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    padding-bottom: 8px;
}

.why-card-content p {
    line-height: 1.55;
    color: #fff;
    margin-bottom: 0;
}

/*---------------------- Offer area end ----------------------*/


/*---------------------- Create area start ----------------------*/
.create-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.logos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 120px;
}

.logos {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.logo-image {
    margin-bottom: 30px;
}

.logo-area .owl-stage {
    display: flex;
    align-items: center;
}

.logo-slide-image {
    min-width: 152px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.logo-slide-image img {
    width: auto !important;
    height: auto !important;
    filter: grayscale(100%);
}

.logo-slider {
    padding-bottom: 30px
}

.testimonial-area.bg-white::before {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
}

.testimonial-area.bg-white::after {
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
}

/*---------------------- Create area end ----------------------*/


/*---------------------- Job area start ----------------------*/
.job-wrapper .nav-tabs .nav-link {
    border: 1px solid #707070 !important;
    border-radius: 40px;
    padding: 12px 23px;
    min-width: 100px;
    text-align: center;
    font-size: 16px;
    line-height: 1.1;
    justify-content: center;
    color: #343434;
    margin-right: 10px;
    margin-bottom: 8px;
}

.job-wrapper .nav-tabs .nav-link:hover,
.job-wrapper .nav-tabs .nav-link.active {
    background: #343434;
    color: #fff;
    border-color: #343434 !important;
}

.bg-black {
    background: #000 !important;
}

.job-card {
    border: 1px solid #000;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: .3s;
}

.common-content h4 {
    font-size: 32px;
}

.image-item {
	text-align: end;
	margin-bottom: -265px;
	height: 574px;
	border-radius: 30px 0 0 30px;
	overflow: hidden;
	max-width: 70%;
	margin-left: auto;
}

.image-item img {
    height: 100%;
    object-fit: cover;
}
.job-card:hover {
    background: #000;
    color: #fff;
}
.job-card:hover a{
    color: #fff;
}
.job-card p {
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 7px;
}

.job-card a {
    font-size: 35px;
    text-decoration: none;
    color: #000;
    line-height: 1.1;
    display: block;
    transition: .3s;
}

/*---------------------- Job area end ----------------------*/


/*---------------------- Testimonial area start ----------------------*/
.testimonial-area {
    background: url(../img/slider-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100px;
    /* padding-bottom: 80px; */
    position: relative;
    z-index: 1;
}

.testimonial-item {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item-quote {
    max-width: 120px;
    margin: 0 auto;
    margin-bottom: -20px;
}

.testimonial-area::after {
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
    /* IE6-9 */

    height: 100%;
    width: 179px;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

.testimonial-area::before {
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
    /* IE6-9 */ 
    height: 100%;
    width: 179px;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
    transform: rotate(180deg);
}

.testimonial-slider {
    position: relative;
}

.testimonial-slider.owl-carousel {
    z-index: inherit;
}

.testimonial-slider .container {
    position: relative;
    max-width: 790px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    font-size: 32px;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 75px;
    position: relative;
    z-index: 11;
}

.testimonial-shape {
    position: absolute;
    bottom: -38px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 300px;
    z-index: -1;
}

.testimonial-profile {
    border: 1px solid rgba(255, 255, 255, 0.326);
    border-radius: 18px;
    padding: 21px;
    display: flex;
    align-items: center;
    min-height: 122px;
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66ffffff', endColorstr='#24ffffff', GradientType=1);
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 0 20px #00000085;
    max-width: 400px;
    margin: 0 auto;
}

.testimonial-profile-thumb {
    width: 75px;
    height: 75px;
    border-radius: 80px;
    flex: 0 0 auto;
    margin-right: 20px;
}

.testimonial-profile-content h5 {
    font-size: 25px;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.testimonial-profile-content div {
    opacity: .7;
}

.quote-icon {
    position: absolute;
    bottom: 0px;
    left: -120px;
    max-width: 120px;
    z-index: -1;
}

.testimonial-logo {
    margin: 0 30px;
    margin-bottom: 30px;
}

.testimonial-logos {
    padding-bottom: 10px;
}

.testimonial-logo-area {
    padding-top: 80px;
}

.testimonial-slider .owl-nav {
    position: absolute;
    top: 32%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonial-slider .owl-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
}


.testimonial-slider .owl-dots button {
    width: 12px;
    background: #EC7122 !important;
    height: 6px;
    border-radius: 10px;
    transition: .3s !important;
    margin: 0 3px;
    opacity: .7;
}

.testimonial-slider .owl-dots button.active {
    width: 24px;
    opacity: 1;
}

.how-card-thumb {
    text-align: center;
}


/*---------------------- Testimonial area end ----------------------*/


/*---------------------- We Do area start ----------------------*/
.research-links a {
    color: #343434;
    opacity: .7;
    text-decoration: none;
    font-size: 33px;
    display: block;
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 400;
}

.research-links a:hover {
    opacity: 1
}

.research-links h3 {
    margin-block: 12px
}

.poroducts-wrapper {
    background: #FFC444;
    padding: 33px;
    border-radius: 23px;
}

.product-card {
    background: #fff;
    border-radius: 25px;
    padding: 23px;
    margin-bottom: 6px;
    min-height: 180px;
    box-shadow: 0 0 20px #00000012;
    display: flex;
    flex-direction: column;
    justify-content: end;
}


.product-card-icon {
    min-height: 77px;
    margin-bottom: 10px;
}

.product-card p {
    max-width: 200px;
    margin: 0;
    line-height: 1.36;
}

.product-cards {
    padding: 0 10px;
}

.product-cards.ps-2 {
    max-width: 1130px;
    margin-left: auto;

}

.product-cards.pe-2 {
    max-width: 1130px;
}

.products-cards-wrap {
    margin-bottom: -100px;
}

.wedo-area {
    padding-bottom: 100px;
    padding-top: 111px;
}

/*---------------------- We Do area end ----------------------*/


/*---------------------- How area start ----------------------*/
.how-card {
    border-radius: 22px;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background: #F5BF4D;
    height: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.071);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.has-shadow::after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.9+0,0+100 */
    background: -moz-linear-gradient(-45deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6000000', endColorstr='#00000000', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
    z-index: -1;
}

.common-content h3 span {
    font-size: 30px;
}

.how-card-content {
    padding: 35px;
    padding-bottom: 0;
}

.min-h-500 {
    min-height: 500px;
}

.min-h-400 {
    min-height: 400px;
}

.how-card-thumb.top-2 {
    margin-top: -85px;
    position: relative;
    z-index: -1;
}

.research-content {
    max-width: 500px;
}

.how-area {
    position: relative;
    z-index: 1;
    padding-top: 95px;
}

.shape-2 {
    z-index: -1;
}

/*---------------------- How area end ----------------------*/


/*---------------------- Portfolio area start ----------------------*/
.portfolio-area {
    background: #242424;
    padding: 80px 0;
}

.portfolio-card {
    padding: 50px 35px;
    background: url(../img/bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding-bottom: 0;
    overflow: hidden;
}

.has-bg {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
}

.portfolio-card-content h3 {
    font-weight: 400;
}

.portfolio-card.sm {
    display: flex;
    margin-bottom: 25px;
}

.portfolio-card.sm .portfolio-thumb-sm {
    position: relative;
    margin-top: -14px;
    right: -10px;
}

.portfolio-sliders {
    margin-bottom: 12px;
}

.portfolio-sliders .owl-dots {
    display: none;
}

/*---------------------- Portfolio area end ----------------------*/


/*---------------------- Mobile area start ----------------------*/
.mobile-text h5 {
    font-size: 37px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}

.section-title h4 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-wrap {
    position: relative;
    margin-top: -621px;
}

.mobile-wrap img {
    z-index: -1;
    width: 100%;
}

.mobile-wrap .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    bottom: 270px;
}

.mobile-area {
    padding-top: 140px;
}

.l-shape-1 {
    max-width: 350px;
}

.service-app-content-card {
    margin-bottom: 50px;
}

.service-content-area {
    padding-top: 40px;
    padding-bottom: 95px;
}

.service-app-content-card h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

/*---------------------- Mobile area end ----------------------*/


/*---------------------- Project area start ----------------------*/
.project-cards {
    max-width: 1260px;
    margin: 0 auto;
}

.portfolio-project-card-thumb {
    margin-bottom: 32px;
}

.portfolio-project-card-body h5 {
    color: #FE7200;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 9px;
}

.portfolio-project-card-body h3 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 26px;
}

.portfolio-project-card-body p {
    color: #4A4A4A;
    margin-bottom: 8px;
}

.portfolio-project-card {
    margin-bottom: 60px;
}

.project-portfolio-card-link a {
    display: flex;
    text-decoration: none;
    align-content: center;
    font-size: 19px;
    color: #FE7200;
    font-weight: 700;
    transition: .3s;
}

.project-portfolio-card-link a:hover {
    opacity: .7;
}

.project-portfolio-card-link a span {
    margin-left: 10px;
}

.portfolio-project-card:hover .portfolio-project-card-thumb {
    transform: scale(1);
}

.portfolio-project-card:hover .portfolio-project-card-thumb img {
    transform: scale(1.08);
}

.portfolio-project-card-thumb img {
    transition: .3s;
    object-fit: cover;
}

.portfolio-project-card-thumb {
    transform: scale(1.025);
    transition: .3s;
    border-radius: 25px;
    overflow: hidden;
}

/* .portfolio-project-card.two {
    margin-top: 160px;  
} */

/*---------------------- Project area end ----------------------*/


/*---------------------- Features area start ----------------------*/
.features-area {
    padding-top: 104px;
    padding-bottom: 114px;
}

.feature-card {
    background-color: #ffffffe3;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 3px 25px rgba(221, 221, 221, 0.45);
    margin-bottom: 20px;
    min-height: 577px;
    padding-bottom: 30px;
    transition: .3s;
}

.feature-list-card {
    background: #F7F7F7;
    padding: 40px;
    list-style: none;
    border-radius: 30px;
    height: 100%;
}

.feature-list-card h3 {
    font-size: 42px;
    max-width: 300px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 26px;
}

.feature-list-card li {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.feature-list-card li span {
    flex: 0 0 auto;
    min-width: 29px;
    margin-right: 12px;
}

.feature-list-card li:last-child {
    margin: 0;
}

.feature-card:hover {
    box-shadow: 0 8px 28px #00000017;
}

.feature-card-icon {
    min-height: 205px;
    max-width: 204px;
    margin-bottom: 40px;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
}

/*---------------------- Features area end ----------------------*/


/*---------------------- FAQ area start ----------------------*/
.faq-area {
    padding: 100px 0;
}

.section-title h6 {
    font-size: 18px;
    color: #ED7122;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

.section-title p {
    font-size: 18px;
    max-width: 515px;
    margin: 0 auto;
}
.acd-button::after{
    opacity: 0 !important;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    margin-left: auto;
    content: "\f067";
    background-image: inherit;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: #000;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000c;
    border-radius: 40px;
    transition: .3s;
}

.accordion-button:not(.collapsed)::after {
    background-image: inherit;
    transform: none;
    content: "\f068";
}

.strategy-accordian {
    border-bottom: none !important;
}

.accordion-item {
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.accordion-button {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #fff;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 25px;
}

/*---------------------- FAQ area end ----------------------*/


/*---------------------- CTA area start ----------------------*/
.cta-area {
    background: #06101C;
    padding-top: 120px;
    padding-bottom: 100px;
    z-index: 1;
}

.cta-thumb {
    position: absolute;
    right: 0;
    top: -55px;
    max-width: 960px;
    z-index: -1;
}

.cta-card-content h5 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 500;
    color: #fff;
}

.cta-card-content p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.2;
}

.cta-card-icon {
    flex: 0 0 auto;
    max-width: 53px;
    margin-right: 23px;
}

.cta-content h3 {
    font-size: 37px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 34px;
}

.cta-content {
    max-width: 662px;
    padding-bottom: 28px;
    color: #fff;
}

.cta-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FE7200;
    margin-bottom: 28px;
}




.cta-social-icon>* {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    transition: .3s;
    opacity: .4;
}

.cta-social-icon>*:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    height: 60px;
    width: 60px;
    background-color: #FE7200;
    border-radius: 50px;
    transition: 0.5s;
}

/*---------------------- CTA area end ----------------------*/


/*---------------------- Blog area start ----------------------*/
.blog-area {
    padding-bottom: 100px;
}

.section-title h5 {
    color: #FE7200;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    padding-bottom: 11px;
}

.s-border {
    width: 370px;
    height: 2px;
    background: #FE7200;
    margin-left: 18px;
    position: relative;
    top: -2px;
}

.section-title {
    padding-bottom: 35px;
}

.blog-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 20px;
    border-bottom: 1px solid #DEDEDE;
    position: relative;
    z-index: 1;
}

.blog-list-item::after {
    position: absolute;
    left: 0;
    width: 20%;
    height: 100%;
    z-index: -1;
    content: '';
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+75,000000+97&1+0,1+67,0.35+96 */
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 67%, rgba(0, 0, 0, 0.82) 75%, rgba(0, 0, 0, 0.35) 96%, rgba(0, 0, 0, 0.35) 97%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 67%, rgba(0, 0, 0, 0.82) 75%, rgba(0, 0, 0, 0.35) 96%, rgba(0, 0, 0, 0.35) 97%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 67%, rgba(0, 0, 0, 0.82) 75%, rgba(0, 0, 0, 0.35) 96%, rgba(0, 0, 0, 0.35) 97%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#59000000', GradientType=1);
    /* IE6-9 */
    transition: .3s;
    opacity: 0;
}

.blog-list-item:hover  {
    color: #fff;
}

.blog-list-item:hover img {
    filter: invert(100%);
}

.blog-list-item::before {
    position: absolute;
    width: 100px;
    height: 100%;
    z-index: -1;
    content: '';
    transition: .3s;
    /* background: url(../img/blog-thumb.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    left: 0;
}

.blog-list-item:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

.blog-list-item:hover::before {
    opacity: 1;
    left: calc(100% - 400px);
    width: 400px;
}

.blog-list-item p {
    margin: 0;
    max-width: 900px;
}

.blog-list-item h4 {
    font-size: 26px;
    line-height: 1.1;
}

.blog-list-item h4 a {
    color: #343434;
    text-decoration: none;
    transition: .3s;
    line-height: 1.1;
}

.blog-list-item:last-child {
    border: 0;
}

.blog-list {
    max-width: 1294px;
    margin: 0 auto;
}

.blog-list-item {
    position: relative;
}

.blog-list-item * {
    transition: .3s
}

.blog-list-arrow {
    flex-shrink: 0;
    margin-left: 20px;

}

.card-link {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 130px;
    padding: 15px 58px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
    min-height: 140px;
    cursor: pointer;
    position: relative;
}

.card-link a {
    font-size: 35px;
    color: #fff;
    transition: .3s;
    text-decoration: none;
    text-align: left;
    position: absolute;
    left: 62px;
}

.card-link:hover a {
    left: 50%;
    transform: translateX(-50%);
}

.card-link a img {
    transition: .3s;
    display: inline-block;
    max-width: 26px;
    position: relative;
    left: -5px;
    opacity: 0
}

.card-link:hover img {
    left: 3px;
    opacity: 1
}

.card-link:hover a {
    text-align: center;
}

.card-links {
    padding-top: 120px;
    padding-bottom: 25px;
}

/*---------------------- Blog area end ----------------------*/


/*---------------------- Footer area start ----------------------*/
.footer {
    background: url(../img/footer-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.footer-bottom {
    padding: 40px 0;
}

.footer-bottom h3 {
    font-size: 46px;
    line-height: 1.05;
    margin-bottom: 0;
    color: #fff;
}

.copyright-wrapper {
    background-color: #ED7122;
    padding: 25px 0;
    color: #fff;
}

.copyright-wrapper p {
    margin-bottom: 0;
}

.copyright-wrapper a {
    font-size: 14px;
    margin-left: 25px;
    color: #fff;
    transition: .3s;
    text-decoration: none;
}

.copyright-wrapper a:hover {
    opacity: .8;
}

.footer-item h4 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.footer-item ul li a {
    font-size: 16px;
    text-decoration: none;
    line-height: 1.1;
    display: block;
    color: #fff;
    transition: .3s;
    margin-bottom: 14px;
}

.footer-item>ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;

}

.footer-item {
    margin-bottom: 45px;
}

.footer-item ul>li>ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    padding-left: 15px;
    list-style: none;
}


.footer-item ul li a:hover {
    color: #ED7122;
}

.footer-main .col-lg-3 {
    width: 15%;
}

.footer-main .col-lg-4 {
    width: 23%;
}

.footer-main .col-lg-5 {
    width: 28%;
}
/*---------------------- Footer area end ----------------------*/


/*---------------------- Help area start ----------------------*/
.help-area {
    padding-top: 100px;
    position: relative;
    padding-bottom: 50px;
    background: #242424;
    z-index: 1;
}

.h-shape-bg {
    position: absolute;
    top: 100px;
    width: 100%;
    text-align: center;
    left: 0;
    z-index: -1;
}

.section-title h2 {
    font-size: 70px;
}

.help-form .single-input input, .help-form .single-input select {
    border-bottom: 1px solid #D1D1D1;
}

.help-form .single-input {
    margin-bottom: 25px;
}

.single-input textarea {
    width: 100%;
    height: 150px;
    border: 0;
    outline: none;
    border-bottom: 1px solid #D1D1D1;
    background: transparent;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    padding: 5px 0;
    resize: none;
}

.select-item label {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D6D6D6;
    font-weight: 700;
    border-color: #343434;
    color: #343434;
}

.select-item {
    margin-right: 19px;
}

.btn-check:active+.btn-outline-success, .btn-check:checked+.btn-outline-success, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show, .btn-outline-success:active {
    color: #fff;
    background-color: #FE7200;
    border-color: #FE7200;
}

.form-content p {
    font-size: 15px;
    color: #fff;
}

.bg-gray {
    background-color: #242424 !important;
}

.bg-gray .content-item-text>* {
    color: #fff;
}

/*---------------------- Help area end ----------------------*/


/*---------------------- Scale area start ----------------------*/
.scale-area {
    padding-bottom: 100px;
}

.help-content.common-content {
    /* max-width: 556px; */
    margin: 0 auto;
    padding: 20px;
    margin-left: 300px;
}

.common-content h2 {
    font-size: 65px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.help-content-item {
    padding-top: 40px;
}

.help-item {
    text-align: center;
    margin-bottom: 40px;
}

.help-items {
    padding-top: 95px;
}

.help-item-icon {
    max-width: 180px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.help-item h5 {
    font-size: 28px;
    max-width: 311px;
    margin: 0 auto;
}

/*---------------------- Scale area end ----------------------*/


/*---------------------- MVP area start ----------------------*/
.mvp-area {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: url(../img/c-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 700px;
}

.has-overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background: #000;
    opacity: .6;

}

.mvp-content {
    max-width: 600px;
    margin-left: auto;
    text-align: left;
}

.mvp-content p {
    max-width: 100%;
}

.mvp-content>* {
    color: #fff;
}

.mvp-content h5 {
    font-size: 20px;
}

.font-regular {
    font-weight: 400 !important;
}

.min-h-600 {
    min-height: 600px;
}

.how-card.min-h-600 {
    background-size: contain !important;
    background-position: bottom right !important;
}

/*---------------------- MVP area end ----------------------*/


/*---------------------- Contact Box area start ----------------------*/

.contact-box-cards {
    padding-bottom: 100px;
    max-width: 1050px;
    margin: 0 auto;
}

.c-box {
    background: #F3F7F9;
    padding: 45px 20px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.c-box-icon {
    /* margin-bottom: 28px; */
    min-height: 78px;
}

.c-box-content h5 {
    font-size: 18px;
    color: #4A4A4A;
    line-height: 1.1;
    font-weight: 700;
    min-height: 52px;
    margin: 0;
}

.c-box-content h4 {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 1.1;
    padding-top: 5px;
}

.c-box-content .btn.btn-primary {
    height: 58px;
    font-size: 17px;
    padding: 10px;
    width: 73%;
    margin: 0rem 2rem 0rem 2rem;
}

.contact-form-wrap .single-input input, .contact-form-wrap .single-input select {
    border-bottom: 1px solid #D1D1D1;
    color: #343434;
}

/*---------------------- Contact Box area end ----------------------*/


/*---------------------- Work area start ----------------------*/
.work-area {
    background: #343434;
    padding: 100px 0;
}

.work-item .about-card-content {
    max-width: 365px;
}

.work-item .about-card-count span {
    color: #FE7200;
}

.work-item .about-card-count {
    color: #fff;
    opacity: .4;
    display: flex;
}

.common-content h5 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    padding-top: 9px;
}

.fund-area {
    padding-top: 100px;
    padding-bottom: 100px;
}

.fund-area .common-content h2 {
    font-size: 58px;
}

.work-area.image-pt {
    padding-top: 260px;
}

/*---------------------- Work area end ----------------------*/

/*---------------------- Work start 10 March - frontend developer ----------------------*/

/*---------------------- Blog area start ----------------------*/

.blog-tab-area .nav {
	display:block;
}

.blog-content-area .post-loop .portfolio-project-card-thumb a {
	display:block;
}

.blog-content-area .post-loop .portfolio-project-card-thumb img {
	width:100%;
	height:auto;
}

.blog-content-area .post-content {
	padding:0px 25px 25px 25px;
}
.blog-content-area .portfolio-project-card {
	margin-bottom:30px;
}
.blog-content-area .post-content h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
	color:#313131;
}
.blog-content-area .post-content h4 a {
	text-decoration:none;
	color:#313131;
}
.blog-content-area .post-content h4 a:hover {
	text-decoration:none;
	color:#000;
}

.blog-content-area .post-content .meta {
	margin-bottom:15px;
}

.blog-content-area .post-content .meta ul {
	margin:0;
	padding:0;
	list-style:none;
    margin-top: 5px;
}
.blog-content-area .post-content .meta ul li {
	margin:0 0 5px 0;
	padding:0;
	display:inline-block;
	list-style:none;
	font-size:14px;
}
.blog-content-area .post-content .meta ul li a {
	display:block;
	background:#313131;
	color:#FFFFFF;
	padding:10px 25px;
	border-radius:100px;
	text-decoration:none;
	border:solid 1px #313131;
}
.blog-content-area .post-content .meta ul li a:hover {
	background:#fff;
	color:#313131;
	border:solid 1px #313131;
	text-decoration:none;
}

.blog-content-area .post-content p {
	color: #323232;
	font-size:16px;
}

.blog-content-area .post-loop {
	border:solid 1px rgba(0,0,0,0);
	margin-bottom:35px;
}

.blog-content-area .post-loop:hover {
	background: transparent linear-gradient(140deg, #FFFFFFC9 0%, #FFFFFFB5 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 40px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


/*---------------------- Blog area end ----------------------*/


/*---------------------- Blog inner page area start ----------------------*/


.blog-post-hero {
	padding-top:200px;
}
.blog-post-hero h1 {
	text-align: left;
	font: normal normal bold 50px/54px Gotham;
	letter-spacing: 0px;
	color: #343434;
	opacity: 1;
}
.blog-post-hero .hero-wrapper {
	/* padding-left:180px; */
}
.blog-post-hero .post-img .post-thumb {
	position:relative;
	right: -200px;
}
.blog-post-hero .post-img .col-lg-12 {
	padding-left:0;
	padding-right:0;
}
.blog-post-hero .post-img .hero-wrapper {
	padding:0;
}
.blog-post-hero .post-img .row {
	display:block;
}
.blog-post-hero .post-img .col-lg-10 {
	float:right;
}
.blog-post-hero .post-img .row:after {
	display:block;
	clear:both;
	content:"";
}
.blog-post-hero .post-thumb img {
	max-width:100%;
	height:auto;
	width:100%;
	border-radius:20px;
}
.blog-post-hero .meta {
	margin-bottom:15px;
}
.blog-post-hero .meta ul {
	margin:0;
	padding:0;
	list-style:none;
}
.blog-post-hero .meta ul li {
	margin:0 0 5px 0;
	padding:0;
	display:inline-block;
	list-style:none;
	font-size:14px;
	font-weight:600;
}
.blog-post-hero .meta ul li a {
	display:block;
	color:#fe7301;
	padding:5px 0px;
	text-decoration:none;
}
.blog-post-hero .meta ul li a:hover {
	color:#313131;
	text-decoration:none;
}

.blog-content-single .content-pl {
	/* padding-left:200px; */
}

.blog-content-single .right-bar .widget-section {
	background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 99px #00000029;
	padding:30px;
	margin-bottom:35px;
}

.blog-content-single .widget-section h3.widget-title {
	text-transform:uppercase;
	font-weight:500;
	font-size:18px;
	line-height:26px;
	margin-bottom:15px;
	color:#fe7200;
}

.blog-content-single .widget-section ul.social-icons {
	margin:0 0 40px 0;
	padding:0;
	list-style:none;
}
.blog-content-single .widget-section ul.social-icons li {
	margin:0 10px 0 0;
	padding:0;
	list-style:none;
	display:inline-block;
}
.blog-content-single .widget-section ul.social-icons li a {
	display:block;
	background: #FE7200 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	padding:12px 15px;
}
.blog-content-single .widget-section ul.social-icons li svg {
	font-size:18px;
	height:1em;
	width:1em;
	fill:#fff;
}

.blog-content-single .widget-section p {
	font: normal normal normal 14px/21px Gotham;
	color: #676767;
}
.blog-content-single .widget-section form [type="email"] {
	width:100%;
	border:none;
	border-bottom:solid 1px #ededed;
	font-size:14px;
	outline:none;
	border-radius:0;
	padding:10px 0;
	margin-bottom:15px;
}

.blog-content-single .widget-section form [type="submit"] {
	background: #FE7200 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 6px #00000029;
	color:#FFFFFF;
	font-size:16px;
	padding:13px 45px;
	border:none;
	border-radius:0;
	outline:none;
}

.blog-content-single .widget-section .post-side .post-thumbnail {
	margin-bottom:15px;
}
.blog-content-single .widget-section .post-side .post-thumbnail img {
	width:100%;
	height:auto;
	border-radius:12px;
}

.blog-related-area {
	/* padding-left:200px; */
}

.blog-related-area .post-loop {
	margin-top:35px;
	margin-bottom:35px;
}
.blog-related-area .post-loop .post {
	border-bottom:solid 1px #e8e8e8;
	padding-bottom:30px;
	margin-bottom:30px;
	padding-right:100px;
	position:relative;
}
.blog-related-area .post-loop .post:last-child {
	border-bottom:none;
	padding-bottom:0;
	margin-bottom:0;
}
.blog-related-area .post-loop h4 {
	font-size:20px;
	line-height:30px;
	font-weight:500;
	padding:0;
	margin:0 0 15px 0;
}
.blog-related-area .post-loop h4 a {
	color:#353535;
	text-decoration:none;
}
.blog-related-area .post-loop p {
	text-align: left;
	font: normal normal normal 16px/21px Gotham;
	color: #4A4A4A;
	margin:0;
	max-width:100%;
}
.blog-related-area .post-loop .more {
	position:absolute;
	top:25px;
	right:0;
}
.blog-related-area .post-loop .more a {
	display:block;
}
.blog-related-area .post-loop .more svg {
	font-size:25px;
	height:1em;
	width:1em;
	fill:#343434;
}

/*---------------------- Blog inner page area end ----------------------*/

/*---------------------- Work start 11 March - frontend developer ----------------------*/

/*---------------------- Coming soon page area start ----------------------*/

.comingsoon-area {
	padding-bottom:80px;
}

.hero-area .bg-title {
	position:absolute;
	top:220px;
	z-index:-1;
	width:100%;
	text-align:center;
}
.hero-area .bg-title h3 {
	font-size:14em;
	-webkit-text-stroke: 2px #dddddd;
	color: rgba(0, 0, 0, 0);
	white-space: nowrap;
	letter-spacing:-1px;
}

/*---------------------- Coming soon page area end ----------------------*/


/*---------------------- Guides page area start ----------------------*/

.guides-content-area .post-loop .portfolio-project-card-thumb a {
	display:block;
}

.guides-content-area .post-loop .portfolio-project-card-thumb img {
	width:100%;
	height:auto;
}

.guides-content-area .post-content {
	padding:0px 25px 25px 25px;
}
.guides-content-area .portfolio-project-card {
	margin-bottom:30px;
}
.guides-content-area .post-content h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
	color:#313131;
}
.guides-content-area .post-content h4 a {
	text-decoration:none;
	color:#313131;
}
.guides-content-area .post-content h4 a:hover {
	text-decoration:none;
	color:#000;
}

.guides-content-area .post-content .meta ul li a:hover {
	background:#fff;
	color:#313131;
	border:solid 1px #313131;
	text-decoration:none;
}

.guides-content-area .post-content p {
	color: #323232;
	font-size:16px;
}

.guides-content-area .post-loop {
	border:solid 1px rgba(0,0,0,0);
	margin-bottom:35px;
}

.guides-content-area .post-loop:hover {
	background: transparent linear-gradient(140deg, #FFFFFFC9 0%, #FFFFFFB5 100%) 0% 0% no-repeat padding-box;
	box-shadow: 0px 40px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* .guides-popup-area {
    position: absolute;
    top: 30%;
    left: 15px;
    width: calc(100% - 30px);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
	z-index:999;
} */

.guides-popup-area {
    position: absolute;
    top: 130px;
    left: -385px;
    width: calc(100% - -729px);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.guides-popup-area.active {
    opacity: 1;
    visibility: visible;
}
.guides-popup-area .popup-section {
	background: #fff;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.138);
	margin:0 auto;
	max-width:1200px;
}
.guides-popup-area .content-box {padding:40px; position:relative;}
.guides-popup-area .content-box .row:first-child {
	margin-bottom:35px;
}
.guides-popup-area .content-box h3 {
	font-size:45px;
	line-height:52px;
	color: #343434;
	padding:0;
	margin:0 0 25px 0;
}
.guides-popup-area .content-box h4 {
	font-size:22px;
	line-height:28px;
	color: #343434;
	padding:0;
	margin:0 0 15px 0;
}
.guides-popup-area .content-box ul {
	margin:0;
	padding:0;
	list-style:none;
}	
.guides-popup-area .content-box ul li {
	margin:0 0 10px 0;
	padding:0 0 0 25px;
	list-style:none;
	font-size:15px;
	position:relative;
}	
.guides-popup-area .content-box ul li i {
	position:absolute;
	left:0;
	top:5px;
}
.guides-popup-area .popup-pic {	
	position: absolute;
    right: -60px;
    top: -150px;
    max-width: 490px;
}
.popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 9;
}

.popup-overlay.active {
    opacity: .5;
    visibility: visible;
}

/*---------------------- Guides page area end ----------------------*/


/*---------------------- Case Study page area start ----------------------*/

.app-development-area {
	background: transparent linear-gradient(180deg, #A93BFF 0%, #00E9FF 100%) 0% 0% no-repeat padding-box;
	padding-top:100px;
	padding-bottom:100px;
}
.app-development-area .section-top {
	border-bottom:solid 1px #FFFFFF;
	padding-bottom:45px;
	margin-bottom:45px;
}
.app-development-area .section-top h3 {
	color:#FFFFFF;
	font-size:30px;
	font-weight:500;
	line-height:38px;
	padding:0;
	margin:0;
}
.app-development-area .section-top h4 {
	color:#FFFFFF;
	text-align:right;
	font-size:20px;
	font-weight:400;
	line-height:40px;
	padding:0;
	margin:0;
}
.app-development-area .section-bottom p {
	color:#FFFFFF;
}
.app-development-area .section-bottom h2 {
	color:#FFFFFF;
	font-size:60px;
	font-weight:700;
	line-height:68px;
	padding:0;
	margin:0;
}

.overview-development {
	padding-bottom:100px;
	padding-top:100px;
}
.overview-development h4 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

.mobile-aplication-area {
	background: transparent linear-gradient(180deg, #A93BFF 0%, #00E9FF 100%) 0% 0% no-repeat padding-box;
	padding-bottom:100px;
	padding-top:150px;
	position:relative;
}

.mobile-aplication-area .mobile-image {
	position:absolute;
	top:-270px;
	right:0;
	width:130%;
}
.mobile-aplication-area h4 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 45px;
	color:#FFFFFF;
}
.mobile-aplication-area p {
	color:#FFFFFF;
}

.mobile-aplication-area .cta-card {
	background: transparent linear-gradient(110deg, #FFFFFF66 0%, #FFFFFF24 100%) 0% 0% no-repeat padding-box;
	box-shadow: 15px 15px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 18px;
	opacity: 1;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	padding:25px 30px;
	min-height:auto;
}
.mobile-aplication-area .store-btns a {
	display:block;
	text-decoration:none;
}
.mobile-aplication-area .store-btns svg {
	font-size:65px;
	height:1em;
	width:1em;
	fill:#fff;
}
.mobile-aplication-area .store-btns p {
	font-size:13px;
	margin-bottom:8px;
}

.chiry-dekstop-area {
	padding-top:160px;
	padding-bottom:150px;
}

.photo-dekstop-area {
	background: transparent linear-gradient(180deg, #A93BFF 0%, #00E9FF 100%) 0% 0% no-repeat padding-box;
	padding-top:270px;
	padding-bottom:180px;
	position:relative;
}
.photo-dekstop-area img {
	position:absolute;
	bottom:30px;
	right:30px;
	max-width:80%;
}

.p-nowidth p {max-width:100%;}

.apps-portfolio-area {
	background: transparent linear-gradient(180deg, #A93BFF 0%, #00E9FF 100%) 0% 0% no-repeat padding-box;
	padding-top:160px;
	padding-bottom:80px;
	padding-left:10px;
	padding-right:10px;
}
.apps-portfolio-area .box {
	display:inline-block;
	max-width:370px;
	cursor:pointer;
}
.apps-portfolio-area .left {
	text-align:left;
}
.apps-portfolio-area .center {
	text-align:center;
}
.apps-portfolio-area .right {
	text-align:right;
}

.apps-portfolio-area .portfolio-box .box {
	position:relative;
}
.apps-portfolio-area img.hoverpic {
	display:none;
	position:absolute;
	left:0;
	top:-65px;
	max-width:100%;
}
.apps-portfolio-area .box:hover img.hoverpic {
	display:block;
}
.apps-portfolio-area .active img.hoverpic {
	display:block;
}

.how-area.p-nowidth {
	padding-bottom:60px;
}

.apps-portfolio-area .button-area {
	text-align:center;
	margin-top:150px;
}
.apps-portfolio-area .button-area .btns {
	display:inline-block;
	margin:0 15px;
}
.apps-portfolio-area .button-area .btns-card {
    /* border: 1px solid rgba(255, 255, 255, 0.326); */
    border-radius: 17px;
    padding: 23px;
    display: flex;
    align-items: center;
    min-height: 135px;
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.34) 25%, rgba(255, 255, 255, 0.14) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66ffffff', endColorstr='#24ffffff', GradientType=1);
    color: #fff;
    margin-bottom: 25px;
    /* box-shadow: 0 0 20px #00000085; */
    transition: .3s;
}
.apps-portfolio-area .button-area .text {
	font: normal normal normal 21px/25px Gotham;
	letter-spacing: 0px;
	color: #FFFFFF;
	text-align:left;
}

.apps-portfolio-area .button-area .rgt {
	font-size:60px;
	line-height:60px;
	font-weight:700;
	letter-spacing: 0px;
	color: #FFFFFF;
	margin-left:15px;
}

.mobile-case-development {
	background: transparent linear-gradient(180deg, #A93BFF 0%, #00E9FF 100%) 0% 0% no-repeat padding-box;
	padding-bottom:0px;
}
.mobile-case-development .mobile-photo {
	text-align:center;
	position:relative;
	top:-80px;
}
.mobile-case-development .info-box {
	position:relative;
	top:-180px;
}
.mobile-case-development .info-box h3 {
	color:#FFFFFF;
	font-size:40px;
	line-height:45px;
}
.mobile-case-development .info-box p {
	color:#FFFFFF;
	font-size:30px;
	line-height:40px;
}

.apps-portfolio-area .row {
	margin:0 auto;
	max-width:1500px;
}

/*---------------------- Case Study page area end ----------------------*/

/*---------------------- Work & Portfolio page area start ----------------------*/

.portfolios-card {
    border-radius: 22px;
    background-position: left center !important;
    background-repeat: no-repeat !important;
	background-color:#2f1842;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 1;
	background-size:740px;
}
.portfolios-card .portfolio-card-content {
	padding:130px 65px 130px 45px;
}
.portfolios-card .portfolio-card-content p {
	float:right;
	max-width:470px;
}

/*---------------------- Work & Portfolio page area end ----------------------*/

/*---------------------- Case Studies Main page area start ----------------------*/

.case-studies-area {
	
}
.case-studies-area .case-project-card-thumbs {
	position:relative;
}
.case-studies-area .case-project-card-thumbs .pic-btns {
	position:absolute;
	bottom:50px;
	left:40px;
}
.case-studies-area .case-project-card-thumbs .pic-btns ul {
	margin:0;
	padding:0;
}
.case-studies-area .case-project-card-thumbs {
	margin-bottom:25px;
}
.case-studies-area .case-project-card-thumbs img {
	width:100%;
	height:auto;
	border-radius:20px;
}
.case-studies-area .case-project-card-thumbs .pic-btns li {
	display:inline-block;
	margin:0 10px 0 0;
	background: transparent linear-gradient(108deg, #FFFFFF66 0%, #FFFFFF24 100%) 0% 0% no-repeat padding-box;
	box-shadow: 15px 15px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 18px;
	opacity: 1;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	padding-right:35px;
}
.case-studies-area .case-project-card-thumbs .pic-btns li span {
	padding:25px;
	font-size:20px;
	line-height:28px;
	color:#FFFFFF;
	display:block;
	max-width:230px;
}

/*---------------------- Case Studies Main page area end ----------------------*/

/*---------------------- Website Development page area start ----------------------*/

.website-development-area .container .row {
	flex-direction: row-reverse;
}
.website-development-area .mobile-wrap .container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    bottom: 370px;
}

.website-services-area {
	padding-bottom:50px;
	padding-top:50px;
}
.website-services-area .ps-2 {
    max-width: 1020px;
    margin-left: auto;
}

.website-services-area .pe-2 {
    max-width: 1020px;
	margin-bottom:35px;
}
.website-services-area .roadmap-card {
    min-height: 500px;
	padding-top:30px;
}

.website-services-area .roadmap-card h3 {
    font-size: 35px;
	line-height:44px;
    margin-bottom: 30px;
}
.website-services-area .roadmap-card-icon img {
    margin-left: 0;
}

/*---------------------- Website Development page area end ----------------------*/

/*---------------------- Dedicated Team page area start ----------------------*/

.dedicated-text-area {
	padding-top:220px;
}
.dedicated-text-area .mobile-text h5 {
	color:#000000;
}
.dedicated-text-area .btns {
	margin-top:25px;
}
.dedicated-team-area {
	padding-bottom:80px;
	padding-top:100px;
	background:#000;
	background-position:center !important;
	background-repeat:no-repeat !important;
	background-size:cover !important;
}
.dedicated-team-area:before {
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,0.86);
	content:"";
}
.dedicated-member-card {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
	background: transparent linear-gradient(116deg, #FFFFFF66 0%, #FFFFFF24 100%) 0% 0% no-repeat padding-box;
	box-shadow: 15px 15px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 21px;
	opacity: 1;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	padding:15px;
}
.dedicated-member-card .member-card-thumb {
    height: 220px;
    width: 140px;
    border-radius: 20px;
    overflow: hidden;
    flex: 0 0 auto;
}
.dedicated-member-card .member-card-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .3s;
}
.dedicated-member-card:hover .member-card-thumb img {
    transform: scale(1.04);
}
.dedicated-member-card .member-card-text {
	padding-left:25px;
}
.dedicated-member-card .member-card-text ul.list {
	margin:0;
	padding:0 0 10px 0;
	list-style:none;
	border-bottom:solid 1px #FFFFFF;
}
.dedicated-member-card .member-card-text ul.list li {
	margin:0 5px 10px 0;
	padding:8px 13px;
	list-style:none;
	display:inline-block;
	background: transparent linear-gradient(109deg, #FFFFFF66 0%, #FFFFFF24 100%) 0% 0% no-repeat padding-box;
	box-shadow: 15px 15px 50px #00000029;
	border: 1px solid #FFFFFF40;
	border-radius: 21px;
	opacity: 1;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	color:#FFFFFF;
	font-size:14px;
}

.digital-content-area {
	padding-top:100px;
	padding-bottom:80px;
}
.digital-content-area .section-title {
	margin:0 auto;
	max-width:760px;
}
.digital-content-area .text-box {
	text-align:center;
	margin:0 auto;
	max-width:200px;
	margin-bottom:50px;
}
.digital-content-area .text-box h4 {
	margin-top:15px;
	font-size:20px;
	line-height:26px;
	font-weight:500;
}
/*---------------------- Dedicated Team page area end ----------------------*/

/*---------------------- Rapid Prototyping Page start  ----------------------*/

.rapidpro-text-area {
	padding-top:80px;
}

/*---------------------- Rapid Prototyping Page end  ----------------------*/

/*---------------------- Strategy and Analytics Page start  ----------------------*/

.strategy-text-area {
	padding-top:120px;
}

/*---------------------- Strategy and Analytics Page end  ----------------------*/

/*---------------------- Who we are Page start  ----------------------*/

.whe-we-area .about-card {
	padding-top:0;
	margin-bottom:25px;
	padding-left:35px;
}

.who-brands-area {
	padding-top:150px;
	padding-bottom:150px;
	background:#000000;background-position:center !important;
	background-repeat:no-repeat !important;
	background-size:cover !important;
	background-attachment: fixed !important;
	position:relative;
}
.who-brands-area:before {
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	background:rgba(0,0,0,0.86);
	content:"";
}
.who-brands-area .text {
	margin:0 auto;
	max-width:1000px;
	text-align:center;
	color:#FFFFFF;
	font-size:40px;
	font-weight:500;
	line-height:46px;
}

.who-strong-area {
	padding-top:100px;
	padding-bottom:100px;
}
.who-strong-area .left-text {
	text-align:left;
	color:#000;
	font-size:65px;
	line-height:70px;
}
.who-strong-area .middle-text {
	margin:40px 0;
}
.who-strong-area .bottom-text {
	text-align:left;
	padding:0;
}
.who-projects-area {
	padding-top:100px;
	padding-bottom:100px;
	background:#242424;
}
.who-projects-area .content-box span {
	font-size:18px;
	color:#e26804;
}
.who-projects-area .content-box h3 {
	font-size:200px;
	color:#fff;
	line-height:1.1;
	font-weight:500;
}
.who-vision-area {
	padding-top:100px;
}

.who-cta-area {
	text-align:center;
	padding-bottom:100px;
    padding-top:100px;
}
.who-cta-area .btns {
	margin-top:40px;
	text-align:center;
}
.who-cta-area .btns .btnbox {
	display:inline-block;
	margin:0 5px;
}	

a.btngray {
	background:#343434 !important;
}
a.btngray:hover {
	background:#fe7200 !important;
}


/*---------------------- Who we are Page end  ----------------------*/

/*---------------------- Oops Page start  ----------------------*/

.oops-page {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
    background: url(../img/oops-bg1.jpg);
	background-color:#d2e0e3;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 550px;
    position: relative;
    z-index: 1;
}

.oops-page .left h3 {
	font-size:95px;
	color:#fe7200;
	line-height:80px;
}
.oops-page .left h5 {
	font-size:50px;
	color:#fe7200;
	line-height:60px;
}
.oops-page .right .btn {
	float:right;
}

.oops-page-p2 {
    min-height: 804px;
    padding-top: 100px;
    padding-bottom: 80px;
    background: url(../img/oops-bg2.jpg);
	background-color:#eae0df;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 850px;
    position: relative;
    z-index: 1;
}
.oops-page-p2 .left {
	padding-left:120px;
}
.oops-page-p2 .left h3 {
	font-size:95px;
	color:#373737;
	line-height:80px;
}
.oops-page-p2 .left h5 {
	font-size:50px;
	color:#373737;
	line-height:60px;
	margin-bottom:25px;
}

/*---------------------- Oops Page start  ----------------------*/


/*============== 10 April 2023 start  ===============*/

/*---------------------- Work & Portfolio - Maybach page area start ----------------------*/

.app-development-gray {
	background: #262626;
	padding-top:100px;
	padding-bottom:100px;
}
.app-development-gray .section-top {
	border-bottom:solid 1px #FFFFFF;
	padding-bottom:45px;
	margin-bottom:45px;
}
.app-development-gray .section-top h3 {
	color:#FFFFFF;
	font-size:30px;
	font-weight:500;
	line-height:38px;
	padding:0;
	margin:0;
}
.app-development-gray .section-top h4 {
	color:#FFFFFF;
	text-align:right;
	font-size:20px;
	font-weight:400;
	line-height:40px;
	padding:0;
	margin:0;
}
.app-development-gray .section-bottom p {
	color:#FFFFFF;
}
.app-development-gray .section-bottom h2 {
	color:#FFFFFF;
	font-size:60px;
	font-weight:700;
	line-height:68px;
	padding:0;
	margin:0;
}

.maybach-middle-pic .monitor-photo {
	text-align:center;
}
.maybach-middle-pic .monitor-photo img {
	max-width:100%;
}

.maybach-features-area {
	background:#262626;
	padding-top:400px;
	padding-bottom:50px;
	margin-top:-350px;
	padding-bottom:0;
}
.maybach-features-area .title {
	font-size:60px;
	color:#ffffff;
	line-height:65px;
	margin-bottom:50px;
}
.maybach-features-area .title span {
	font-weight:700;
	color:#bba46e;
}
.maybach-features-area .left-pic {
	position:relative;
}
.maybach-features-area .left-pic:after {
	position:absolute;
	background:#fff;
	right:-200%;
	width:200%;
	content:"";
	height:25.3%;
	bottom:0;
}
.maybach-features-area .left-pic img {
	max-width:100%;
	width:100%;
}
.maybach-features-area .right-text {
	color:#FFFFFF;
	padding:40px 20% 0 30px;
}
.maybach-features-area .right-text p {
	font-size:17px;
	line-height:28px;
}
.maybach-features-area .right-text ul {
	margin:15px 0 0 15px;
	padding:0;
	list-style:disc;
}
.maybach-features-area .right-text ul li{
	font-size:19px;
	font-weight:300;
	margin-bottom:15px;
}
.maybach-features-area .bottom-area {
	position:relative;
	bottom:-187px;
}
.maybach-features-area .top-area {
	margin-bottom:-187px;
}

.maybach-crust-area {
	position:relative;
	z-index:9;
	margin-top:260px;
}
.maybach-crust-area .title {
	font-size:60px;
	color:#343434;
	line-height:65px;
	margin-bottom:50px;
}
.maybach-crust-area .title span {
	font-weight:700;
	color:#bba46e;
}

.maybach-client-photo {
	padding-top:60px;
	padding-bottom:270px;
	position:relative;
}
.maybach-client-photo img {
	position:absolute;
	bottom:30px;
	right:0;
	max-width:100%;
}

.maybach-client-area {
	padding-top:180px;
	position:relative;
}
.maybach-client-area .qoute strong {
	display:block;
	color:#343434;
	font-size:24px;
	margin-top:10px;
}
.maybach-client-area .qoute p {
	font-size:17px;
	line-height:24px;
	color:#4a4a4a;
	margin-top:15px;
}
.maybach-client-area .bgtext {
	position:absolute;
	left:-10%;
	top:45px;
	font-size:250px;
	line-height:1;
	color:#f6f3ec;
	z-index:-1;
	font-weight:700;
}
.work-graybg {
	background:#262626 !important;
	margin-top:100px;
}

.fortfolio-bottom-bar {
	background:#343434;
	padding-top:50px;
	padding-bottom:50px;
	position:relative;
}
.fortfolio-bottom-bar .all-work {
	float:right;
	font-size:32px;
	font-weight:700;
	line-height:40px;
	color:#FFFFFF;
}
.fortfolio-bottom-bar .all-work img {
	margin-left:25px;
}
.fortfolio-bottom-bar .all-work a {
	color:#FFFFFF;
	text-decoration:none;
}
.fortfolio-bottom-bar .clear:after {
	display:block;
	clear:both;
	content:"";
}
.fortfolio-bottom-bar .white-circle {
	position:absolute;
	top:50%;
	margin-top:-25px;
	width:50px;
	height:50px;
	right:390px;
}
.fortfolio-bottom-bar .white-circle:after {
	position:absolute;
	left:23px;
	width:4px;
	background:#FFFFFF;
	content:"";
	height:100%;
	bottom:-50px;
}
.fortfolio-bottom-bar .white-circle img {
	width:100%;
}

.fortfolio-bottom-bar .gray-circle {
	position:absolute;
	bottom:-473%;
	margin-top:-25px;
	width:50px;
	height:50px;
	right:390px;
}
.fortfolio-bottom-bar .gray-circle:after {
	position:absolute;
	left:23px;
	width:4px;
	background:#343434;
	content:"";
	height:91px;
	top:-90px;
}
.fortfolio-bottom-bar .gray-circle img {
	width:100%;
}

.fortfolio-bottom-bar .container {
	position:relative;
}

.fortfolio-bottom-bar .gray-circle .next {
	font-size:32px;
	font-weight:700;
	line-height:40px;
	color:#343434;
	position:absolute;
	left:150px;
	top:5px;
	width:150px;
}

.momentor-topbg {
	background: transparent linear-gradient(180deg, #31cbee 0%, #3358db 100%) 0% 0% no-repeat padding-box;
}

.momentor-features-bg {
	background: transparent linear-gradient(180deg, #31cbee 0%, #3358db 100%) 0% 0% no-repeat padding-box;
}
.momentor-features-bg .title span {
    color: #fff;
}
.momentor-features-bg .left-pic {
	text-align:center;
}
.momentor-features-bg .left-pic img {
    max-width: 100%;
    width: auto;
}
.momentor-features-bg .left-pic:after {
	display:none;
}



.momentor-crust-area {
	position:relative;
	z-index:9;
	margin-top:260px;
}
.momentor-crust-area .title {
	font-size:60px;
	color:#343434;
	line-height:65px;
	margin-bottom:50px;
}
.momentor-crust-area .title span {
	font-weight:700;
	color:#3379e0;
}


.momentor-client-area {
	padding-top:180px;
	position:relative;
}
.momentor-client-area .qoute strong {
	display:block;
	color:#343434;
	font-size:24px;
	margin-top:10px;
}
.momentor-client-area .qoute p {
	font-size:17px;
	line-height:24px;
	color:#4a4a4a;
	margin-top:15px;
}
.momentor-client-area .bgtext {
	position:absolute;
	left:-10%;
	top:45px;
	font-size:250px;
	line-height:1;
	color:#f1f6fd;
	z-index:-1;
	font-weight:700;
}


.tipperpro-topbg {
	background:#2c2446;
}
.tipperpro-topbg .left-pic {
    text-align: center;
}
.tipperpro-topbg .left-pic img {
    max-width: 100%;
    width: auto;
}
.tipperpro-topbg .left-pic:after {
	display:none;
}
.tipperpro-topbg .title span {
    color: #fff;
}

.tipperpro-crust-area {
	position:relative;
	z-index:9;
	margin-top:260px;
}
.tipperpro-crust-area .title {
	font-size:60px;
	color:#343434;
	line-height:65px;
	margin-bottom:50px;
}
.tipperpro-crust-area .title span {
	font-weight:700;
	color:#8abb2a;
}


.tipperpro-client-area {
	padding-top:180px;
	position:relative;
}
.tipperpro-client-area .qoute strong {
	display:block;
	color:#343434;
	font-size:24px;
	margin-top:10px;
}
.tipperpro-client-area .qoute p {
	font-size:17px;
	line-height:24px;
	color:#4a4a4a;
	margin-top:15px;
}
.tipperpro-client-area .bgtext {
	position:absolute;
	left:-10%;
	top:45px;
	font-size:250px;
	line-height:1;
	color:#eff6e3;
	z-index:-1;
	font-weight:700;
}


/*========== LP Style ============*/

.trusted-area-logo {padding-top:40px; padding-bottom:30px; background:#F3F3F3;}
.trusted-area-logo .left-texts {float:left; position:relative; font-size:18px; font-weight:700; text-transform:uppercase; color:#343434; padding:13px 0 0 73px;}
.trusted-area-logo .left-texts:after {position:absolute; left:0; height:2px; width:60px; background:#343434; content:""; top:26px;}
.trusted-area-logo .right-logo {float:right; width:calc(100% - 230px);}
.trusted-area-logo .mid-box:after {display:block; clear:both; content:"";}

.leading-mobile-area {padding-top:80px; padding-bottom:80px;}
.leading-mobile-area .box {margin:0 auto; max-width:1260px; text-align:center;}
.leading-mobile-area .box h3,
.leading-mobile-area .box h2 {font-size:52px; font-weight:700; color:#343434; line-height:58px; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top center no-repeat; padding-top:75px; margin-bottom:25px;}
.leading-mobile-area .box p {font-size:16px; line-height:24px; color:#343434;}

.lp-our-services-box {padding-top:70px; position:relative;}
.lp-our-services-box:after {background:url(../img/rectangle-orange-bg.jpg) top center no-repeat; background-size:cover; position:absolute; left:0; top:0; width:100%; height:calc(100% - 200px); content:"";}
.lp-our-services-box .box {margin:0 auto; max-width:1260px; text-align:center; margin-bottom:40px; position:relative; z-index:1;}
.lp-our-services-box .box h3 {font-size:52px; font-weight:700; color:#fff; line-height:58px; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-white-box.png) top center no-repeat; padding-top:75px; margin-bottom:25px;}
.lp-our-services-box .box p {font-size:16px; line-height:24px; color:#fff;}

.lp-our-services-box .service-box {background:#FFFFFF; padding:25px; border-radius:23px; min-height:330px; margin-bottom:30px; position:relative; z-index:1; box-shadow: 0px 0px 20px rgba(0,0,0,0.1);}
.lp-our-services-box .service-box .head {position:relative; padding-left:60px; margin-bottom:25px;}
.lp-our-services-box .service-box .head img {position:absolute; left:0; top:0; height:38px;}
.lp-our-services-box .service-box .head {position:relative; padding-left:65px;}
.lp-our-services-box .service-box .head h4 {font-size:23px; line-height:34px; font-weight:700; color:#343434; padding:3px 0 0 0; margin:0;}
.lp-our-services-box .service-box .text {font-size:16px; line-height:24px; color:#343434;}

.lp-where-ideas {padding-top:70px; padding-bottom:70px;}
.lp-where-ideas .right-text {padding-left:40px; max-width:890px; padding-right:50px;}
.lp-where-ideas .right-text h3 {font-size:49px; font-weight:700; color:#343434; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top left no-repeat; padding-top:75px; margin:0 0 25px 0;}
.lp-where-ideas .right-text h3 span {color:#FE7200;}

.lp-where-ideas .lists {position:relative; padding:0 0 0 65px; margin-top:30px;}
.lp-where-ideas .list-box span {background:#FE7200; border-radius:60px; width:50px; height:50px; text-align:center; line-height:50px; color:#FFFFFF; font-size:18px; font-weight:700; position:absolute; left:0; top:0;}
.lp-where-ideas .list-box h4 {font-size:29px; font-weight:700; color:#343434; padding:0; margin:0 0 10px 0;}
.lp-where-ideas .list-box p {font-size:16px; line-height:24px; color:#343434;}

.lp-where-ideas .photo img {width:100%;}

.tools-programming-area {padding-top:50px; padding-bottom:70px;}
.tools-programming-area .box {margin:0 auto; max-width:1260px; text-align:center; margin-bottom:30px;}
.tools-programming-area .box h3 {font-size:52px; font-weight:700; color:#343434; line-height:58px; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top center no-repeat; padding-top:75px; margin-bottom:25px;}
.tools-programming-area .box p {font-size:16px; line-height:24px; color:#343434;}

.tools-programming-area .logo-box {text-align:center; margin:25px 0;}

.lp-card-areas .card-content h3 {max-width:100%; width:100%; font-size:52px; font-weight:700;}
.lp-card-areas .card-content p {max-width:100%; width:100%;}
.lp-card-areas .card-content p a.more-link {color:#FE7200; font-weight:700; text-decoration:none; font-size:19px;}
.lp-card-areas .card-content {padding-left:40px; padding-right:40px;}

.lp-expert-developers {padding-bottom:100px;}
.lp-expert-developers .box {max-width: 1150px; margin: 0 auto; text-align:center;}
.lp-expert-developers .box .title {
    font-size: 44px;
    font-weight: 700;
    color: #A8A8A8;
    line-height: 1.23;
	margin-bottom:25px;
}
.lp-expert-developers .box .text {font-size:16px; line-height:24px; color:#343434;}

.lp-case-studies {background:url(../img/casestudy-bgs.png) center no-repeat #242424; background-size:cover; padding-top:80px; padding-bottom:80px;}
.lp-case-studies .box {margin:0 auto; max-width:1260px; text-align:center; margin-bottom:60px;}
.lp-case-studies .box h3 {font-size:52px; font-weight:700; color:#fff; line-height:58px; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top center no-repeat; padding-top:75px; margin-bottom:25px;}
.lp-case-studies .box p {font-size:16px; line-height:24px; color:#fff;}

.casestudies-slider {margin:0 auto; max-width:1260px;}
.casestudies-slider .head {position:relative; display: flex; align-items: end; margin-bottom:50px;}
.casestudies-slider .head .number {position:relative; color:#404040; font-size:140px; font-weight:700; line-height:120px;}
.casestudies-slider .head h4.title {color:#FE7200; font-size:70px; font-weight:700; padding:0; margin:0; display:inline; line-height:64px;}
.casestudies-slider .text {font-size:25px; line-height:41px; color:#FFFFFF; margin-bottom:35px;}
.casestudies-slider .infos {padding-top:40px;}

.casestudies-slider .owl-dots {text-align:center;}
.casestudies-slider .owl-dots .owl-dot {margin:0 10px;}
.casestudies-slider .owl-dots .owl-dot span {background:#8c907e; width:18px; height:18px; border-radius:20px; display:block;}
.casestudies-slider .owl-dots .owl-dot.active span {background:#f4fdd9;}

.lp-our-testimonials {padding-top:60px; padding-bottom:290px; background:url(../img/ourtestimonial-bgs.png) left center no-repeat; margin-top:80px;}
.lp-our-testimonials .head {margin-bottom:35px;}
.lp-our-testimonials .head p {font-size:18px; font-weight:700; color:#FE7200; text-transform:uppercase; padding:0; margin:0 0 10px 0;}
.lp-our-testimonials .head h3 {font-size:52px; font-weight:700; color:#343434; padding:0; margin:0;}
.lp-our-testimonials .qoutes {background:url(../img/el_quotes.png) 0px 0px no-repeat; font-size:25px; line-height:42px; color:#343434; padding:55px 0 0 25px;}
.lp-our-testimonials .testi-profile h5 {font-size:25px; font-weight:700; color:#343434; padding:0 0 0 25px; margin:25px 0 0 0;}

.lptestimonials-slider .owl-dots {text-align:center;}
.lptestimonials-slider .owl-dots .owl-dot {margin:0 5px;}
.lptestimonials-slider .owl-dots .owl-dot span {background:#d7d7d7; width:18px; height:18px; border-radius:20px; display:block;}
.lptestimonials-slider .owl-dots .owl-dot.active span {background:#fe7200;}

.lp-bottom-logos {background:#000000; padding-top:50px; padding-bottom:50px;}
.lp-bottom-logos .box {text-align:center;}

.lp-states-areas {padding-top:60px; padding-bottom:60px; background:url(../img/states-where-bgs.jpg) left center no-repeat #000; background-size:cover;}
.lp-states-areas .left h3 {font-size:48px; font-weight:700; color:#fff; line-height:55px; background:url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top left no-repeat; padding-top:75px; margin-bottom:20px;}
.lp-states-areas .left p {font-size:16px; line-height:24px; color:#fff; margin:0;}

.lp-states-areas .right .area {background:url(../img/location-iconor.png) 0px 0px no-repeat; font-size:20px; color:#FFFFFF; line-height:41px; padding-left:50px; margin:20px 0;}
.lp-states-areas .right .area a {color:#FFFFFF; text-decoration:none;}
.lp-states-areas .right .area a:hover {color:#FFFFFF; text-decoration:underline;}
.lp-states-areas .right .col-lg-4:nth-child(1),
.lp-states-areas .right .col-lg-4:nth-child(2),
.lp-states-areas .right .col-lg-4:nth-child(3),
.lp-states-areas .right .col-lg-4:nth-child(7),
.lp-states-areas .right .col-lg-4:nth-child(8),
.lp-states-areas .right .col-lg-4:nth-child(9),
.lp-states-areas .right .col-lg-4:nth-child(9),
.lp-states-areas .right .col-lg-4:nth-child(13),
.lp-states-areas .right .col-lg-4:nth-child(14),
.lp-states-areas .right .col-lg-4:nth-child(15),
.lp-states-areas .right .col-lg-4:nth-child(19),
.lp-states-areas .right .col-lg-4:nth-child(20),
.lp-states-areas .right .col-lg-4:nth-child(21),
.lp-states-areas .right .col-lg-4:nth-child(25),
.lp-states-areas .right .col-lg-4:nth-child(26),
.lp-states-areas .right .col-lg-4:nth-child(27),
.lp-states-areas .right .col-lg-4:nth-child(31),
.lp-states-areas .right .col-lg-4:nth-child(32),
.lp-states-areas .right .col-lg-4:nth-child(33) {padding-left:50px;}

.lps-blog-area {padding-top:90px;}
.lps-blog-area .title h5 {text-align:center; font-size:18px; font-weight:700; color:#FE7200; text-transform:uppercase; margin-bottom:40px;}

.page-template-fl-landing-pages nav.header-nav li.nav-link-item a.nav-link {color:#FFFFFF;}
.lp-mainheader .hero-content {
    margin-top: 0 !important;
}

@font-face {
    font-family: 'cocogooseregular';
    src: url('../fonts/cocogoose_pro-trial.woff2') format('woff2'),
         url('../fonts/cocogoose_pro-trial.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.page-template-ppc-mobile-development header.header,
.page-template-ppc-ios-development header.header,
.page-template-website-development-lp header.header  {display:none !important;}

.ppc-header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 8;
    background: transparent;
    padding: 20px 0;
}
.ppc-header-area .top-bar {justify-content: space-between;}
.ppc-header-area .call {font-size:29px; color:#FFFFFF;}
.ppc-header-area .call a {color:#FE7200; text-decoration:none;}

.ppc-mainheader {padding-top:200px; position:relative; padding-bottom:100px;}
.ppc-mainheader .right-pic {position:absolute; top:80px; right:0;}
.ppc-mainheader h3 {font-size:78px; color:#FFFFFF; line-height:91px; padding:0; margin:0; font-family: 'cocogooseregular'; font-weight:normal;}
.ppc-mainheader span.subtitle {display:inline-block; background:#EFBA2A; padding:7px 20px; font-size:34px; font-weight:700; color:#000000; text-transform:uppercase; transform: rotate(-3deg); position:relative; top:-20px;}
.ppc-mainheader p {color:#FFFFFF; font-size:21px; line-height:26px; margin-top:35px; margin-bottom:40px;}
.ppc-mainheader .btn-primary {
    border-radius: 5px;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 14px 35px;
}
.ppc-mainheader .about-logo {margin-top:40px;}

.ppc-trusted-area {padding-top:120px; padding-bottom:140px;}
.ppc-trusted-area .mid-box:after {display:block; clear:both; content:"";}
.ppc-trusted-area .left-texts {float:left; font-size:60px; color:#FE7200; line-height:66px; width:280px; font-weight:700;}
.ppc-trusted-area .right-logo {float:right; width: calc(100% - 310px);}

.ppc-trusted-area .mid-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ppc-trusted-area .trusted-logos {align-items: center;}

.ppc-services-area {padding-bottom:120px;}
.ppc-services-area .box {margin:0 auto; max-width:800px; text-align:center; margin-bottom:200px;}
.ppc-services-area .box h3 {font-size:46px; font-weight:700; color:#343434; padding:0; margin:0 0 30px 0;}
.ppc-services-area .box p {font-size:16px; line-height:21px; color:#4A4A4A;}

.ppc-services-area .card-boxs {background:#FFFFFF; border-radius:23px; position:relative; box-shadow:0px 10px 40px rgba(0,0,0,0.06); padding:0 40px 40px;}
.ppc-services-area .card-boxs h4.title {font-size:25px; color:#343434; line-height:28px; font-weight:700; padding:0; margin:0 0 20px 0; clear:both;}
.ppc-services-area .card-boxs p {font-size:16px; line-height:21px; color:#4A4A4A;}
.ppc-services-area .card-boxs img.icons {float:right; margin-top:-130px; margin-right:-40px;}

.ppc-services-area .btn-set {text-align:center; margin-top:80px;}
.ppc-services-area .btn-set .btn {width:auto !important; display:inline-block !important; height:auto !important; padding:12px 35px; border-radius:5px;}


.ppc-development-area1 {background:#131625;}
.ppc-development-area1 .infos h3 {font-size:39px; font-weight:700; color:#FFFFFF; line-height:42px; padding:0; margin:0 0 35px 0;}
.ppc-development-area1 .infos .discription {font-size:16px; line-height:21px; color:#FFFFFF;}
.ppc-development-area1 .infos .box-sets {max-width:400px; display:flex; align-items: center; justify-content: space-between; background:url(../img/boxbg-pi1.png) center no-repeat; background-size:100%; border-radius:18px; border:solid 1px rgba(255,255,255,0.26); padding:30px; margin-top:35px;}
.ppc-development-area1 .infos .box-sets .txt {font-size:21px; line-height:25px; color:#FFFFFF; width:55%;}
.ppc-development-area1 .infos .box-sets .number {font-size:80px; line-height:82px; color:#FFFFFF; font-weight:700;}

.ppc-development-area3 {background:#131625;}
.ppc-development-area3 .infos h3 {font-size:39px; font-weight:700; color:#FFFFFF; line-height:42px; padding:0; margin:0 0 35px 0;}
.ppc-development-area3 .infos .discription {font-size:16px; line-height:21px; color:#FFFFFF;}
.ppc-development-area3 .infos .box-sets {max-width:400px; display:flex; align-items: center; justify-content: space-between; background:url(../img/boxbg-pi1.png) center no-repeat; background-size:100%; border-radius:18px; border:solid 1px rgba(255,255,255,0.26); padding:30px; margin-top:35px;}
.ppc-development-area3 .infos .box-sets .txt {font-size:21px; line-height:25px; color:#FFFFFF; width:55%;}
.ppc-development-area3 .infos .box-sets .number {font-size:80px; line-height:82px; color:#FFFFFF; font-weight:700;}

.ppc-development-area2 {background:#fff;}
.ppc-development-area2 .infos h3 {font-size:39px; font-weight:700; color:#343434; line-height:42px; padding:0; margin:0 0 35px 0;}
.ppc-development-area2 .infos .discription {font-size:16px; line-height:21px; color:#343434;}
.ppc-development-area2 .infos .box-sets {max-width:400px; display:flex; align-items: center; justify-content: space-between; background:#f1f1f1; background-size:100%; border-radius:18px; border:solid 1px #e1e1e1; padding:30px; margin-top:35px;}
.ppc-development-area2 .infos .box-sets .txt {font-size:21px; line-height:25px; color:#343434; width:55%;}
.ppc-development-area2 .infos .box-sets .number {font-size:80px; line-height:82px; color:#343434; font-weight:700;}

.ppc-bottom-logos-box {padding-bottom:90px;}
.ppc-bottom-logos-box .logo-box {text-align:center; margin:20px 0;}
.ppc-bottom-logos-box .moretext {text-align:center; font-size:23px; font-weight:700; color:#343434; margin-top:35px;}
.ppc-bottom-logos-box .logo-box img {
    filter: grayscale(100%);
}
.ppc-bottom-logos-box .logo-box img:hover {
    filter: unset;
}


.ppc-testimonials-dark {padding-top:100px; padding-bottom:0px; background:#131625;}
.ppc-testimonials-dark .box {margin:0 auto; max-width:800px; text-align:center; margin-bottom:70px;}
.ppc-testimonials-dark .box h3 {font-size:46px; font-weight:700; color:#FFFFFF; line-height:50px; padding:0; margin:0 0 25px 0;}
.ppc-testimonials-dark .box p {font-size:16px; color:#FFFFFF; line-height:22px; padding:0; margin:0;}
.ppc-testimonials-dark .botmm-photo img {width:1000%; height:auto;}

.ppctestimonials-slider .testi-profile {background:#FFFFFF; border-radius:24px; padding:35px; text-align:center;}
.ppctestimonials-slider .testi-profile .qoutes {color:#12141d; line-height:24px; margin-bottom:15px; font-size:16px;}
.ppctestimonials-slider .testi-profile h5 {color:#12141d; line-height:24px; margin-bottom:15px; font-size:17px;}
.ppctestimonials-slider .testi-profile .jobs {color:#52525b; font-size:16px;}
.discuss-btns {text-align:center; margin-top:60px;}
.discuss-btns .btn {width:auto !important; display:inline-block !important; height:auto !important; padding:15px 35px;}
.ppctestimonials-slider .owl-dots {text-align:center;}
.ppctestimonials-slider .owl-dots button {
    width: 12px;
    background: #EC7122 !important;
    height: 6px;
    border-radius: 10px;
    transition: .3s !important;
    margin: 0 3px;
    opacity: .7;
}

.ppctestimonials-slider .owl-dots button.active {
    width: 24px;
    opacity: 1;
}

.ppc-bottom-form-box {padding-top:100px; padding-bottom:80px; background:url(../img/yellow-curbg.png) center no-repeat;}
.ppc-bottom-form-box h3.main-title {text-align:center; margin:0 auto; max-width:620px; font-size:42px; font-weight:700; line-height:46px; color:#343434; margin-bottom:60px;}
.ppc-bottom-form-box .forms-box {padding-left:50px; max-width:670px; margin-top:10px;}
.ppc-bottom-form-box .forms-box .sets {background:#FFFFFF; border-radius:24px; padding:35px; box-shadow:0px 0px 0px 10px rgba(0,0,0,0.15);}
.ppc-bottom-form-box .forms-box .wpforms-field {padding:0 !important; margin-top:40px;}
.ppc-bottom-form-box .forms-box .wpforms-field-large,
.ppc-bottom-form-box .forms-box .wpforms-field-large:hover,
.ppc-bottom-form-box .forms-box .wpforms-field-large:active,
.ppc-bottom-form-box .forms-box .wpforms-field-large:focus {border:none !important; border-bottom:solid 1px #CBCBCB !important; padding:0 0 10px 0 !important; outline:none !important; border-radius:0 !important; box-shadow:none !important;}
.ppc-bottom-form-box .forms-box h5 {font-size:36px; font-weight:700; color:#343434; line-height:40px; margin:0 0 25px 0;}
.ppc-bottom-form-box .forms-box h5 span {color:#FE7200;}
.ppc-bottom-form-box .forms-box .wpforms-submit {width:100%; background:#FE7200 !important; padding:18px 15px; height:auto;}

.ppc-create-area .logos-wrapper {padding-top:30px !important;}


.ppc-iosservices-area .card-boxs {background:#FFFFFF; border-radius:23px; position:relative; box-shadow:0px 10px 40px rgba(0,0,0,0.06); padding:0 40px 40px;}
.ppc-iosservices-area .card-boxs h4.title {font-size:25px; color:#343434; line-height:28px; font-weight:700; padding:0; margin:10px 0 20px 0; clear:both;}
.ppc-iosservices-area .card-boxs p {font-size:16px; line-height:21px; color:#4A4A4A;}
.ppc-iosservices-area .card-boxs img.icons {margin-top:-80px;}

.ppc-ios-trusted-area  {padding-top:70px; padding-bottom:50px;}
.ppc-ios-trusted-area .box {margin: 0 auto; max-width: 800px; text-align: center; margin-bottom: 70px;}
.ppc-ios-trusted-area .box h3 {font-size: 46px; font-weight: 700; color: #343434; padding: 0; margin: 0 0 30px 0;}
.ppc-ios-trusted-area .box p {font-size: 16px; line-height: 21px; color: #4A4A4A;}
.ppc-ios-trusted-area .right-logo .row {align-items: center;}

.ppc-empowering-area {padding-bottom:40px;}
.ppc-empowering-area .infos h4 {font-size: 46px; font-weight: 700; color: #343434; padding: 0; margin: 0 0 30px 0;}
.ppc-empowering-area .infos p {font-size: 16px; line-height: 21px; color: #4A4A4A;}

.ppc-iosservices-area {padding-top:50px; padding-bottom:430px;}
.ppc-iosservices-area .box {padding-top:110px;}
.ppc-iosservices-area .box h3 {font-size: 46px; font-weight: 700; color: #343434; padding: 0; margin: 0 0 30px 0;}
.ppc-iosservices-area .box .btn-primary {width:auto !important; display:inline-block !important; height:auto !important; padding:12px 35px;}
.ppc-iosservices-area .boxs2 {margin-top:250px;}
.ppc-iosservices-area .boxs3 {margin-top:-175px; margin-left:auto; margin-right:25%;}
.ppc-iosservices-area .boxs3 .card-boxs img.icons {margin-top:-20px;}


.ios-app-services-area {background:#131625;}
.ios-app-services-area .tops-image {text-align:center; padding:0 20px; margin-bottom:50px;}
.ios-app-services-area .tops-image img {margin-top:-340px;}

.ios-app-services-area .box {margin: 0 auto; max-width: 800px; text-align: center; margin-bottom: 70px;}
.ios-app-services-area .box h3 {font-size: 46px; font-weight: 700; color: #fff; padding: 0; margin: 0 0 30px 0;}
.ios-app-services-area .box p {font-size: 16px; line-height: 21px; color: #fff; margin-bottom:40px;}
.ios-app-services-area .box .btn-primary {width:auto !important; display:inline-block !important; height:auto !important; padding:12px 35px;}

.ios-app-services-area .cols-box {padding-bottom:30px; border-bottom:solid 2px #fff; margin-bottom:60px;}
.ios-app-services-area .cols-box h5.title {font-size:20px; font-weight:700; color:#FFFFFF; padding:0; margin:0 0 15px 0;}
.ios-app-services-area .cols-box p {font-size:14px; font-weight:400; color:#FFFFFF; padding:0; margin:0; line-height:21px;}

.ios-app-services-area .bottoms-image {text-align:center; padding-top:40px}

.ppc-testimonials-light {padding-top:100px; background:#eeefe7; padding-bottom:100px;}
.ppc-testimonials-light .box {margin: 0 auto; max-width: 800px; text-align: center; margin-bottom: 70px;}
.ppc-testimonials-light .box h3 {font-size: 46px; font-weight: 700; color: #343434; padding: 0; margin: 0 0 30px 0;}
.ppc-testimonials-light .box p {font-size: 16px; line-height: 21px; color: #4A4A4A;}

.ios-header-form {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0px 0px 0px 10px rgba(0,0,0,0.15);
}
.ios-header-form h5 {
    font-size: 36px;
    font-weight: 700;
    color: #343434;
    line-height: 40px;
    margin: 0 0 25px 0;
}
.ppc-testimonials-light .moretext {text-align:center; font-size:23px; font-weight:700; color:##343434; margin-top:60px;}

.ppc-testimonials-light .logoareas {margin:0 auto; max-width:720px; margin-top:70px;}
.ppc-testimonials-light .logoareas .logo-box {text-align:center; margin:15px 0;}

.ppc-bottom-form-box .middle-cols {padding-left:90px;}

.all-development-botfomrs  {padding-left:30px;}
.all-development-botfomrs .sets {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0px 0px 0px 10px rgba(0,0,0,0.15);
}


.developmen-mainheader {position:relative;}
.developmen-mainheader:after {position:absolute; left:0; bottom:0; width:100%; height:10px; content:""; background: rgb(254,114,0); background: linear-gradient(90deg, rgba(254,114,0,1) 0%, rgba(255,207,45,1) 100%);}
.developmen-mainheader h3 {
    font-size: 70px;
    line-height: 90px;
}
.developmen-mainheader h3 span {color:#fa7e02;}

.yellow-bgsarea {background:url(../img/yellow-bgs.png) top center no-repeat;}

.ppc-years-experience {padding-top:80px; padding-bottom:80px;}
.ppc-years-experience .picbox {position:relative; padding-top:30px;}
.ppc-years-experience .picbox .years {position:absolute; background:#9747FF; padding:5px 30px; border-radius:20px 0 20px 0; font-size:39px; color:#FFFFFF; font-weight:700; top:10px; right:-170px;}
.ppc-years-experience .box {padding-left:50px;}
.ppc-years-experience .box h3 {font-size:52px; color:#343434; font-weight:700; padding:35px 0 0 0; background:url(../img/title-boxs.png) top left no-repeat;}
.ppc-years-experience .box p {font-size:16px; line-height:24px; color:#343434;}

.development-serviceset .topboxs {margin-left:auto; margin-right:auto; text-align:center;}
.development-serviceset .topboxs .title {font-size:52px; color:#343434; font-weight:700; padding:0; margin:0 0 15px 0;}
.development-serviceset .topboxs p {font-size:16px; line-height:24px; color:#343434;}
.development-serviceset .topboxs .btn {width:auto !important; padding:12px 35px; height:auto !important; display:inline-block !important; margin-top:25px;}

.development-serviceset .card-boxs {background:#FFFFFF; padding:0 25px 25px 25px; border-radius:23px; box-shadow:0px 0px 30px rgba(0,0,0,0.1);}
.development-serviceset .card-boxs h4 {font-size:26px; font-weight:700; color:#343434; padding:0; margin:15px 0 10px 0;}
.development-serviceset .card-boxs p {font-size:16px; line-height:24px; color:#343434;}
.development-serviceset .card-boxs img {position:relative; margin:-30px 0 0 -60px;}
.development-serviceset .morespace {margin:0 -50px;}
.development-serviceset .morespace .col-lg-4 {padding:0 50px;}

.development-serviceset .boxs2 {margin-top:80px;}
.development-serviceset .boxs1,
.development-serviceset .boxs3 {margin-top:-50px;}

.lpdevelopment-portfolis {padding-top:120px; padding-bottom:60px;}
.lpdevelopment-portfolis .sets {max-width:560px;}
.lpdevelopment-portfolis .sets .title {font-size:52px; color:#343434; font-weight:700; padding:35px 0 0 0; background:url(../img/title-boxs.png) top left no-repeat;}
.lpdevelopment-portfolis .sets p {font-size:16px; line-height:24px; color:#343434;}


.development-portfo-box1 {background:url(../img/testimonial-bgimg.png) left center no-repeat #242424; padding-top:150px; padding-bottom:150px;}
.development-portfo-box1 .image {position:absolute; bottom:0; right:0;}

.txtbox-development {position:relative;}
.txtbox-development .text h3 {font-size:52px; color:#FFFFFF; line-height:60px; padding:0; margin:0 0 15px 0;}
.txtbox-development .text p {font-size:16px; color:#FFFFFF; line-height:24px; padding:0; margin:0;}


.development-portfo-box2 {background:url(../img/testimonial-bgimg.png) right center no-repeat #4d2c5e; padding-top:150px; padding-bottom:150px;}
.development-portfo-box2 .image {
	position:absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
	z-index:1;
}

.development-portfo-box3 {background:url(../img/testimonial-bgimg.png) left center no-repeat #023f68; padding-top:150px; padding-bottom:150px;}
.development-portfo-box3 .image {position:absolute; top:40px; right:0;}

.development-faqset {padding-top:100px; padding-bottom:230px;}
.development-faqset .section-title h3 {font-size:45px; line-height:49px; color:#343434; font-weight:700; padding:35px 0 0 0; background:url(../img/title-boxs.png) top left no-repeat; margin:0;}
.development-faqset .photo {margin-top:-75px;}

.consultationset-area {position:relative;}
.consultationset-area .photo {position:absolute; bottom:0; right:0; width: calc(50% + 15px);}
.consultationset-area .photo img {border-radius:20px 0 20px 0; width:100%;}
.consultationset-area .text-areas {background:url(../img/orange-bgspic.jpg) center no-repeat; background-size:cover; padding:35px 50px; border-radius:20px 0 0 20px;}
.consultationset-area .text-areas h3 {color:#FFFFFF; font-size:46px; line-height:49px; padding:0; margin:0 0 15px 0;}
.consultationset-area .text-areas p {font-size:16px; line-height:23px; color:#FFFFFF;}
.consultationset-area .text-areas .btn {background:#FFFFFF !important; width:auto !important; padding:12px 35px; color:#FE7200 !important; display:inline-block !important; height:auto;}

.testimoniallp-section {padding-top:230px; padding-bottom:90px; background:url(../img/blacktesti-bgspic.jpg) top center no-repeat #16151a; background-size:cover; margin-top:-120px;}
.testimoniallp-section .logo-section {margin:0 auto; max-width:1060px;}
.testimoniallp-section .logo-section .logo-box {text-align:center; margin:15px 0;}

.testimoniallp-section .testimo-section {margin-top:100px;}
.testimoniallp-section .testimo-section .title h3 {text-align:center; font-size:46px; line-height:49px; color:#FFFFFF; padding:35px 0 0 0; margin:0 0 40px 0; background:url(../img/title-boxs-white.png) top center no-repeat;}

.bottom-trusted-ares {padding-top:80px;}
.bottom-trusted-ares h4.title {text-align:center; font-size:18px; font-weight:700; color:#343434; text-transform:uppercase; margin-bottom:30px;}
.bottom-trusted-ares .logo-box {text-align:center; margin:10px 0;}

.developmen-mainheader .ios-header-form h5 {
    font-size: 31px;
    line-height: 33px;
    margin: 0;
}

.development-portfo-box2,
.development-portfo-box3 {display:none !important;}

.edtech-development-area {padding-top:110px; padding-bottom:100px;}
.edtech-development-area .infos h3 {font-size:47px; line-height:53px; font-weight:700; color:#343434; padding:0; margin:0 0 30px 0;}
.edtech-development-area .infos p {font-size:18px; line-height:24px; color:#343434; margin-bottom:35px;}

.edtech-development-area .boxs {background:#FFFFFF; padding:30px; box-shadow:0px 0px 15px rgba(0,0,0,0.1); position:relative; min-height:340px; margin-bottom:25px;}
.edtech-development-area .boxs h4 {font-size:30px; font-weight:700; color:#FE7200; line-height:40px; padding:0 20px 0 0; margin:0 0 25px 0;}
.edtech-development-area .boxs p {font-size:18px; line-height:24px; color:#343434; padding:0; margin:0;}
.edtech-development-area .boxs span.number {position:absolute; top:0; right:0; font-size:144px; line-height:150px; color:#ffedde; z-index:-1; font-weight:700;}

.committed-gdpr-area {background:url(../img/committed-bgsimg.jpg) left center no-repeat #121212; background-size:cover; padding-top:100px; padding-bottom:100px;}
.committed-gdpr-area .box {max-width:830px;}
.committed-gdpr-area .box h3 {font-size:48px; font-weight:700; color:#FFFFFF; line-height:54px; padding:75px 0 0 0; margin:0 0 25px 0; background: url(https://flynaut.com/wp-content/uploads/2023/07/title-orange-box.png) top left no-repeat;}
.committed-gdpr-area .box p {font-size:16px; color:#FFFFFF; line-height:24px; padding:0; margin:0;}

.explore-case-studies {padding-top:100px;}
.explore-case-studies .heading {text-align:center;}
.explore-case-studies .heading h3 {font-size:57px; line-height:62px; color:#343434; font-weight:700; padding:0; margin:0 0 20px 0;}
.explore-case-studies .heading p {font-size:24px; line-height:33px; color:#4A4A4A;}
.explore-case-studies .heading .btn {width:auto !important; padding:12px 35px; height:auto !important; display:none !important; margin-top:25px;}
.explore-case-studies .head-content {padding:35px 75px 0;}
.explore-case-studies .card-items {
    margin-bottom: 24px;
    transition: .3s;
}
.explore-case-studies .card-items img {
    border-radius: 20px;
    box-shadow: 0 2px 19px rgba(0, 0, 0, 0.102);
}

.seolp-arecrd {padding-top:0; padding-bottom:0;}

.seolp-arecrd .card-content h3 {
    font-size: 35px;
}

.seo-consultation-formarea {background:url(../img/consultation-bgs.jpg) center no-repeat #f97c12; background-size:cover; padding-top:110px; padding-bottom:140px;}
.seo-consultation-formarea .text-boxs h3 {font-size:65px; color:#FFFFFF; line-height:68px; padding:75px 0 0 0; margin:0 0 25px 0;  background: url(https://flynaut.com/wp-content/uploads/2023/07/title-white-box.png) top left no-repeat;}
.seo-consultation-formarea .text-boxs p {font-size:16px; line-height:24px; color:#FFFFFF;}
.seo-consultation-formarea .right-forms {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 0px 0px 20px rgba(255,255,255,0.15);
}
.seo-consultation-formarea .right-forms h5 {text-align:center; font-size:30px; font-weight:700; color:#252525; margin:0;}

.page-template-seo-landing-pages .cta-area {
    margin-top: 0 !important;
}

.page-template-seo-landing-pages .header.dark .nav-link {
    color: #fff !important;
}

.page-template-seo-landing-pages .lp-our-testimonials {display:none !important;}

.industries-featured-info {padding-top:70px; padding-bottom:70px;}
.industries-featured-info .head {margin-bottom:30px;}
.industries-featured-info .head .number {color:#000000; font-size:154px; font-weight:700; line-height:150px; opacity:0.12; display:inline-block;}
.industries-featured-info .head h3 {font-size:72px; font-weight:700; color:#000000; padding:0 0 10px 0; margin:0; line-height:75px; position:relative; left:-45px; bottom:30px; display:inline-block;}
.industries-featured-info .head h3:after {position:absolute; right:0; bottom:0; width:calc(100% - 40px); height:5px; content:"";}
.industries-featured-info p {font-size:18px; line-height:27px; color:#343434; padding:0; margin:0 0 30px 0;}
.industries-featured-info a.btn {font-size:18px; color:#FFFFFF; font-weight:700; padding:15px 45px; border-radius:0;}
.industries-featured-info a.btn:hover {color:#FFFFFF; background:#000000;}

.industries-bgs {background:url(../img/industries-bgspic.png) center no-repeat; background-size:cover;}

.edtech-sections a.btn,
.edtech-sections .head h3:after {background:#FE7200;}

.medtech-sections a.btn,
.medtech-sections .head h3:after {background:#F7485D;}

.fintech-sections a.btn,
.fintech-sections .head h3:after {background:#005246;}

.retail-sections a.btn,
.retail-sections .head h3:after {background:#C7488C;}

.hitech-sections a.btn,
.hitech-sections .head h3:after {background:#425481;}

.travel-sections a.btn,
.travel-sections .head h3:after {background:#005643;}

.logistics-sections a.btn,
.logistics-sections .head h3:after {background:#C08400;}

.iot-sections a.btn,
.iot-sections .head h3:after {background:#425481;}

.page-template-industries-featured-page .home-banner {
    min-height: 625px !important;
}

.page-template-industries-featured-page .cta-area,
.page-template-fl-landing-pages .cta-area {
    margin-top: 0 !important;
}


.page-template-fl-landing-pages .hero-area,
.page-template-industries-featured-page .hero-area,
.page-template-seo-landing-pages .hero-area{
    padding-top: 170px !important;
}

.page-template-fl-landing-pages .lp-card-areas .col-md-4:nth-child(2) .card-content {opacity:1; visibility:visible; text-align:center;}
.page-template-fl-landing-pages .lp-card-areas .col-md-4:nth-child(2) .card-content a.more-link {
    height: auto;
    background: #FE7200;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 30px;
	display:inline-block;
	color:#FFFFFF;
	margin-top:15px;
}

