@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

@font-face {
    font-family: aghaFont-Bold;
    src: url("../font/MYRIADPRO-BOLD.OTF");
}

@font-face {
    font-family: aghaFont-SemiBold;
    src: url("../font/MYRIADPRO-SEMIBOLD.OTF");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000;
    font-family: 'Inter', sans-serif;
}

.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

::selection {
    color: #55b1b8;
    background-color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #85e9f0, #71cbd1);
    /* box-shadow: inset 0 0 2px 2px #fff; */
}

.btn,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
    outline: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    outline: 0;
}

h1 {
    font-size: 70px;
    font-weight: bold;
}

h2 {
    font-size: 55px;
    font-weight: bold;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 36px;
}

h5 {
    font-size: 30px;
}

h6 {
    font-size: 25px;
}

p {
    font-size: 16px;
    line-height: 28px;
}

.fancybox__footer {
    display: none;
}

.scroll_block {
    overflow: auto;
    padding-right: 10px
}

.scroll_block::-webkit-scrollbar {
    width: 1px
}

.scroll_block::-webkit-scrollbar-track {
    background: transparent;
    /* background-image: -moz-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -webkit-linear-gradient(-129deg, #14288d 0, #072cc8 100%);
    background-image: -ms-linear-gradient(-129deg, #14288d 0, #072cc8 100%) */
}

.scroll_block::-webkit-scrollbar-thumb {
    background: transparent
}

.line_heading {
    width: 100%;
    height: 120px;
    position: absolute;
    z-index: -1;
}

.line_heading img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.combo_btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    color: #000;
    padding: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .4s;
    z-index: 2;
}

.btn_1 {
    color: #000;
}

.btn_2 {
    color: #f97f3c;
}

.btn_1:hover {
    color: #000;
}

.btn_2:hover {
    color: #f97f3c;
}

.btn .button__texts {
    margin-right: 10px;
    overflow: hidden;
    z-index: 1;
}

.btn .button__text {
    display: block;
}

.btn .button__text-anim {
    transition: transform .4s cubic-bezier(.215, .61, .355, 1);
    transform: translate(0);
}

.btn:hover .button__text-anim {
    transform: translate(0, -150%);
}

.btn .button__text.is-absolute {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(0, 150%);
}

.btn .button__icons {
    width: 50px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transform: translate(0);
    transition: all .4s;
}

.btn_1 .button__icons {
    color: #000;
    border: 1px solid #000;
}

.btn_2 .button__icons {
    color: #f97f3c;
    border: 1px solid #f97f3c;
}

.btn_1 .button__icons.is-white {
    color: #000;
    border-color: #000;
}

.btn_2 .button__icons.is-white {
    color: #f97f3c;
    border-color: #f97f3c;
}

.btn_1:hover .button__icons.is-white {
    color: #fff;
}

.btn_2:hover .button__icons.is-white {
    color: #fff;
}

.btn_1:hover .button__icons {
    color: #000;
}

.btn_2:hover .button__icons {
    color: #000;
}

.btn .button__icon-anim {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: translate(0%);
    transition: transform .4s cubic-bezier(.215, .61, .355, 1);
    z-index: 1;
}

.btn:hover .button__icon-anim {
    transform: translate(180%);
}

.btn .icon-small {
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn .icon-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.btn .icon-small.is-absolute {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(-180%);
}

.btn .button__bg {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 20px;
    transition: all .4s;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: scale(0);
}

.btn_1 .button__bg {
    background-color: #000;
}

.btn_2 .button__bg {
    background-color: #f97f3c;
}


/* .btn .button__bg.bg-color-white {
    background-color: #000;
} */

.btn_1 .button__bg.bg-color-white {
    background-color: #000;
}

.btn_2 .button__bg.bg-color-white {
    background-color: #000;
}

.btn:hover .button__bg {
    transform: scale(1);
}

.sec_padding {
    padding: 80px 0;
}

.primary_clr {
    color: #55b1b8;
    background: linear-gradient(45deg, #85e9f0, #71cbd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no_border {
    border: none !important;
}


/* Start Header */

header {
    padding: 20px 0;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 111;
}

header .main_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .main_menu .menu-btn {
    position: relative;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    z-index: 111;
}

header .main_menu .close-btn {
    position: absolute;
    color: #fff;
    font-size: 35px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

header .main_menu .side-bar {
    background: #1b1a1b;
    backdrop-filter: blur(15px);
    width: 320px;
    height: 100vh;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: -320px;
    overflow-y: scroll;
    transition: 0.6s ease;
    transition-property: left;
    z-index: 111;
}

header .main_menu .side-bar::-webkit-scrollbar {
    width: 10px;
}

header .main_menu .side-bar.active {
    left: 0;
}

header .main_menu .side-bar .menu {
    width: 100%;
}

header .main_menu .side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

header .main_menu .side-bar .menu .item a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding-left: 30px;
    display: block;
    line-height: 40px;
}

header .main_menu .side-bar .menu .item a:hover {
    background: #33363a;
    transition: 0.3s ease;
}

header .main_menu .side-bar .menu .item .dropdown {
    position: absolute;
    color: #fff;
    top: 14px;
    right: 15px;
    transition: 0.3s ease;
}

header .main_menu .side-bar .menu .item .sub-menu {
    background: #262627;
    display: none;
}

header .main_menu .side-bar .menu .item .sub-menu a {
    /* padding-left: 30px; */
}

header .main_menu .rotate {
    transform: rotate(90deg);
}


/* header .menu_btn {
    display: block;
    position: relative;
    z-index: 222;
}

header .menu_btn span,
header .menu_btn span:before,
header .menu_btn span:after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 12px;
    position: absolute;
    left: 0;
}

header .menu_btn span {
    width: 35px;
}

header .menu_btn span:before {
    transition: all 0.2s;
    content: '';
    margin-top: -10px;
}

header .menu_btn span:after {
    transition: all 0.2s;
    content: '';
    margin-top: 10px;
}

header .active span {
    background-color: transparent;
} */


/* header .active span:before {
    transform: rotate(135deg);
    margin-top: 0;
} */


/* header .active span:after {
    transform: rotate(-135deg);
    margin-top: 0;
} */


/* header .menu {
    width: 100vw;
    background: linear-gradient(45deg, #f39100, #089136, #f38e19);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: -100vw;
    opacity: 0.97;
    z-index: 22;
    transition: all 0.5s;
} */


/* header .menu_active {
    left: 0;
} */

header .menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

header .menu ul li {
    margin-bottom: 20px;
}

header .menu ul li:last-child {
    margin: 0;
}

header .menu a {
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.2s;
}

header .btn_1,
.banner .combo_btn .btn_1,
.pricing .pricing_btn .combo_btn .btn_1,
.services3 .box .combo_btn .btn_1,
.services_page3 .box .combo_btn .btn_1,
.contact_form form .btn_1,
.thank-section .combo_btn .btn_1 {
    color: #fff;
}

header .btn_1:hover,
.services3 .box .combo_btn .btn_1:hover,
.services_page3 .box .combo_btn .btn_1:hover,
.contact_form form .btn_1:hover,
.thank-section .combo_btn .btn_1:hover {
    color: #fff;
}

header .btn_1 .button__icons.is-white,
.banner .combo_btn .btn_1 .button__icons.is-white,
.pricing .pricing_btn .combo_btn .btn_1 .button__icons.is-white,
.services3 .box .combo_btn .btn_1 .button__icons.is-white,
.services_page3 .box .combo_btn .btn_1 .button__icons.is-white,
.contact_form form .btn_1 .button__icons.is-white,
.thank-section .combo_btn .btn_1 .button__icons.is-white {
    border-color: #fff;
    color: #fff;
}

header .btn_1:hover .button__icons.is-white,
.banner .combo_btn .btn_1:hover .button__icons.is-white,
.pricing .pricing_btn .combo_btn .btn_1:hover .button__icons.is-white,
.services3 .box .combo_btn .btn_1:hover .button__icons.is-white,
.services_page3 .box .combo_btn .btn_1:hover .button__icons.is-white,
.contact_form form .btn_1:hover .button__icons.is-white,
.thank-section .combo_btn .btn_1:hover .button__icons.is-white {
    color: #000;
    border-color: #000;
}

header .btn_1 .button__bg,
.banner .combo_btn .btn_1 .button__bg,
.pricing .pricing_btn .combo_btn .btn_1 .button__bg,
.services3 .box .combo_btn .btn_1 .button__bg,
.services_page3 .box .combo_btn .btn_1 .button__bg,
.contact_form form .btn_1 .button__bg,
.thank-section .combo_btn .btn_1 .button__bg {
    background-color: #fff;
}


/* DRopdown */


/* header .menu ul li ul.dropdown {
    height: 0;
    overflow: hidden;
    transition: .3s linear;
}

header .menu ul li:hover ul.dropdown {
    margin-top: 20px;
    height: 280px;
}

header .menu ul li ul.dropdown li ul.sub_dropdown {
    height: 0;
    overflow: hidden;
    transition: .3s linear;
}

header .menu ul li ul.dropdown li:hover ul.sub_dropdown{
    margin-top: 20px;
    height: 190px;
} */


/* End Header */


/* Strat Banner */

.banner {
    height: 100vh;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #32868c, #85e9f0);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner .banner_video {
    width: 96%;
    height: 400px;
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.banner .banner_video img,
.banner .banner_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner h1 {
    color: #fff;
}

.banner h1 span {
    text-transform: uppercase;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-size: 80px;
    font-family: aghaFont-Bold;
}

.banner .combo_btn {
    justify-content: center;
    margin-top: 280px;
}


/* End Banner */


/* Start Section 2 */

.section2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section2 .sec2_before {
    width: 900px;
    height: 272px;
    position: absolute;
    bottom: -4px;
    left: 0;
    z-index: -1;
}

.section2 .sec2_before img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section2 .sec2_right p {
    height: 105px;
    line-height: 35px;
}

.section2 .sec2_right ul,
.section2 .sec2_right .combo_btn {
    margin-top: 50px;
}

.section2 .sec2_right ul li {
    font-weight: 600;
    line-height: 40px;
    padding-left: 25px;
    position: relative;
}

.section2 .sec2_right ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 600;
    color: #9af05b;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}


/* End Section 2 */

.slider-sec {
    background: url("../images/home/sec3_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right bottom;
    padding: 180px 0;
    position: relative;
    z-index: 1;
}

.slider-sec .line_heading {
    top: 50px;
}

.slider-sec .container {
    position: relative;
}

.slider-sec .scroll-text {
    position: absolute;
    top: 50%;
    transform: translate(100%, -50%);
    left: -70px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slider-sec .scroll-text .mouse {
    margin: 0 auto;
    display: block;
    border-radius: 25px;
    border: 3px solid #9af05b;
    height: 45px;
    width: 30px;
    position: relative;
}

.slider-sec .scroll-text .move {
    position: absolute;
    background-color: #9af05b;
    height: 10px;
    width: 3px;
    border-radius: 25px;
    left: 50%;
    transform: translateX(-50%);
    animation: move 2s linear infinite;
}

@keyframes move {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    50% {
        transform: translate(-50%, 20px);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 45px);
        opacity: 0;
    }
}

.slider-sec ul.slider-nav {
    position: relative;
}

.slider-sec ul.slider-nav::before {
    content: "";
    background: #ffffff2b;
    width: 4px;
    height: 100%;
    position: absolute;
    left: 11px;
    top: 0;
}

.slider-sec ul.slider-nav .slick-list.draggable {
    padding: 50px !important;
}

.slider-sec ul.slider-nav li {
    position: relative;
    padding: 15px 0;
}

.slider-sec ul.slider-nav li.slick-center::before {
    content: "";
    background: linear-gradient(0deg, transparent, #9af05b, transparent);
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -40px;
    z-index: 1;
}

.slider-sec ul.slider-nav li.slick-center::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid #9af05b;
    border-bottom: 10px solid transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    z-index: 1;
}

.slider-sec ul.slider-nav li.service-head a {
    font-size: 25px;
    font-weight: bold;
    display: block;
    color: #fff;
    transition: .25s all ease-in-out;
    font-weight: 500;
    letter-spacing: -.03em;
    margin: 0;
    opacity: .4;
}

.slider-sec ul.slider-nav li.slick-center a {
    font-size: 30px;
    transition: .25s all ease-in-out;
    opacity: 1;
}

.slider-sec .service-item__wrapper.twocol-row {
    height: 560px;
    overflow: hidden;
}

.slider-sec .service-item__wrapper .descrip-wrapper {
    /* display: flex; */
    align-items: center;
}

.slider-sec .service-item__wrapper .descrip-wrapper h3 {
    color: #fff;
    font-weight: bold;
}

.slider-sec .service-item__wrapper .descrip-wrapper h3 span {
    color: #9af05b;
    /* display: block; */
}

.slider-sec .service-item__wrapper .descrip-wrapper p {
    /* padding-left: 30px; */
    color: #fff;
    margin: 0;
}

.slider-sec .service-item__wrapper .img-wrapper {
    margin: 40px 0;
}

.slider-sec .service-item__wrapper ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-sec .service-item__wrapper ul li {
    text-align: center;
    color: #fff;
}

.slider-sec .service-item__wrapper ul li p {
    color: #f97f3c;
    font-size: 40px;
    font-weight: 200;
    margin: 0;
    margin-bottom: 10px;
}

.slider-sec .service-item__wrapper ul li p span.count {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
}

.section4 {
    height: 100vh;
    background-color: #333;
}


/* Start CTA */

.cta {
    padding: 110px 0;
    background: url("../images/home/cta.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
    z-index: 1;
}

.cta .cta_before {
    width: 840px;
    height: 690px;
    position: absolute;
    bottom: -233px;
    left: 50px;
    z-index: -1;
}

.cta .cta_before img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta h2 span {
    display: inline-block;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta h2 span::after {
    content: "";
    width: 340px;
    height: 101px;
    background: url("../images/home/cta_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    left: -43px;
    z-index: -1;
}

.cta2 .combo_btn {
    margin-top: 40px;
}


/* End CTA */

.section5 {
    padding: 200px 0 80px;
}

.section5 .sec5_top {
    position: relative;
    z-index: 1;
}

.section5 .line_heading {
    top: -50px;
}

.section5 .sec5_tabs {
    margin-top: 80px;
}

.section5 .sec5_tabs .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section5 .sec5_tabs .tabs li {
    width: 200px;
    height: 50px;
    background: transparent;
    border: 1px solid #000;
    color: #000;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
    transform: translateY(0px);
    transition: .2s linear;
}

.section5 .sec5_tabs .tabs li.current {
    color: #fff;
    background: linear-gradient(45deg, #85e9f0, #71cbd1);
    border: 1px solid #55b1b8;
    box-shadow: inset 0 0 2px 2px #fff;
    transform: translateY(-5px);
}

.section5 .sec5_tabs .tabs li:last-child {
    margin-right: 0;
}

.section5 .sec5_tabs .my-tabs .works_slider {
    margin-top: 50px;
}

.section5 .sec5_tabs .my-tabs {
    display: none;
}

.section5 .sec5_tabs .my-tabs.current {
    display: block;
}

.section5 .sec5_tabs .my-tabs ul li {
    margin: 0 25px;
}

.section5 .sec5_tabs .my-tabs ul .box {
    position: relative;
    z-index: 1;
    transition: .4s linear;
}

.section5 .sec5_tabs .my-tabs ul .box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section5 .sec5_tabs .my-tabs ul .box a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    transition: .4s linear;
}

.section5 .sec5_tabs .my-tabs ul .box a img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .6));
    transform: scale(0) rotate(-180deg);
    transition: .4s linear;
}

.section5 .sec5_tabs .my-tabs ul .box:hover a img {
    transform: scale(1) rotate(0deg);
}

.section5 .combo_btn {
    justify-content: center;
    margin-top: 50px;
}

.pricing {
    position: relative;
    z-index: 1;
    background: url("../images/home/pricing_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing .line_heading {
    top: 50px;
}

.pricing .pricing_top {
    text-align: center;
    color: #fff;
}

.pricing .pricing_content {
    margin-top: 20px;
}

.pricing .pricing_content .box {
    border: 1px solid #036363;
    background: #003e3e;
    border-radius: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing .pricing_content .slick-center .box {
    box-shadow: inset 0 0 5px 1px rgba(255, 255, 2555, .3);
}

.pricing .pricing_content .badge_box {
    border-radius: 25px 0 25px 25px;
}

.pricing .pricing_content .box .suggest_badge {
    padding: 0px 10px;
    background: linear-gradient(45deg, #85e9f0, #71cbd1);
    color: #fff;
    font-size: 14px;
    border-radius: 10px 10px 0 0px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: -29px;
    right: 0px;
    z-index: -1;
    margin: 0;
}

.pricing .box .box_head {
    padding: 20px;
}

.pricing .box .box_head ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing .box .box_head ul li h6 {
    margin: 0;
    color: #fff;
    text-align: left;
}

.pricing .box .box_head ul li p {
    margin: 0;
    display: block;
    color: #fff;
    text-align: end;
    line-height: 20px;
}

.pricing .box .box_head ul li p span {
    display: block;
    font-size: 12px;
    color: #909090;
}

.pricing .box .box_pricing {
    padding: 40px 0;
    background: url("../images/home/basic_pricing.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid #036363;
    border-bottom: 1px solid #036363;
}

.pricing .box .box_pricing p {
    margin: 0;
    font-size: 60px;
    font-weight: bold;
    font-family: aghaFont-SemiBold;
    line-height: 45px;
    color: #fff;
}

.pricing .box .box_pricing p span {
    display: block;
    font-size: 16px;
    font-family: 'Inter';
    font-weight: 200;
    letter-spacing: 3px;
    /* text-transform: uppercase; */
}

.pricing .box .box_body {
    padding: 30px 20px;
}

.pricing .box .box_body ul {
    height: 150px;
}

.pricing .box .box_body ul li {
    color: #fff;
}

.pricing .box .combo_btn {
    padding: 30px 20px;
    border-top: 1px solid #124c4c;
    border-bottom: 1px solid #124c4c;
    justify-content: center;
}

.pricing .box .combo_btn .btn_1 {
    color: #fff;
}

.pricing .box .combo_btn .btn_1 .button__icons.is-white {
    color: #fff;
    border-color: #fff;
}

.pricing .box .combo_btn .btn_1:hover .button__icons.is-white {
    color: #000;
    border-color: #fff;
}

.pricing .box .combo_btn .btn_1 .button__bg {
    background-color: #fff;
}

.pricing .box .box_footer {
    padding: 20px 0;
}

.pricing .box .box_footer p {
    margin: 0;
    font-size: 12px;
    color: #909090;
}

.pricing .box .box_footer p a:hover {
    color: #55b1b8;
}

.pricing .slick-list.draggable {
    padding: 30px 0 0 0 !important;
}

.pricing .slick-slide {
    margin: 0 10px;
    filter: opacity(0.4);
    transition: .4s linear;
}

.pricing .slick-slide.slick-center {
    filter: opacity(1);
}

.pricing .pricing_btn .combo_btn {
    justify-content: center;
    margin-top: 60px;
}

.pricing .tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.pricing .tabs li {
    width: 200px;
    height: 50px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
    transform: translateY(0px);
    transition: .2s linear;
}

.pricing .tabs li.current {
    color: #fff;
    background: linear-gradient(45deg, #85e9f0, #71cbd1);
    border: 1px solid #55b1b8;
    box-shadow: inset 0 0 2px 2px #fff;
    transform: translateY(-5px);
}

.pricing .tabs li:last-child {
    margin-right: 0;
}

.pricing .my-tabs .works_slider {
    margin-top: 50px;
}

.pricing .my-tabs {
    display: none;
}

.pricing .my-tabs.current {
    display: block;
}

.why_choose .why_choose_top {
    position: relative;
    z-index: 1;
}

.why_choose .why_choose_top .line_heading {
    top: -50px;
}

.why_choose .why_choose_top h2 img {
    width: 50px;
    transform: translateY(-10px);
}

.why_choose .why_choose_content {
    margin-top: 60px;
}

.why_choose .why_choose_content a {
    display: block;
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.why_choose .why_choose_content a .img_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why_choose .why_choose_content a p {
    color: #fff;
    font-weight: 900;
    font-size: 40px;
    text-transform: uppercase;
    bottom: 20px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    line-height: 45px;
}

.why_choose .why_choose_content a .consultancy_heading,
.why_choose .why_choose_content a .consultancy_avatar,
.why_choose .why_choose_content a .ideation_circle,
.why_choose .why_choose_content a .ideation_icon,
.why_choose .why_choose_content a .ideation_avatar,
.why_choose .why_choose_content a .technical_inner,
.why_choose .why_choose_content a .marketing_avatars,
.why_choose .why_choose_content a .marketing_flight,
.why_choose .why_choose_content a .marketing_heading,
.why_choose .why_choose_content a .development_heading,
.why_choose .why_choose_content a .development_pc,
.why_choose .why_choose_content a .creativity_heading,
.why_choose .why_choose_content a .strategy_triangle,
.why_choose .why_choose_content a .strategy_hands,
.why_choose .why_choose_content a .design_heading,
.why_choose .why_choose_content a p {
    object-fit: contain;
    position: absolute;
    transition: .4s linear;
    /* z-index: -1; */
}

.why_choose .why_choose_content a .consultancy_heading {
    width: 100%;
    height: 200px;
    top: 50px;
    left: 0;
}

.why_choose .why_choose_content a:hover .consultancy_heading {
    animation: slide_up 2s linear infinite;
}

@keyframes slide_up {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.why_choose .why_choose_content a .consultancy_avatar {
    width: 360px;
    height: 345px;
    right: 0;
    bottom: 0;
}

.why_choose .why_choose_content a:hover .consultancy_avatar {
    animation: scale 2s linear infinite;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.why_choose .why_choose_content a .ideation_circle {
    width: 300px;
    height: 270px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%) rotate(0);
}

.why_choose .why_choose_content a:hover .ideation_circle {
    animation: circle 2s linear infinite;
}

@keyframes circle {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.why_choose .why_choose_content a .ideation_icon {
    width: 320px;
    height: 155px;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a .ideation_avatar {
    width: 300px;
    height: 255px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(1);
}

.why_choose .why_choose_content a:hover .ideation_avatar {
    animation: scale-avatar 2s linear infinite;
}

@keyframes scale-avatar {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.why_choose .why_choose_content a.img_2 p {
    color: #6865d8;
}

.why_choose .why_choose_content a.img_3 p {
    left: unset;
    transform: translateX(0);
    right: 20px;
    bottom: 0;
}

.why_choose .why_choose_content a .marketing_avatars {
    width: 100%;
    bottom: 40px;
    left: 0;
    z-index: 2;
}

.why_choose .why_choose_content a:hover .marketing_avatars {
    animation: left_right 2s linear infinite;
}

@keyframes left_right {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.why_choose .why_choose_content a .marketing_flight {
    width: 150px;
    top: 30px;
    left: 57%;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a:hover .marketing_flight {
    animation: slide_up_2 2s linear infinite;
}

@keyframes slide_up_2 {
    0% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-20px);
    }

    100% {
        transform: translateX(-50%) translateY(0px);
    }
}

.why_choose .why_choose_content a .marketing_heading {
    width: 248px;
    bottom: 40px;
    right: 20px;
}

.why_choose .why_choose_content a:hover .marketing_heading{
    animation: slide_up_3 2s linear infinite;
}

@keyframes slide_up_3 {
    0% {
filter: opacity(0);
    }

    50% {
        filter: opacity(1);
    }

    100% {
        filter: opacity(0);
    }
}

.why_choose .why_choose_content a .technical_inner {
    width: 330px;
    height: 337px;
    top: -1px;
    left: 0;
}

.why_choose .why_choose_content a:hover .technical_inner {
    animation: scale 2s linear infinite;
}

.why_choose .why_choose_content a.img_5:hover .img_cover {
    animation: scale 2s linear infinite;
}

.why_choose .why_choose_content .img_5 p {
    color: #24dbe8;
    text-shadow: 0 5px #fff;
}

.why_choose .why_choose_content a.img_6 {
    height: 290px;
}

.why_choose .why_choose_content a .development_heading {
    width: 310px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a:hover .development_heading{
    animation: slide_up_3 2s linear infinite;
}

.why_choose .why_choose_content a .development_pc {
    width: 286px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a:hover .development_pc{
    animation: scale-avatar 2s linear infinite;
}

.why_choose .why_choose_content a.img_7 {
    height: 550px;
}

.why_choose .why_choose_content a.img_7:hover .img_cover{
    animation: scale 2s linear infinite;
}

.why_choose .why_choose_content a .creativity_heading {
    width: 90%;
    left: 50%;
    bottom: 65px;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a:hover .creativity_heading {
    animation: slide_up_3 2s linear infinite;
}

.why_choose .why_choose_content a .strategy_triangle {
    width: 100px;
    display: block;
}

.why_choose .why_choose_content a .strategy_triangle.top {
    left: -40px;
    top: 50px;
}

.why_choose .why_choose_content a .strategy_triangle.bottom {
    left: 20px;
    bottom: -40px;
}

.why_choose .why_choose_content a:hover .strategy_triangle{
    animation: rotated 3s linear infinite;
}

@keyframes rotated {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.why_choose .why_choose_content a .strategy_hands {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1.3);
}

.why_choose .why_choose_content a:hover .strategy_hands{
    animation: scale_out 2s linear infinite;
}

@keyframes scale_out {
    0%{
        transform: translate(-50%,-50%) scale(1.3);
    }
    50%{
        transform: translate(-50%,-50%) scale(1.1);
    }
    100%{
        transform: translate(-50%,-50%) scale(1.3);
    }
}

.why_choose .why_choose_content a.img_9:hover .img_cover{
    animation: scale 2s linear infinite;
}

.why_choose .why_choose_content a .design_heading {
    width: 100%;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.why_choose .why_choose_content a:hover .design_heading {
    animation: slide_up_3 2s linear infinite;
}


.cta2 {
    padding: 110px 0;
    background: url("../images/home/cta2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center left;
    position: relative;
    z-index: 1;
}

.cta2 .cta_before {
    width: 660px;
    height: 548px;
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: -1;
}

.cta2 .cta_before img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta2 h2 span {
    display: inline-block;
    color: #f97f3c;
    position: relative;
    z-index: 1;
}

.cta2 h2 span::after {
    content: "";
    width: 340px;
    height: 101px;
    background: url("../images/home/cta_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -3px;
    left: -43px;
    z-index: -1;
}

.cta2 .combo_btn {
    margin-top: 40px;
}

.testimonial {
    background: url("../images/home/testimonial_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.testimonial::before {
    content: "";
    width: 52px;
    height: 146px;
    background: url("../images/home/testi_before.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 200px;
    z-index: -1;
}

.testimonial::after {
    content: "";
    width: 414px;
    height: 287px;
    background: url("../images/home/testi_after.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.testimonial .testi_top {
    position: relative;
    z-index: 1;
}

.testimonial .testi_top .line_heading {
    top: -50px;
}

.testimonial .testimonial_slider_for .slick-list.draggable {
    padding: 0 0 100px !important;
}

.testimonial .testimonial_slider_nav .slick-list.draggable {
    padding: 0 !important;
}

.testimonial .testi_content {
    margin-top: 60px;
}

.testimonial .box {
    padding: 50px;
    background: #f8f8f8;
    border-radius: 25px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.testimonial .box .box_arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 70px 70px 0 0;
    border-color: #f8f8f8 transparent transparent transparent;
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial .box .box_icon {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-right: 50px;
}

.testimonial .box .box_icon img {
    width: 150px;
}

.testimonial .box_content {
    padding-left: 50px;
    border-left: 1px solid #000;
}

.testimonial .box_content p {
    margin: 0;
    font-size: 20px;
}

.testimonial .testimonial_slider_nav .avatar_box {
    text-align: center;
    transform: scale(0.7);
    filter: opacity(.3) grayscale(1);
    transition: .4s linear;
}

.testimonial .testimonial_slider_nav .slick-center .avatar_box {
    transform: scale(1) !important;
    filter: opacity(1) grayscale(0);
}

.testimonial .testimonial_slider_nav .avatar_box .avatar_img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.testimonial .testimonial_slider_nav .avatar_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial .testimonial_slider_nav .avatar_box .avatar_intro {
    margin-top: 10px;
}

.testimonial .testimonial_slider_nav .avatar_box .avatar_intro h6 span {
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.faqs {
    background: #022020;
}

.faqs .faqs_top {
    text-align: center;
    color: #fff;
}

.faqs .faqs_content {
    margin-top: 60px;
}

.faqs .box {
    background: #032424;
    border: 1px solid #464646;
    border-radius: 20px;
    transition: .4s linear;
    cursor: pointer;
    margin-bottom: 20px;
}

.faqs .box h6 {
    color: #fff;
    margin: 0;
    padding: 0;
    padding: 20px;
    border-bottom: 1px solid transparent;
    transition: .2s linear;
}

.faqs .box:hover h6,
.faqs .open_box h6 {
    color: #9af05b;
    border-bottom: 1px solid #464646;
}

.faqs .box p {
    color: #fff;
    font-size: 14px;
    font-weight: 200;
    height: 0px;
    margin: 0 20px;
    transition: .4s linear;
}

.faqs .box:hover p,
.faqs .open_box p {
    margin: 20px;
}

.faqs .box:hover .para_1 {
    height: 84px;
}

.faqs .box:hover .para_2 {
    height: 112px;
}

.faqs .box:hover .para_3 {
    height: 85px;
}

.faqs .box .para_4 {
    height: 84px;
}

.faqs .box:hover .para_5 {
    height: 85px;
}

.faqs .box:hover .para_6 {
    height: 85px;
}

.faqs .box:hover .para_7 {
    height: 57px;
}

.ft_form {
    background: url("../images/home/ft_form_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ft_form h2 {
    font-size: 90px;
}

.ft_form form {
    margin-top: 50px;
    position: relative;
}

.ft_form form input {
    width: 100%;
    height: 80px;
    background: transparent;
    border: none;
    border-top: 1px solid #997335;
    border-bottom: 1px solid #997335;
    color: #000;
    outline: none;
    font-size: 20px;
}

.ft_form form input:focus {
    box-shadow: none;
}

.ft_form form input::placeholder {
    color: #000;
}

.ft_form form button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    /* font-size: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.ft_form form button::before {
    content: "";
    width: 125px;
    height: 125px;
    border: 1px solid #997335;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: .2s linear;
}

.ft_form form button img {
    filter: invert(1);
}

.ft_form .step {
    display: none;
}

.ft_form .btn_1:hover {
    color: #fff;
}

.ft_form .btn_1 .icon-small {
    width: 30px;
    height: 30px;
}

.ft_form .btn_1 .button__texts {
    margin: 0;
    font-size: 16px;
}

.ft_form form .social_media_links {
    position: absolute;
    bottom: 0;
    right: 0;
}

.ft_form form .social_media_links h5 {
    font-weight: bold;
}

.ft_form form .social_media_links ul {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.ft_form form .social_media_links ul li {
    margin-left: 20px;
}

.ft_form form .social_media_links ul li:nth-child(1) {
    margin-left: 0;
}

.ft_form form .social_media_links ul li a {
    display: inline-block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    transform: translateY(0);
    transition: .2s linear;
}

.ft_form form .social_media_links ul li a:hover {
    transform: translateY(-5px);
}

.before_footer {
    background: linear-gradient(180deg, #0f0f0f, rgb(36 36 36));
}

.before_footer {
    padding: 80px 0 10px;
}

.before_footer .bf_logo {
    width: 200px;
}

.before_footer .bf_left p {
    color: #fff;
    font-size: 20px;
}

.before_footer .bf_menu h6 {
    color: #fff;
}

.before_footer .bf_menu ul {
    margin-top: 40px;
}

.before_footer .bf_menu ul li {
    margin-bottom: 10px;
}

.before_footer .bf_menu ul li a {
    display: inline-block;
    color: #fff;
    position: relative;
    transition: .3s linear;
}

.before_footer .bf_menu ul li a:hover {
    color: #55b1b8;
}

.before_footer .line_heading {
    position: unset;
    margin: 10px 0;
}

.before_footer .footer {
    padding-top: 30px;
}

.before_footer .footer p {
    margin: 0;
    color: #fff;
}

.before_footer .footer p .ft_favicon {
    width: 25px;
}

.before_footer .footer p a {
    color: #55b1b8;
    display: inline-block;
}

.before_footer .footer .payment_method {
    margin: 0 0 0 auto;
    display: block;
}

.services2 {
    background: url("../images/services/sec2_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    z-index: 1;
}

.services2 .sec2_after {
    width: 450px;
    position: absolute;
    bottom: 0;
    right: 300px;
    z-index: -1;
}

.services2 .sec2_left h2 {
    font-size: 90px;
    color: #333333;
    font-weight: 900;
    line-height: 90px;
}

.services2 .sec2_left h2 span {
    display: block;
}

.services2 .sec2_left h2 span~span {
    text-align: end;
}

.services2 .sec2_left h2 span~span~span {
    text-align: left;
}

.services2 .sec2_left p {
    height: 85px;
}

.services2 .sec2_left h2 .first_para {
    background: linear-gradient(90deg, rgb(23 60 49) 10%, rgb(185 113 15) 30%, rgb(129 98 97) 30%, rgb(185 113 15) 30%, rgb(27 77 49) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services2 .sec2_left ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.services2 .sec2_left ul li {
    width: 33.3333%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.services2 .sec2_left ul li::before {
    content: "";
    width: 2px;
    height: 60px;
    background-color: #d6d6d6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
}

.services2 .sec2_left ul li:last-child::before {
    display: none;
}

.services2 .sec2_left ul li p {
    font-size: 50px;
    color: #55b1b8;
    font-weight: 100;
    text-align: left;
    height: unset !important;
}

.services2 .sec2_left ul li p span {
    font-size: 60px;
    font-weight: bold;
    color: #000;
    transition: .4s linear;
}

.services2 .sec2_left ul li p~span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #666666;
    font-weight: 500;
    margin-top: 10px;
}

.services3 .box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services3 .box .box_img {
    width: 50%;
    height: 580px;
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.services3 .box .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s linear;
    transform: scale(1);
}

.services3 .box:hover .box_img img {
    transform: scale(1.1);
}

.services3 .box_left .box_img {
    left: 0;
}

.services3 .box .box_content {
    height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services3 .box h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.services3 .box h2::before {
    content: "*";
    font-size: 300px;
    position: absolute;
    top: -120px;
    left: -85px;
    z-index: -1;
}

.services3 .box p {
    height: 85px;
    color: #fff;
    margin: 30px 0;
}

.services3 .box1 {
    background: #2d2a27;
}

.services3 .box1 h2::before {
    color: #463323;
}

.services3 .box2 {
    background: #052626;
}

.services3 .box2 h2::before {
    color: #063c3c;
}

.services3 .box3 {
    background: #0f033b;
}

.services3 .box3 h2::before {
    color: #19065e;
}

.services3 .box4 {
    background: #4f2f1c;
}

.services3 .box4 h2::before {
    color: #6d3c26;
}

.services3 .box5 {
    background: #330845;
}

.services3 .box5 h2::before {
    color: #431b65;
}

.banner_inner_services {
    padding: 0;
    align-items: end;
}

.banner_inner_services .banner_content {
    padding: 200px 0;
}

.banner_inner_services h6 {
    font-size: 16px;
    text-transform: uppercase;
    color: #55b1b8;
    display: flex;
    align-items: end;
    margin-bottom: 30px;
}

.banner_inner_services h6 img {
    width: 25px;
    margin-right: 10px;
}

.banner_inner_services p {
    color: #fff;
}

.banner_inner_services .combo_btn {
    margin-top: 50px;
    justify-content: flex-start;
}

.banner_inner_services .banner_right img {
    width: 100%;
}

.combo_package_sec2 .pricing_content {
    margin-top: 0;
}

.combo_package_sec2 .slick-list.draggable {
    padding-top: 20px !important;
}


/* .banner_inner_services .banner_right {
    width: 650px;
    position: absolute;
    right: 295px;
    bottom: 0;
}

.banner_inner_services .banner_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
} */


/* .mobile_app_banner .banner_right {
    width: 700px;
    right: 200px;
}

.branding_banner .banner_right {
    width: 780px;
    right: 240px;
} */

.inner_services2 {
    background: url("../images/services/sec2_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    position: relative;
    z-index: 1;
}

.inner_services2 .sec2_left h2 span {
    position: relative;
    z-index: 1;
}

.inner_services2 .sec2_left h2 span::after {
    content: "";
    width: 43px;
    height: 43px;
    background: url("../images/social-media-marketing/heart-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -40px;
    bottom: 5px;
    z-index: -1;
}

.inner_services2 .sec2_left p {
    height: 196px;
}

.inner_services2 .sec2_left ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.inner_services2 .sec2_left ul li {
    width: 33.3333%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.inner_services2 .sec2_left ul li::before {
    content: "";
    width: 2px;
    height: 60px;
    background-color: #d6d6d6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: -1;
}

.inner_services2 .sec2_left ul li:last-child::before {
    display: none;
}

.inner_services2 .sec2_left ul li p {
    font-size: 50px;
    color: #55b1b8;
    font-weight: 100;
    text-align: left;
    height: unset !important;
}

.inner_services2 .sec2_left ul li p span {
    font-size: 60px;
    font-weight: bold;
    color: #000;
    transition: .4s linear;
}

.inner_services2 .sec2_left ul li p~span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #666666;
    font-weight: 500;
    margin-top: 10px;
}

.inner_services2 .sec2_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inner_services3 {
    background: #032929;
    position: relative;
    z-index: 1;
}

.inner_services3 .line_heading {
    top: 50px;
}

.inner_services3 .sec3_top {
    color: #fff;
    text-align: center;
}

.inner_services3 .sec3_content {
    margin-top: 60px;
}

.inner_services3 .box {
    border: 1px solid #464646;
    background: #032626;
    border-radius: 25px;
    padding: 40px;
    color: #fff;
    transform: scale(1);
    box-shadow: inset 0 0 5px 1px transparent;
    transition: .2s linear;
    cursor: pointer;
}

.inner_services3 .box:hover {
    border: 1px solid #036363;
    transform: scale(1.065);
    box-shadow: inset 0 0 5px 1px rgba(255, 255, 2555, .3);
}

.inner_services3 .box img {
    width: 90px;
    margin-bottom: 20px;
}

.inner_services3 .box p {
    height: 196px;
    margin-bottom: 0;
}

.inner_services4 {
    background: linear-gradient(180deg, #fff3e7 70%, #ffffff00);
    position: relative;
    z-index: 1;
}

.inner_services4 .sec4_before {
    position: absolute;
    top: 0;
    z-index: -1;
}

.inner_services4 .sec4_left {
    padding-top: 100px;
}

.inner_services4 .sec4_left h2 {
    font-size: 80px;
    font-weight: 900;
}

.inner_services4 .sec4_right .box {
    background: #fff;
    padding: 20px;
    width: 90%;
    border-radius: 18px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-bottom: 30px;
}

.inner_services4 .sec4_right .box:last-child {
    margin-bottom: 0;
}

.inner_services4 .sec4_right .box:nth-child(2),
.inner_services4 .sec4_right .box:nth-child(4) {
    transform: translateX(-75px);
}

.inner_services4 .sec4_right .box .box_img {
    width: 20%;
    height: 120px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_services4 .sec4_right .box .box_img img {
    width: 45px;
}

.inner_services4 .sec4_right .box .box_content {
    width: 80%;
    margin-left: 20px;
}

.inner_services4 .sec4_right .box .box_content p {
    margin: 0;
    padding: 0;
    height: 60px;
}

.inner_services4 .sec4_right .box_1 .box_img {
    background: #b6c5ff;
}

.inner_services4 .sec4_right .box_2 .box_img {
    background: #c9ec97;
}

.inner_services4 .sec4_right .box_3 .box_img {
    background: #f6cebe;
}

.inner_services4 .sec4_right .box_4 .box_img {
    background: #d3fbff;
}

.inner_services5 {
    background: #001818;
    text-align: center;
}

.inner_services5 h2 {
    color: #fff;
}

.inner_services5 p {
    color: #fff;
}

.inner_services5 ul {
    margin-top: 80px;
}

.inner_services6 {
    position: relative;
    background: #151515;
    border-bottom: 1px solid #272727;
    padding: 40px 0;
}

.inner_services6 .line_heading {
    top: 15%;
}

.services_page2 .sec2_after {
    width: 530px;
    right: 0;
    bottom: -20px;
}

.services_page3 .box {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.services_page3 .box .box_img {
    overflow: hidden;
}

.services_page3 .box .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s linear;
    transform: scale(1);
}

.services_page3 .box:hover .box_img img {
    transform: scale(1.1);
}

.services_page3 .box .box_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 160px;
}

.services_page3 .box_left .box_content {
    padding-right: 0;
    padding-left: 160px;
}

.services_page3 .box h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}

.services_page3 .box h2::before {
    content: "*";
    font-size: 300px;
    position: absolute;
    top: -120px;
    left: -85px;
    z-index: -1;
}

.services_page3 .box p {
    height: 85px;
    color: #fff;
    margin: 30px 0;
}

.services_page3 .box1 {
    background: url("../images/mobile-app-development/box1_bg.png");
    background-size: cover;
    background-position: center;
}

.services_page3 .box1 h2::before {
    color: #29434f;
}

.services_page3 .box2 {
    background: url("../images/mobile-app-development/box2_bg.png");
    background-size: cover;
    background-position: center;
}

.services_page3 .box2 h2::before {
    color: #1f2931;
}

.services_page3 .box3 {
    background: url("../images/mobile-app-development/box3_bg.png");
    background-size: cover;
    background-position: center;
}

.services_page3 .box3 h2::before {
    color: #1d584e;
}

.services_page3 .box4 {
    background: url("../images/mobile-app-development/box4_bg.png");
    background-size: cover;
    background-position: center;
}

.services_page3 .box4 h2::before {
    color: #172912;
}

.animation_banner .banner_right {
    width: 650px;
    right: 295px;
}

.services_animation .box1 {
    background: url("../images/animation/box1_bg.png");
    background-size: cover;
    background-position: center;
}

.services_animation .box1 h2::before {
    color: #3d1d3d;
}

.services_animation .box2 {
    background: url("../images/animation/box2_bg.png");
    background-size: cover;
    background-position: center;
}

.services_animation .box2 h2::before {
    color: #1e2831;
}

.services_animation .box3 {
    background: url("../images/animation/box3_bg.png");
    background-size: cover;
    background-position: center;
}

.services_animation .box3 h2::before {
    color: #21368a;
}

.services_animation .box4 {
    background: url("../images/animation/box4_bg.png");
    background-size: cover;
    background-position: center;
}

.services_animation .box4 h2::before {
    color: #4d4d4d;
}

.services_branding .box1 {
    background: url("../images/branding/box1_bg.png");
    background-size: cover;
    background-position: center;
}

.services_branding .box1 h2::before {
    color: #3b3b3e;
}

.services_branding .box2 {
    background: url("../images/branding/box2_bg.png");
    background-size: cover;
    background-position: center;
}

.services_branding .box2 h2::before {
    color: #373521;
}

.services_branding .box3 {
    background: url("../images/branding/box3_bg.png");
    background-size: cover;
    background-position: center;
}

.services_branding .box3 h2::before {
    color: #275337;
}

.services_branding .box4 {
    background: url("../images/branding/box4_bg.png");
    background-size: cover;
    background-position: center;
}

.services_branding .box4 h2::before {
    color: #152a12;
}

.pricing_banner h1 span {
    display: block;
}

.pricing_banner p {
    color: #fff;
}

.contact_form {
    background: #001818;
    position: relative;
    z-index: 1;
}

.contact_form .line_heading {
    top: 50px;
}

.contact_form .contact_us_left {}

.contact_form .contact_us_left h2 {
    color: #fff;
}

.contact_form .contact_us_left p {
    color: #fff;
}

.contact_form .contact_us_right h4 {
    color: #fff;
    font-weight: bold;
}

.contact_form .contact_us_right h4 span {
    display: block;
}

.contact_form .contact_us_right form {
    margin-top: 40px;
}

.contact_form .contact_us_right form input,
.contact_form .contact_us_right form select,
.contact_form .contact_us_right form textarea {
    width: 100%;
    color: #fff;
    padding: 12px 10px 12px 25px;
    border: 1px solid #fff;
    border-radius: 25px;
    background: transparent;
    margin-bottom: 20px;
    outline: none;
}

.contact_form .contact_us_right form input:focus,
.contact_form .contact_us_right form select:focus,
.contact_form .contact_us_right form textarea:focus {
    border: 1px solid #55b1b8;
}

.contact_form .contact_us_right form input::placeholder,
.contact_form .contact_us_right form select::placeholder,
.contact_form .contact_us_right form textarea::placeholder {
    color: #fff;
}

.contact_form .contact_us_right form select {
    background: #001818;
}

.contact_form .contact_us_right form textarea {
    height: 120px;
    resize: unset;
}

.contact_form .contact_us_right form .control_form {
    display: flex;
    align-items: center;
}

.contact_form .contact_us_right form .control_form input[type="checkbox"] {
    margin: 0;
    padding: 0;
    width: 15px;
    height: 15px;
}

.contact_form .contact_us_right form .control_form p {
    margin: 0;
    margin-left: 20px;
    color: #fff;
    font-size: 12px;
}

.contact_form .contact_us_right form .btn_1 {
    margin-top: 30px;
}

.pricing .pricing_content .custom_box {
    padding: 80px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing .pricing_content .custom_box::after {
    content: "";
    width: 421px;
    height: 365px;
    background: url("../images/web-maintenance/pricing_after.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.pricing .pricing_content .custom_box .custom_box_before {
    width: 220px;
    position: absolute;
    top: -25px;
}

.pricing .pricing_content .custom_box h4 {
    color: #fff;
    font-weight: bold;
}

.pricing .pricing_content .custom_box p {
    color: #fff;
    margin: 30px 0px;
}

.pricing .pricing_content .custom_box .combo_btn {
    justify-content: flex-start;
    padding: 30px 0;
}

.pricing .pricing_content .custom_box .box_footer p {
    margin: 0;
}

.pricing .pricing_content .custom_box .box_right img {
    width: 100%;
}


/* Start Policies */

.polices_banner .contact_inner h1 {
    font-family: aghaFont-Bold;
    font-size: 140px;
}
content py-5 ul li {
    line-height: 2;
}

/* End Policies */