/*------------------------------------------------------------------------------------------------------
* Project    :
* Author     :  Nikunj Galathiya | +91 971267052
* Version    :  1.0
*-------------------------------------------------------------------------------------------------------
NOTE: This is the main stylesheet of the template, This file contains the styling for the actual Template
------------------------------------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------------------------------------
1. Fonts
-------------------------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/*-------------------------------------------------------------------------------------------------------
Root Code Variables
-------------------------------------------------------------------------------------------------------*/

:root {
    /* Main color */
    --primary-color: #e47667;
    /* Text and background color */
    --secondary-color: #202020;
    --header-bg: #292a2f;
    /* White color */
    --white-color: #ffffff;
    /* black color */
    --black-color: #000000;
    /* #ffffff in decimal RGBA */
    --rgb-white-09: rgba(255, 255, 255, 0.09);
    --rgb-white-08: rgba(255, 255, 255, 0.08);
    --rgb-white-07: rgba(255, 255, 255, 0.07);
    --rgb-white-06: rgba(255, 255, 255, 0.06);
    --rgb-white-05: rgba(255, 255, 255, 0.05);
    --rgb-white-04: rgba(255, 255, 255, 0.04);
    --rgb-white-03: rgba(255, 255, 255, 0.03);
    --rgb-white-02: rgba(255, 255, 255, 0.02);
    --rgb-white-01: rgba(255, 255, 255, 0.01);
    /* #000000 in decimal RGBA */
    --rgb-black-09: rgba(0, 0, 0, 0.09);
    --rgb-black-08: rgba(0, 0, 0, 0.08);
    --rgb-black-07: rgba(0, 0, 0, 0.07);
    --rgb-black-06: rgba(0, 0, 0, 0.06);
    --rgb-black-05: rgba(0, 0, 0, 0.05);
    --rgb-black-04: rgba(0, 0, 0, 0.04);
    --rgb-black-03: rgba(0, 0, 0, 0.03);
    --rgb-black-02: rgba(0, 0, 0, 0.02);
    --rgb-black-01: rgba(0, 0, 0, 0.01);
    /* Fonts Variable */
    --body-font: 'Open Sans', sans-serif;
    --title-font: 'Open Sans', sans-serif;

    --text-color: #74757a;
    /* body-bg-color */
    --body-bg-color: #F4FAFD;
    /* transition */
    --transition: all 300ms ease;
    /* box-shadow */
    --box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    /* Extra color */
    --color-extra-one: #CCCCCC;
}


/*-------------------------------------------------------------------------------------------------------
2. Reset
-------------------------------------------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    font-size: 100%;
    line-height: inherit;
}


/*-------------------------------------------------------------------------------------------------------
3. Global Settings
-------------------------------------------------------------------------------------------------------*/

body {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: 0.5px;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
}

a {
    color: var(--primary-color);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

p {
    margin: 0;
}

button {
    outline: none !important;
    cursor: pointer;
}

button:focus,
button:active {
    outline: none;
}

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
    text-decoration: none;
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    margin: 0;
    background: none;
    line-height: initial;
    font-family: var(--title-font);
}

h1 {
    font-size: 43px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 22px;
    font-style: normal;
font-weight: 600;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

input,
select,
button {
    font-family: var(--body-font);
}

textarea {
    overflow: hidden;
    resize: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

iframe {
    border: none !important;
    display: block;
    width: 100%;
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}

section {
    position: relative;
}

main {
    position: relative;
    width: 100%;
    display: block;
}


.button-style-one {
    display: inline-block;
    padding: 7px 10px 7px 20px;
    gap: 10px;
    position: relative;
    text-decoration: none;
    border-radius: 15px;
    color: var(--primary-color);
    font-size: 15px;
    font-family: var(--title-font-family);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: 0.5s;
    border: 1px solid var(--primary-color);
}

.button-style-one:hover {
    color: var(--black-color);
    /* transform: scale(1.01); */
    background: var(--primary-color);
}

.banner-content .button-style-one {
    background-color: var(--primary-color);
    color: var(--black-color);
    padding: 10px 200px;
    font-weight: 700;
}

.banner-content h1 span {
    font-style: italic;
    font-weight: 600;
}

.banner-content .opacity_06 {
    opacity: 0.8 !important;
    font-size: 18px;
    font-weight: 300;
}

/*-------------------------------------------------
>>> Helper Class
-------------------------------------------------*/
/* # color */
.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.white-color {
    color: var(--white-color);
}

.black-color {
    color: var(--black-color);
}


.m-0 {
    margin: 0px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-35 {
    margin: 35px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-45 {
    margin: 45px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-55 {
    margin: 55px !important;
}

.m-60 {
    margin: 60px !important;
}

.m-70 {
    margin: 70px !important;
}

.m-80 {
    margin: 80px !important;
}

.m-90 {
    margin: 90px !important;
}

.m-100 {
    margin: 100px !important;
}

.m-110 {
    margin: 110px !important;
}

.m-120 {
    margin: 120px !important;
}

.m-130 {
    margin: 130px !important;
}

.m-140 {
    margin: 140px !important;
}

.m-150 {
    margin: 150px !important;
}

/*margin top*/

.mt-0 {
    margin-top: 0px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-130 {
    margin-top: 130px !important;
}

.mt-140 {
    margin-top: 140px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

/*margin bottom*/

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.mb-130 {
    margin-bottom: 130px !important;
}

.mb-140 {
    margin-bottom: 140px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

/*margin left*/

.ml-0 {
    margin-left: 0px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.ml-25 {
    margin-left: 25px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.ml-35 {
    margin-left: 35px !important;
}

.ml-40 {
    margin-left: 40px !important;
}

.ml-45 {
    margin-left: 45px !important;
}

.ml-50 {
    margin-left: 50px !important;
}

.ml-55 {
    margin-left: 55px !important;
}

.ml-60 {
    margin-left: 60px !important;
}

.ml-70 {
    margin-left: 70px !important;
}

.ml-80 {
    margin-left: 80px !important;
}

.ml-90 {
    margin-left: 90px !important;
}

.ml-100 {
    margin-left: 100px !important;
}

.ml-110 {
    margin-left: 110px !important;
}

.ml-120 {
    margin-left: 120px !important;
}

.ml-130 {
    margin-left: 130px !important;
}

.ml-140 {
    margin-left: 140px !important;
}

.ml-150 {
    margin-left: 150px !important;
}

/*margin right*/

.mr-0 {
    margin-right: 0px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mr-25 {
    margin-right: 25px !important;
}

.mr-30 {
    margin-right: 30px !important;
}

.mr-35 {
    margin-right: 35px !important;
}

.mr-40 {
    margin-right: 40px !important;
}

.mr-45 {
    margin-right: 45px !important;
}

.mr-50 {
    margin-right: 50px !important;
}

.mr-55 {
    margin-right: 55px !important;
}

.mr-60 {
    margin-right: 60px !important;
}

.mr-70 {
    margin-right: 70px !important;
}

.mr-80 {
    margin-right: 80px !important;
}

.mr-90 {
    margin-right: 90px !important;
}

.mr-100 {
    margin-right: 100px !important;
}

.mr-110 {
    margin-right: 110px !important;
}

.mr-120 {
    margin-right: 120px !important;
}

.mr-130 {
    margin-right: 130px !important;
}

.mr-140 {
    margin-right: 140px !important;
}

.mr-150 {
    margin-right: 150px !important;
}

/*margin top bottom*/

.mtb-0 {
    margin-top: 00px !important;
    margin-bottom: 00px !important;
}

.mtb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mtb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mtb-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mtb-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mtb-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.mtb-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.mtb-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.mtb-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.mtb-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.mtb-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.mtb-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.mtb-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.mtb-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}

.mtb-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.mtb-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
}

.mtb-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}

.mtb-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
}

.mtb-140 {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
}

.mtb-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}

/*margin left right*/

.mlr-0 {
    margin-left: 00px !important;
    margin-right: 00px !important;
}

.mlr-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mlr-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mlr-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mlr-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mlr-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.mlr-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}

.mlr-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.mlr-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}

.mlr-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.mlr-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}

.mlr-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}

.mlr-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.mlr-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
}

.mlr-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
}

.mlr-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

.mlr-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
}

.mlr-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
}

.mlr-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
}

.mlr-140 {
    margin-left: 140px !important;
    margin-right: 140px !important;
}

.mlr-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
}

/*==========================================
    :: Padding
==========================================*/

.p-0 {
    padding: 0px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-45 {
    padding: 45px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-55 {
    padding: 55px !important;
}

.p-60 {
    padding: 60px !important;
}

.p-70 {
    padding: 70px !important;
}

.p-80 {
    padding: 80px !important;
}

.p-90 {
    padding: 90px !important;
}

.p-100 {
    padding: 100px !important;
}

.p-110 {
    padding: 110px !important;
}

.p-120 {
    padding: 120px !important;
}

.p-130 {
    padding: 130px !important;
}

.p-140 {
    padding: 140px !important;
}

.p-150 {
    padding: 150px !important;
}

/*padding top*/

.pt-0 {
    padding-top: 0px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

/*padding bottom*/

.pb-0 {
    padding-bottom: 0px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

/*padding left*/

.pl-0 {
    padding-left: 0px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.pl-110 {
    padding-left: 110px !important;
}

.pl-120 {
    padding-left: 120px !important;
}

.pl-130 {
    padding-left: 130px !important;
}

.pl-140 {
    padding-left: 140px !important;
}

.pl-150 {
    padding-left: 150px !important;
}

/*padding right*/

.pr-0 {
    padding-right: 0px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pr-110 {
    padding-right: 110px !important;
}

.pr-120 {
    padding-right: 120px !important;
}

.pr-130 {
    padding-right: 130px !important;
}

.pr-140 {
    padding-right: 140px !important;
}

.pr-150 {
    padding-right: 150px !important;
}

/*padding top bottom*/

.ptb-00 {
    padding-top: 00px !important;
    padding-bottom: 00px !important;
}

.ptb-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.ptb-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.ptb-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.ptb-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.ptb-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ptb-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.ptb-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.ptb-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.ptb-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.ptb-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.ptb-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.ptb-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.ptb-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.ptb-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.ptb-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.ptb-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.ptb-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
}

.ptb-140 {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.ptb-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

/*padding left right*/

.plr-0 {
    padding-left: 00px !important;
    padding-right: 00px !important;
}

.plr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.plr-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.plr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.plr-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.plr-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.plr-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.plr-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.plr-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.plr-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.plr-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}

.plr-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.plr-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}

.plr-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.plr-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}

.plr-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.plr-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
}

.plr-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
}

.plr-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
}

.plr-140 {
    padding-left: 140px !important;
    padding-right: 140px !important;
}

.plr-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
}

/*==========================================
    :: Opacity
==========================================*/

.opacity_0 {
    opacity: 0 !important;
}

.opacity_1 {
    opacity: 1 !important;
}

.opacity_01 {
    opacity: 0.1 !important;
}

.opacity_02 {
    opacity: 0.2 !important;
}

.opacity_03 {
    opacity: 0.3 !important;
}

.opacity_04 {
    opacity: 0.4 !important;
}

.opacity_05 {
    opacity: 0.5 !important;
}

.opacity_06 {
    opacity: 0.6 !important;
}

.opacity_07 {
    opacity: 0.7 !important;
}

.opacity_08 {
    opacity: 0.8 !important;
}

.opacity_09 {
    opacity: 0.9 !important;
}

/*==========================================
    :: Font Size
==========================================*/

.fs_108 {
    font-size: 108px !important;
}

.fs_102 {
    font-size: 102px !important;
}

.fs_98 {
    font-size: 98px !important;
}

.fs_92 {
    font-size: 92px !important;
}

.fs_88 {
    font-size: 88px !important;
}

.fs_82 {
    font-size: 82px !important;
}

.fs_78 {
    font-size: 78px !important;
}

.fs_72 {
    font-size: 72px !important;
}

.fs_68 {
    font-size: 68px !important;
}

.fs_62 {
    font-size: 62px !important;
}

.fs_58 {
    font-size: 58px !important;
}

.fs_52 {
    font-size: 52px !important;
}

.fs_48 {
    font-size: 48px !important;
}

.fs_42 {
    font-size: 42px !important;
}

.fs_40 {
    font-size: 40px !important;
}

.fs_38 {
    font-size: 38px !important;
}

.fs_36 {
    font-size: 36px !important;
}

.fs_34 {
    font-size: 34px !important;
}

.fs_32 {
    font-size: 32px !important;
}

.fs_30 {
    font-size: 30px !important;
}

.fs_28 {
    font-size: 28px !important;
}

.fs_26 {
    font-size: 26px !important;
}

.fs_24 {
    font-size: 24px !important;
}

.fs_22 {
    font-size: 22px !important;
}

.fs_20 {
    font-size: 20px !important;
}

.fs_18 {
    font-size: 18px !important;
}

.fs_16 {
    font-size: 16px !important;
}

.fs_14 {
    font-size: 14px !important;
}

.fs_13 {
    font-size: 13px !important;
}

.fs_12 {
    font-size: 12px !important;
}

.fs_11 {
    font-size: 11px !important;
}

.fs_10 {
    font-size: 10px !important;
}

.fs_9 {
    font-size: 9px !important;
}

/*=================================================
    Responsive Media Query (less than 767px)
==================================================*/

@media only screen and (max-width: 767px) {
    .fs_108 {
        font-size: 90px !important;
    }

    .fs_102 {
        font-size: 88px !important;
    }

    .fs_98 {
        font-size: 78px !important;
    }

    .fs_92 {
        font-size: 72px !important;
    }

    .fs_88 {
        font-size: 68px !important;
    }

    .fs_82 {
        font-size: 62px !important;
    }

    .fs_78 {
        font-size: 48px !important;
    }

    .fs_72 {
        font-size: 42px !important;
    }

    .fs_68 {
        font-size: 58px !important;
    }

    .fs_62 {
        font-size: 52px !important;
    }

    .fs_58 {
        font-size: 48px !important;
    }

    .fs_52 {
        font-size: 42px !important;
    }

    .fs_48 {
        font-size: 38px !important;
    }

    .fs_42 {
        font-size: 32px !important;
    }

    .fs_40 {
        font-size: 30px !important;
    }

    .fs_38 {
        font-size: 28px !important;
    }

    .fs_36 {
        font-size: 26px !important;
    }

    .fs_34 {
        font-size: 24px !important;
    }

    .fs_32 {
        font-size: 22px !important;
    }

    .fs_30 {
        font-size: 20px !important;
    }

    .fs_28 {
        font-size: 18px !important;
    }

    .fs_26 {
        font-size: 24px !important;
    }

    .fs_24 {
        font-size: 18px !important;
    }
}

/*==========================================
    :: Font Weight
==========================================*/

.fw_1 {
    font-weight: 100 !important;
}

.fw_2 {
    font-weight: 200 !important;
}

.fw_3 {
    font-weight: 300 !important;
}

.fw_4 {
    font-weight: 400 !important;
}

.fw_5 {
    font-weight: 500 !important;
}

.fw_6 {
    font-weight: 600 !important;
}

.fw_7 {
    font-weight: 700 !important;
}

.fw_8 {
    font-weight: 800 !important;
}

.fw_9 {
    font-weight: 900 !important;
}

.fw_bold {
    font-weight: bold !important;
}


/* -------------------------------------------------
>> button
------------------------------------------------- */

.btn-style-one {
    position: relative;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 14px 30px;
    text-align: center;
    background: var(--primary-color);
    overflow: hidden;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.btn-style-one:hover {
    background: var(--primary-color);
    color: var(--white-color);
    opacity: 0.8;
}

.btn-style-two {
    position: relative;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--primary-color);
    background: transparent;
    padding: 14px 30px;
    text-align: center;
    border: 1px solid var(--primary-color);
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.btn-style-two:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.btn-style-three {
    position: relative;
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 14px 30px;
    text-align: center;
    background: var(--primary-color);
    border: 1px solid transparent;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.btn-style-three:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}


/*-------------------------------------------------
>> Default Form Style
-------------------------------------------------*/

.default-form {
    position: relative;
}

.default-form .form-group {
    position: relative;
    margin-bottom: 16px;
}

.default-form .field-inner {
    position: relative;
    display: block;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="date"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
    position: relative;
    display: block;
    height: 56px;
    width: 100%;
    padding: 10px 20px;
    color: var(--black-color);
    background-color: var(--white-color);
    border: 1px solid var(--border2-color);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}

.default-form .form-group textarea {
    height: 130px;
    resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
    display: inline-block;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus {
    border-color: var(--primary-color);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

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

.default-form .form-group select {
    cursor: pointer;
}

.default-form .form-group select option {
    padding-left: 20px;
    text-indent: 20px;
    cursor: pointer;
}

.default-form .form-group .datepicker {
    cursor: pointer;
}

.default-form ::-webkit-input-placeholder {
    color: var(--black-color-opacity);
}

.default-form ::-moz-input-placeholder {
    color: var(--black-color-opacity);
}

.default-form ::-ms-input-placeholder {
    color: var(--black-color-opacity);
}

.default-form .field-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}


/*-------------------------------------------------
>> Progress Wrap
-------------------------------------------------*/

.progress-wrap {
    position: fixed;
    right: 20px;
    bottom: 40px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap i {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    color: var(--primary-color);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}


/*-------------------------------------------------
>> OWL nav & dots
-------------------------------------------------*/


/* owl nav */

.owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin: 0 !important;
    transform: translateY(-30px) !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--black-color) !important;
    border: 1px solid var(--border-color) !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.owl-prev i,
.owl-next i {
    font-size: 24px;
    color: var(--white-color-color);
    -moz-transition: var(--transition);
    -o-transition: var(--transition);
    -webkit-transition: var(--transition);
    -ms-transition: var(--transition);
    transition: var(--transition);
}

.owl-prev:hover i,
.owl-next:hover i {
    color: var(--primary-color);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}


/* owl dot */

.owl-dots {
    text-align: center;
}

.owl-dots button.owl-dot {
    height: 5px;
    width: 30px;
    background: var(--black-color);
    margin: 0 5px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.owl-dots button.owl-dot.active {
    background: var(--primary-color);
}


/* ------------------------------------------------
        main-area
-------------------------------------------------*/

/* header */
section.banner-area {
    padding-top: 150px;
    padding-bottom: 150px;
    background: var(--header-bg);
}

.banner-content,
.banner-image {
    transform: scale(0);
    transition: 0.5s;
}

/* whyus-area */
.whyus-area {
    padding-top: 80px;
}

.whyus-content .number {
    font-size: 60px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.whyus-content h2 {
    font-size: 42px;
    margin: 0;
}

.whyus-content p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}



.sticky-column .sticky-box {
    position: sticky;
    position: -webkit-sticky;
    top: 90px;
}

.whyus-image-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 0px);
}

.whyus-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
    height: 55vh;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
    /*  opacity: 0.1;*/
}

.mobile-block {
    display: none;
}

/* tableview-area */
.tableview-area {
    background: var(--header-bg);
}

.tableview-wapper {
    display: flex;
    min-height: 630px;
    position: relative;
    z-index: 1;
}

.tableview-wapper>div {
    width: 100%;
    display: inline-block;
    position: relative;
    background: rgba(30, 30, 30, 0.733);
}

.tableview-wapper>div:after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 2px;
    background: url(../../assets/images/svg/table-line-1.svg) no-repeat;
    background-size: cover;
    z-index: 9999;
    top: 0;
}

.tableview-title {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 63px;
    justify-content: center;
}

.tableview-title h6 {
    z-index: 1;
    text-transform: capitalize;
}

.tableview-wapper>div>.tableview-title::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}

.tableview-wapper>.tableview-1>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-1.svg) no-repeat;
    background-size: cover;
}

.tableview-wapper>.tableview-2>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-2.svg) no-repeat;
    background-size: cover;
}

.tableview-wapper>.tableview-3>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-3.svg) no-repeat;
    background-size: cover;
}

.tableview-wapper>.tableview-4>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-4.svg) no-repeat;
    background-size: cover;
}

.tableview-wapper>.tableview-5>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-5.svg) no-repeat;
    background-size: cover;
}

.tableview-wapper>.tableview-6>.tableview-title::after {
    background: url(../../assets/images/svg/table-bg-6.svg) no-repeat;
    background-size: cover;
}

.tableview-eff {
    position: relative;
    padding: 20px;
}

.tableview-eff::after {
    content: "";
    position: absolute;
    right: 0;
    height: 90%;
    width: 6px;
    background: url(../../assets/images/svg/line-vertical.svg) no-repeat;
    background-size: cover;
    top: 0;
}

.tableview-eff::before {
    content: "";
    position: absolute;
    left: 0;
    height: 90%;
    width: 6px;
    background: url(../../assets/images/svg/line-vertical.svg) no-repeat;
    background-size: cover;
    top: 0;
}

.table-shap {
    position: absolute !important;
    top: 0;
    width: 100%;
}

img.table-shap-img.table-shap-1 {
    position: absolute;
    top: 290px;
    left: -30px;
}

img.table-shap-img.table-shap-2 {
    position: absolute;
    top: 410px;
    left: 270px;
    width: 100px;
}

img.table-shap-img.table-shap-3 {
    position: absolute;
    top: 620px;
    left: 540px;
    width: 50px;
}

img.table-shap-img.table-shap-4 {
    position: absolute;
    top: 140px;
    right: -10px;
    width: 80px;
}

.line-horizontal {
    position: absolute;
    left: 0;
    bottom: 0;
}

.tableview-content {
    min-height: 96px;
    position: relative;
    display: flex;
    align-items: center;
}

.tableview-content p {
    position: relative;
    z-index: 99999;
    padding: 18px 65px;
    /* line-height: 19px;
    font-size: 14px; */
    line-height: 16px;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
}


/* Your Idea */
.tableview-content.table-idea p {
    width: 209px;
    position: absolute;
    z-index: 99999;
    background: url(../../assets/images/svg/inner/inner-1.svg) no-repeat;
    background-size: 100% 50px;
    height: 25px;
    transition: 0.5s;
    padding-left: 15px;
    padding-right: 15px;
}

/* .tableview-content.table-idea p::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-1.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-idea p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.idea-hover .tableview-content.table-idea p {
    height: 50px;
    background: url(../../assets/images/svg/inner/inner-1-hover.svg) no-repeat;
    background-size: 100%;
    text-align: center;
}

/* .idea-hover .tableview-content.table-idea p::after{
    background: url(../../assets/images/svg/inner/inner-1-hover.svg) no-repeat;
} */
.idea-hover .tableview-content.table-idea p span {
    opacity: 1;
}


/* Detailed Planning */
/* .tableview-content.table-planning {
    top: 96px;
} */
.tableview-content.table-planning p {
    width: 620px;
    position: absolute;
    z-index: 99999;
    background: url(../../assets/images/svg/inner/inner-2.svg) no-repeat;
    background-size: 100%;
    height: 55px;
    transition: 0.5s;
}

/* .tableview-content.table-planning p::after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-2.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-planning p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.planning-hover .tableview-content.table-planning p {
    height: 85px;
    background: url(../../assets/images/svg/inner/inner-2-hover.svg) no-repeat;
    background-size: 100%;
}

/* .planning-hover .tableview-content.table-planning p::after{
    background: url(../../assets/images/svg/inner/inner-2-hover.svg) no-repeat;
} */
.planning-hover .tableview-content.table-planning p span {
    opacity: 1;
}


/* Design */
/* .tableview-content.table-design{
    top: 192px;
} */
.tableview-content.table-design p {
    width: 415px;
    position: absolute;
    z-index: 99999;
    background: url(../../assets/images/svg/inner/inner-3.svg) no-repeat;
    background-size: 100% 100px;
    height: 74px;
    transition: 0.5s;
    padding: 8px 10px;
}

/* .tableview-content.table-design p::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-3.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-design p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.table-design-hover .tableview-content.table-design p {
    height: 100px;
    background: url(../../assets/images/svg/inner/inner-3-hover.svg) no-repeat;
    background-size: 100% 100px;
    padding: 12px;
}

/* .table-design-hover .tableview-content.table-design p::after{
    background: url(../../assets/images/svg/inner/inner-3-hover.svg) no-repeat;
} */
.table-design-hover .tableview-content.table-design p span {
    opacity: 1;
}


/* Apps Development */
/* .tableview-content.table-development{
    top: 288px;
} */
.tableview-content.table-development p {
    width: 416px;
    position: absolute;
    z-index: 99999;
    padding: 22px 17px;
    background: url(../../assets/images/svg/inner/inner-4.svg) no-repeat;
    background-size: 100% 95px;
    height: 85px;
    transition: 0.5s;
}

/* .tableview-content.table-development p::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-4.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-development p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.development-hover .tableview-content.table-development p {
    height: 96px;
    background: url(../../assets/images/svg/inner/inner-4-hover.svg) no-repeat;
    background-size: 100%;
    padding: 22px 17px;
}

/* .development-hover .tableview-content.table-development p::after{
    background: url(../../assets/images/svg/inner/inner-4-hover.svg) no-repeat;
} */
.development-hover .tableview-content.table-development p span {
    opacity: 1;
}

/* Testing */
/* .tableview-content.table-testing{
    top: 384px;
} */
.tableview-content.table-testing p {
    margin-left: -110px;
    width: 340px;
    background: url(../../assets/images/svg/inner/inner-5.svg) no-repeat;
    background-size: 100% 100px;
    height: 107px;
    transition: 0.5s;
    padding: 12px 10px;
}

/* .tableview-content.table-testing p::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-5.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-testing p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.testing-hover .tableview-content.table-testing p {
    height: 107px;
    background: url(../../assets/images/svg/inner/inner-5-hover.svg) no-repeat;
    background-size: 100% 107px;
    padding: 14px;
}

/* .testing-hover .tableview-content.table-testing p::after{
    background: url(../../assets/images/svg/inner/inner-5-hover.svg) no-repeat;
} */
.testing-hover .tableview-content.table-testing p span {
    opacity: 1;
}

/* Release */
/* .tableview-content.table-release{
    top: 480px;
} */

.tableview-content.table-release p {
    position: absolute;
    z-index: 99999;
    padding: 26px 7px;
    background: url(../../assets/images/svg/inner/inner-6.svg) no-repeat;
    background-size: 100% 100px;
    height: 70px;
    transition: 0.5s;
}

/* .tableview-content.table-release p::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../../assets/images/svg/inner/inner-6.svg) no-repeat;
    background-size: cover;
    top: 0;
} */
.tableview-content.table-release p span {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.release-hover .tableview-content.table-release p {
    height: 100px;
    background: url(../../assets/images/svg/inner/inner-6-hover.svg) no-repeat;
    background-size: 100% 100px;
    padding: 26px 7px;
}

/* .release-hover .tableview-content.table-release p::after{
    background: url(../../assets/images/svg/inner/inner-6-hover.svg) no-repeat;
} */
.release-hover .tableview-content.table-release p span {
    opacity: 1;
}


.tableview-wapper.table-opacity>* {
    opacity: 0.3;
}

.tableview-wapper.table-opacity>*.tableview-1.idea-hover {
    opacity: 1;
}

.tableview-wapper.table-opacity>*.tableview-2.planning-hover {
    opacity: 1;
}

.tableview-wapper.table-opacity>*.tableview-3.table-design-hover {
    opacity: 1;
}

.tableview-wapper.table-opacity>*.tableview-4.development-hover {
    opacity: 1;
}

.tableview-wapper.table-opacity>*.tableview-5.testing-hover {
    opacity: 1;
}

.tableview-wapper.table-opacity>*.tableview-6.release-hover {
    opacity: 1;
}



/* .tableview-wapper.planning-hover > * {
    opacity: 0.3;
}
.tableview-wapper.planning-hover > *.tableview-2 {
    opacity: 1;
}

.tableview-wapper.table-design-hover > * {
    opacity: 0.3;
}
.tableview-wapper.table-design-hover > *.tableview-3 {
    opacity: 1;
}

.tableview-wapper.development-hover > * {
    opacity: 0.3;
}
.tableview-wapper.development-hover > *.tableview-4 {
    opacity: 1;
}

.tableview-wapper.testing-hover > * {
    opacity: 0.3;
}
.tableview-wapper.testing-hover > *.tableview-5 {
    opacity: 1;
}

.tableview-wapper.release-hover > * {
    opacity: 0.3;
}
.tableview-wapper.release-hover > *.tableview-6 {
    opacity: 1;
} */


/* -------------------------------------------------
        tech-area
--------------------------------------------------*/
/* .tech-area{
    background: #D4C47A;
}

.tech-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.tech-list .tech-item {
    position: relative;
    display: inline-block;
}
.tech-list .tech-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background: var(--white-color);
    -webkit-box-shadow: 2px 0 70px hsl(0deg 0% 13% / 15%);
    box-shadow: 2px 0 70px hsl(0deg 0% 13% / 15%);
}
.tech-list .icon-origenal {
    transition: 0.3s;
    width: 45px;
}
.tech-list .icon-hover {
    position: absolute;
    transform: translateY(90px);
    width: 45px;
    transition: 0.3s;
}
.tech-list .tech-item:hover .icon-origenal {
    transform: translateY(-90px);
}
.tech-list .tech-item:hover .icon-hover {
    transform: translateY(0px);
} */

.tech-area {
    padding: 80px 0;
}

.tech-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.tech-item {
    /* border: 1px solid #D8D8D8; */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: ease-in-out all 0.5s;
    height: 327px;
    position: relative;
}

.tech-item:hover {
    height: 500px;
}

.tech-item:after {
    content: "";
    height: 327px;
    width: 100%;
    position: absolute;
    top: 0;
    border: 1px solid #D8D8D8;
    left: 0;
    border-radius: 15px;
    transition: ease-in-out all 0.5s;
    z-index: -1;
}

.tech-item:hover::after {
    height: 100%;
    background: #F7F7F7;
}

.tech-list-hover .tech-item:after {
    border-color: transparent;
}

.tech-list-hover .tech-item:hover:after {
    border-color: #D8D8D8;
}

/* .tech-list-hover .tech-item::after:hover {
    border: 1px solid #D8D8D8;
    background: #F7F7F7;
}

.tech-item:hover::after {
    height: 100%;
    background: #F7F7F7;
}
.tech-list-hover .tech-item:hover::after {
    border-color: transparent;
}

.tech-list-hover .tech-item::after:hover {
    border: 1px solid transparent;
} */

.tech-image {
    min-height: 232px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: var(--transition);
    transition-delay: 10ms;
}

.tech-content p {
    font-size: 16px;
    margin-top: 20px;
    opacity: 0;
    transition: ease all 0.5s;
}

.tech-item:hover p {
    opacity: 1;
    transition-delay: 10ms;
}

.tech-top-icon {
    height: 78px;
    width: 110px;
    position: absolute;
    margin-top: -50px;
    transition: ease all 0.8s;
}

.tech-item:hover .tech-top-icon {
    height: 78px;
    width: 110px;
    position: absolute;
    margin-top: -100px;
    transition: ease all 2s;
    transition-delay: 20ms;
}

.tech-top-icon.icon-ios {
    background: url(../../assets/images/tech/ios.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-ios {
    background: url(../../assets/images/tech/ios-hover.svg) no-repeat;
    background-size: contain;
}

.tech-top-icon.icon-android {
    background: url(../../assets/images/tech/android.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-android {
    background: url(../../assets/images/tech/android-hover.svg) no-repeat;
    background-size: contain;
}

.tech-top-icon.icon-nodejs {
    background: url(../../assets/images/tech/nodejs.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-nodejs {
    background: url(../../assets/images/tech/nodejs-hover.svg) no-repeat;
    background-size: contain;
}

.tech-top-icon.icon-flutter {
    background: url(../../assets/images/tech/react.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-flutter {
    background: url(../../assets/images/tech/react-hover.svg) no-repeat;
    background-size: contain;
}

.tech-top-icon.icon-aws {
    background: url(../../assets/images/tech/aws.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-aws {
    background: url(../../assets/images/tech/aws-hover.svg) no-repeat;
    background-size: contain;
}

.tech-top-icon.icon-kotlin {
    background: url(../../assets/images/tech/kotlin.svg) no-repeat;
    background-size: 100%;
}

.tech-item:hover .tech-top-icon.icon-kotlin {
    background: url(../../assets/images/tech/kotlin-hover.svg) no-repeat;
    background-size: contain;
}

/* -------------------------------------------------
        Contact form area
--------------------------------------------------*/


.contact-form .submit-button-wrapper input:hover {
    /*  background-color: #d30069;*/
}

.contact-area {
    background: #fff;
    padding: 70px 0 0 0;
}

.contact-area form.form {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.30);
    border-radius: 0px;
    margin-top: 0px;
}

.contact-area textarea.form-control {
    height: auto;
}

.contact-area form .policy-text small {
    color: #888;
    font-size: 14px;
}

.contact-area form .policy-text a {
    color: #0080C8;
    text-decoration: underline;
}

.margin {
    margin: 0 0 10px 0;
}

.form-info {
    padding-left: 160px;
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--black-color) url('../images/Man.svg');
    background-position: left bottom;
    background-repeat: no-repeat;
    height: 100%;
}

.form-info h3 {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 150%;
    position: relative;
    margin-bottom: 100px;
}

.form-info h3::before {
    content: '';
    position: absolute;
    top: -73px;
    right: 50px;
    width: 187px;
    height: 100%;
    background-image: url("../images/contact-shape.svg");
    background-repeat: no-repeat;
}

.form-info form input {
    padding: 16px;
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 140%;
    border-bottom: 1px solid #444;
    margin-bottom: 43px;
    max-width: 364px;
    width: 100%;
}

.form-info form input::placeholder {
    color: #4C4C4C;
}

.form-info .form-control:focus {
    color: #fff;
    box-shadow: none;
    outline: 0;
    border-color: var(--primary-color);
}

.form-info form button {
    border-radius: 4px;
    background: transparent;
    padding: 10px 20px;
}

.right-side .top-box {
    background-color: #121214;
    padding: 32px;
    border-radius: 20px;
    max-width: 326px;
    margin-left: auto;
}

.right-side .top-box h5 {
    color: #E17565;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 34px;
}

.right-side .top-box h5 img {
    padding-left: 16px;
}

.right-side .top-box .star {
    margin-bottom: 27px;
}

.right-side .top-box .star:last-child {
    margin-bottom: 0;
}

.right-side .top-box .star .img-box {
    width: 65px;
    text-align: right;
    margin-right: 25px;
}

.right-side .map-box {
    max-width: 450px;
    margin-left: auto;
}

.right-side .map-box .map-img {
    width: 450px;
}

.right-side .map-box .addresh-view {
    max-width: 186px;
}

.right-side .map-box .addresh-box {
    background: rgba(230, 119, 103, 0.60);
    filter: drop-shadow(0px 4px 47px rgba(0, 0, 0, 0.28));
    backdrop-filter: blur(4.5px);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 13px;
}

.right-side .map-box .addresh-box h5 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.right-side .map-box .addresh-box .send-img {
    cursor: pointer;
}

.right-side .map-box .addresh-box p {
    color: #FFD3CD;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.right-side .map-box .addresh-box img {
    width: 44px;
    height: 44px;
}

.typewrite {
    color: #fff;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: black;
}


.select-work-area {
    background: var(--header-bg);
    color: #fff;
}

.select-work-area .page-title h1::after {
    content: "";
    height: 4px;
    width: 116px;
    background: linear-gradient(90deg, #FFF -2.58%, #000 83.21%);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.work-content .top-content h2 {
    font-size: 48px;
    font-weight: 600;
}

.work-content .top-content p {
    opacity: 0.7;
    font-size: 18px;
    font-weight: 300;
}

.work-content>p {
    opacity: 0.7;
    font-size: 18px;
    font-weight: 300;
}

.work-content>a {
    position: relative;
    text-decoration: none;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: 0.5s;
    border: 1px solid var(--primary-color);
    padding: 12px 16px;
    border-radius: 4px;
    gap: 10px;
}

.work-content>a svg {
    margin-left: -32px;
    opacity: 0;
    transition: var(--transition);
}

.work-content>a:focus {
    outline: none;
    box-shadow: none;
}

.work-content>a:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

.work-content>a:hover svg {
    margin-left: 0;
    opacity: 1;
}

.work-image,
.work-image img {
    position: relative;
    transition: all 0.8s ease-in-out;
    text-align: center;
}

.work-image:hover img {
    transform: scale(1.05);
}

.select-work-area .flex-row-reverse .work-content {
    text-align: end;
}

.testimonial-inner {
    padding: 30px;
}

.testimonial-content h6 {
    font-size: 24px;
}

.testimonial-content>p {
    line-height: normal;
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 50px;
    font-weight: 500;
    color: #000;
}

.testimonial-item {
    border-radius: 15px;
}

.testimonial-item.item-1 {
    /*background: #FFFDF0;*/
    background: #63cae652;
}

.testimonial-item.item-2 {
    /* background: #FFF0F5;*/
    background: #d4c47a78;
}

.testimonial-item.item-3 {
    /* background: #F0FFFB;*/
    background: #e6776766;
}

.testimonial-item.item-4 {
    /* background: #F0FFFB;*/
    background: #fe7fbb57;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author .testimonial-author-content {
    flex: 1;
}

.testimonial-author-content h6 {
    color: #000;
    font-size: 22px;
}

.testimonial-author-content p {
    color: #000;
    font-size: 14px;
}

/* .testimonial-item.slick-slide{
    opacity: 1;
} */
.testimonial-item.slick-slide.slick-active {
    opacity: 1;
}

/*.testimonial-item.slick-slide.slick-current.slick-active {
    opacity: 0.4;
}*/
/*.testimonial-item.slick-slide {
    opacity: 0.4;
}*/

.blue {
    color: #63CAE6;
}

.yellow {
    color: #D4C47A;
}

.orange {
    color: #E67767;
}

.pink {
    color: #FE7FBB;
}

.normal-font {
    font-style: normal !important;
}

.cd-headline {
    font-size: 18px !important;
    color: #fff;
}

.cd-intro {
    width: 100%;
    margin: 0px !important;
    padding: 0px 0px 15px 0px;
}

.cd-title {
    position: relative;
    height: 160px;
    line-height: 230px;
    text-align: center;
}

.cd-title h1 {
    font-size: 2.4rem;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {
    .cd-title {
        line-height: 250px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-title {
        height: 200px;
        line-height: 300px;
    }

    .cd-title h1 {
        font-size: 3rem;
    }
}


@media only screen and (min-width: 768px) {
    .cd-intro {
        margin: 5em auto;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-intro {
        margin: 6em auto;
    }
}

.cd-headline {
    font-size: 3rem;
    line-height: 1.2;
}

@media only screen and (min-width: 768px) {
    .cd-headline {
        font-size: 4.4rem;
        font-weight: 300;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-headline {
        font-size: 6rem;
    }
}

.cd-words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
}

.cd-words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
}

.cd-words-wrapper b.is-visible {
    position: relative;
}

.no-js .cd-words-wrapper b {
    opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
    opacity: 1;
}

/* --------------------------------

xrotate-1

-------------------------------- */
.cd-headline.rotate-1 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: cd-rotate-1-in 1.2s;
    -moz-animation: cd-rotate-1-in 1.2s;
    animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: cd-rotate-1-out 1.2s;
    -moz-animation: cd-rotate-1-out 1.2s;
    animation: cd-rotate-1-out 1.2s;
}

.cd-headline.type .cd-words-wrapper {
    vertical-align: top;
    overflow: hidden;
}

.cd-headline.type .cd-words-wrapper::after {
    /* vertical bar */
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.waiting::after {
    -webkit-animation: cd-pulse 1s infinite;
    -moz-animation: cd-pulse 1s infinite;
    animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
    background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.selected::after {
    visibility: hidden;
}

.cd-headline.type .cd-words-wrapper.selected b {
    color: #0d0d0d;
}

.cd-headline.type b {
    visibility: hidden;
}

.cd-headline.type b.is-visible {
    visibility: visible;
}

.cd-headline.type i {
    position: absolute;
    visibility: hidden;
}

.cd-headline.type i.in {
    position: relative;
    visibility: visible;
}

@-webkit-keyframes cd-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@-moz-keyframes cd-pulse {
    0% {
        -moz-transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -moz-transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

@keyframes cd-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        -moz-transform: translateY(-50%) scale(1);
        -ms-transform: translateY(-50%) scale(1);
        -o-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        -moz-transform: translateY(-50%) scale(0.9);
        -ms-transform: translateY(-50%) scale(0.9);
        -o-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0);
        -moz-transform: translateY(-50%) scale(0);
        -ms-transform: translateY(-50%) scale(0);
        -o-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}

/* --------------------------------

xrotate-2

-------------------------------- */
.cd-headline.rotate-2 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-2 i,
.cd-headline.rotate-2 em {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-headline.rotate-2 b {
    opacity: 0;
}

.cd-headline.rotate-2 i {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}

.is-visible .cd-headline.rotate-2 i {
    opacity: 1;
}

.cd-headline.rotate-2 i.in {
    -webkit-animation: cd-rotate-2-in 0.4s forwards;
    -moz-animation: cd-rotate-2-in 0.4s forwards;
    animation: cd-rotate-2-in 0.4s forwards;
}

.cd-headline.rotate-2 i.out {
    -webkit-animation: cd-rotate-2-out 0.4s forwards;
    -moz-animation: cd-rotate-2-out 0.4s forwards;
    animation: cd-rotate-2-out 0.4s forwards;
}

.cd-headline.rotate-2 em {
    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
    transform: translateZ(20px);
}

.no-csstransitions .cd-headline.rotate-2 i {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 0;
}

.no-csstransitions .cd-headline.rotate-2 i em {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
    opacity: 1;
}

@-webkit-keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
    }
}

@-moz-keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0deg);
    }
}

@keyframes cd-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        -moz-transform: translateZ(-20px) rotateX(90deg);
        -ms-transform: translateZ(-20px) rotateX(90deg);
        -o-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        -moz-transform: translateZ(-20px) rotateX(-10deg);
        -ms-transform: translateZ(-20px) rotateX(-10deg);
        -o-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        -moz-transform: translateZ(-20px) rotateX(0deg);
        -ms-transform: translateZ(-20px) rotateX(0deg);
        -o-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}

@-webkit-keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@-moz-keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-20px) rotateX(-90deg);
    }
}

@keyframes cd-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        -moz-transform: translateZ(-20px) rotateX(0);
        -ms-transform: translateZ(-20px) rotateX(0);
        -o-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        -moz-transform: translateZ(-20px) rotateX(-100deg);
        -ms-transform: translateZ(-20px) rotateX(-100deg);
        -o-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        -moz-transform: translateZ(-20px) rotateX(-90deg);
        -ms-transform: translateZ(-20px) rotateX(-90deg);
        -o-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}

/* --------------------------------

xloading-bar

-------------------------------- */
.cd-headline.loading-bar span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.loading-bar .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.loading-bar .cd-words-wrapper::after {
    /* loading bar */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #0096a7;
    z-index: 2;
    -webkit-transition: width 0.3s -0.1s;
    -moz-transition: width 0.3s -0.1s;
    transition: width 0.3s -0.1s;
}

.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
    width: 100%;
    -webkit-transition: width 3s;
    -moz-transition: width 3s;
    transition: width 3s;
}

.cd-headline.loading-bar b {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.cd-headline.loading-bar b.is-visible {
    opacity: 1;
    top: 0;
}

/* --------------------------------

xslide

-------------------------------- */
.cd-headline.slide span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.slide .cd-words-wrapper {
    /* overflow: hidden;*/
    vertical-align: top;
}

.cd-headline.slide b {
    opacity: 0;
    top: .2em;
}

.cd-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in 0.6s;
    -moz-animation: slide-in 0.6s;
    animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
    -webkit-animation: slide-out 0.6s;
    -moz-animation: slide-out 0.6s;
    animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }
}

@-moz-keyframes slide-out {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        -moz-transform: translateY(120%);
        -ms-transform: translateY(120%);
        -o-transform: translateY(120%);
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
}

/* --------------------------------

xclip

-------------------------------- */
.cd-headline.clip span {
    display: inline-block;
    padding: .2em 0;
}

.cd-headline.clip .cd-words-wrapper {
    overflow: hidden;
    vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
    /* line */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #aebcb9;
}

.cd-headline.clip b {
    opacity: 0;
}

.cd-headline.clip b.is-visible {
    opacity: 1;
}

/* --------------------------------

xzoom

-------------------------------- */
.cd-headline.zoom .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.zoom b {
    opacity: 0;
}

.cd-headline.zoom b.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in 0.8s;
    -moz-animation: zoom-in 0.8s;
    animation: zoom-in 0.8s;
}

.cd-headline.zoom b.is-hidden {
    -webkit-animation: zoom-out 0.8s;
    -moz-animation: zoom-out 0.8s;
    animation: zoom-out 0.8s;
}

@-webkit-keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }
}

@-moz-keyframes zoom-in {
    0% {
        opacity: 0;
        -moz-transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        -moz-transform: translateZ(100px);
        -ms-transform: translateZ(100px);
        -o-transform: translateZ(100px);
        transform: translateZ(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@-webkit-keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
    }
}

@-moz-keyframes zoom-out {
    0% {
        opacity: 1;
        -moz-transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -moz-transform: translateZ(-100px);
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        -moz-transform: translateZ(-100px);
        -ms-transform: translateZ(-100px);
        -o-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}

/* --------------------------------

xrotate-3

-------------------------------- */
.cd-headline.rotate-3 .cd-words-wrapper {
    -webkit-perspective: 300px;
    -moz-perspective: 300px;
    perspective: 300px;
}

.cd-headline.rotate-3 b {
    opacity: 0;
}

.cd-headline.rotate-3 i {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.is-visible .cd-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.cd-headline.rotate-3 i.in {
    -webkit-animation: cd-rotate-3-in 0.6s forwards;
    -moz-animation: cd-rotate-3-in 0.6s forwards;
    animation: cd-rotate-3-in 0.6s forwards;
}

.cd-headline.rotate-3 i.out {
    -webkit-animation: cd-rotate-3-out 0.6s forwards;
    -moz-animation: cd-rotate-3-out 0.6s forwards;
    animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .cd-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0;
}

.no-csstransitions .cd-headline.rotate-3 .is-visible i {
    opacity: 1;
}

@-webkit-keyframes cd-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-moz-keyframes cd-rotate-3-in {
    0% {
        -moz-transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
    }
}

@keyframes cd-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -ms-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-webkit-keyframes cd-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
    }
}

@-moz-keyframes cd-rotate-3-out {
    0% {
        -moz-transform: rotateY(0);
    }

    100% {
        -moz-transform: rotateY(-180deg);
    }
}

@keyframes cd-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        -moz-transform: rotateY(0);
        -ms-transform: rotateY(0);
        -o-transform: rotateY(0);
        transform: rotateY(0);
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        -moz-transform: rotateY(-180deg);
        -ms-transform: rotateY(-180deg);
        -o-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

/* --------------------------------

xscale

-------------------------------- */
.cd-headline.scale b {
    opacity: 0;
}

.cd-headline.scale i {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.is-visible .cd-headline.scale i {
    opacity: 1;
}

.cd-headline.scale i.in {
    -webkit-animation: scale-up 0.6s forwards;
    -moz-animation: scale-up 0.6s forwards;
    animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
    -webkit-animation: scale-down 0.6s forwards;
    -moz-animation: scale-down 0.6s forwards;
    animation: scale-down 0.6s forwards;
}

.no-csstransitions .cd-headline.scale i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
    opacity: 1;
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-moz-keyframes scale-up {
    0% {
        -moz-transform: scale(0);
        opacity: 0;
    }

    60% {
        -moz-transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -moz-transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
}

@-moz-keyframes scale-down {
    0% {
        -moz-transform: scale(1);
        opacity: 1;
    }

    60% {
        -moz-transform: scale(0);
        opacity: 0;
    }
}

@keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    60% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}

/* --------------------------------

xpush

-------------------------------- */
.cd-headline.push b {
    opacity: 0;
}

.cd-headline.push b.is-visible {
    opacity: 1;
    -webkit-animation: push-in 0.6s;
    -moz-animation: push-in 0.6s;
    animation: push-in 0.6s;
}

.cd-headline.push b.is-hidden {
    -webkit-animation: push-out 0.6s;
    -moz-animation: push-out 0.6s;
    animation: push-out 0.6s;
}

@-webkit-keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes push-in {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        -moz-transform: translateX(10%);
        -ms-transform: translateX(10%);
        -o-transform: translateX(10%);
        transform: translateX(10%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }
}

@-moz-keyframes push-out {
    0% {
        opacity: 1;
        -moz-transform: translateX(0);
    }

    60% {
        opacity: 0;
        -moz-transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -moz-transform: translateX(100%);
    }
}

@keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        -moz-transform: translateX(110%);
        -ms-transform: translateX(110%);
        -o-transform: translateX(110%);
        transform: translateX(110%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}


/* apps-we-built */
.apps-we-built {
    background-color: #000000;
    padding: 80px 0;
}

.apps-we-built .sec-title h2 {
    color: #FFF;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 95px;
}

.apps-we-built .sec-title h2::before {
    content: '';
    width: 116px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: -4px;
    background: linear-gradient(90deg, #FFF -2.58%, #000 83.21%);
}

.apps-we-built .we-box .img-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0.02%, rgba(0, 0, 0, 0.79) 66.49%, #000 99.98%);
}

.apps-we-built .we-box .desc-box {
    padding: 49px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.apps-we-built .we-box .desc-box h4 {
    color: #FFF;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

}

.apps-we-built .we-box .desc-box p {
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
    margin: 0;
    opacity: 0;
    height: 100%;
    transition: .7s all;
}

.apps-we-built .we-box:hover .desc-box p {
    opacity: 1;
    transition: .7s all;
    margin: 24px 0 10px;
    height: 100%;
    /* transition: ease-in all 0.8s;*/
}

.apps-we-built .we-box .desc-box a img {
    /*margin-top: 24px;*/
}

/* Product Roadmap Css Start */
.product-roadmap {
    background-color: #292A2F;
    padding: 70px 0 130px;
    position: relative;
}

.product-roadmap .product-roadmap-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    margin-bottom: 90px;
}

.product-roadmap .steps-image-content {
    width: 528px;
    margin: 0 auto;
    position: relative;
}

.product-roadmap .steps-image-content .steps-image-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
}

.product-roadmap .steps-image-content .steps-image-heading .image-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #8F66CA;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    width: 86%;
}

.product-roadmap .steps-image-content .steps-image-heading .image-heading::before {
    content: '';
    width: 324px;
    height: 324px;
    border-radius: 400px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.product-roadmap .steps-image-content .steps-image-heading .image-heading::after {
    content: '';
    width: 287px;
    height: 287px;
    border-radius: 400px;
    border: 2px solid #AD89E5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.product-roadmap .steps-image-content .steps-image-heading .image-heading span {
    font-size: 32px;
    font-weight: 700;
}

.product-roadmap .steps-image-content .steps-box {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-roadmap .steps-image-content .steps-box.box-1 {
    bottom: -8px;
    left: -140px;
}

.product-roadmap .steps-image-content .steps-box.box-2 {
    bottom: 220px;
    right: -375px;
    width: 70%;
}

.product-roadmap .steps-image-content .steps-box.box-3 {
    top: 30px;
    right: -350px;
    width: 65%;
}

.product-roadmap .steps-image-content .steps-box.box-4 {
    top: -12px;
    left: -310px;
    width: 75%;
}

.product-roadmap .steps-image-content .steps-box.box-5 {
    top: 140px;
    left: -350px;
    width: 65%;
}

.product-roadmap .steps-image-content .steps-box.box-6 {
    bottom: 120px;
    left: -365px;
    width: 65%;
}

.product-roadmap .steps-image-content :where(.steps-box.box-2 .steps-content, .steps-box.box-3 .steps-content, .steps-box.box-4 .steps-content, .steps-box.box-5 .steps-content, .steps-box.box-6 .steps-content) {
    width: calc(100% - 75px);
}

.product-roadmap .steps-image-content :where(.steps-box.box-2 .steps-content .steps-description, .steps-box.box-3 .steps-content .steps-description, .steps-box.box-4 .steps-content .steps-description, .steps-box.box-5 .steps-content .steps-description, .steps-box.box-6 .steps-content .steps-description) {
    width: 100%;
}

.product-roadmap .steps-image-content :where(.steps-box.box-1, .steps-box.box-4, .steps-box.box-5, .steps-box.box-6) {
    flex-direction: row-reverse;
}

.product-roadmap .steps-image-content :where(.steps-box.box-1 .steps-icon, .steps-box.box-2 .steps-icon, .steps-box.box-3 .steps-icon, .steps-box.box-4 .steps-icon, .steps-box.box-5 .steps-icon, .steps-box.box-6 .steps-icon) {
    width: 56px;
    height: 56px;
    border: 3px solid #ffffff;
    border-radius: 60px;
    background-color: #FFDFDE;
    text-align: center;
    line-height: 44px;
    box-shadow: 5px 4px 8px 0px #200F4F73;
}

.product-roadmap .steps-image-content .steps-box.box-2 .steps-icon {
    background-color: #FFFAE5;
    line-height: 45px;
}

.product-roadmap .steps-image-content .steps-box.box-3 .steps-icon {
    background-color: #F1E3E3;
    line-height: 43px;
}

.product-roadmap .steps-image-content .steps-box.box-4 .steps-icon {
    background-color: #FFDFED;
    line-height: 43px;
}

.product-roadmap .steps-image-content .steps-box.box-5 .steps-icon {
    background-color: #E0F6FC;
    line-height: 43px;
}

.product-roadmap .steps-image-content .steps-box.box-6 .steps-icon {
    background-color: #F1DAF6;
    line-height: 43px;
}

.product-roadmap .steps-image-content :where(.steps-box.box-1 .steps-content, .steps-box.box-4 .steps-content, .steps-box.box-5 .steps-content, .steps-box.box-6 .steps-content) {
    margin-right: 18px;
}

.product-roadmap .steps-image-content :where(.steps-box.box-2 .steps-content, .steps-box.box-3 .steps-content) {
    margin-left: 18px;
}

.product-roadmap .steps-image-content :where(.steps-box.box-1 .steps-content .steps-heading, .steps-box.box-2 .steps-content .steps-heading, .steps-box.box-3 .steps-content .steps-heading, .steps-box.box-4 .steps-content .steps-heading, .steps-box.box-5 .steps-content .steps-heading, .steps-box.box-6 .steps-content .steps-heading) {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: capitalize;
    color: #EF8481;
    text-align: end;
}

.product-roadmap .steps-image-content .steps-box.box-2 .steps-content .steps-heading {
    color: #D4C479;
}

.product-roadmap .steps-image-content .steps-box.box-3 .steps-content .steps-heading {
    color: #D9C4C3;
}

.product-roadmap .steps-image-content .steps-box.box-4 .steps-content .steps-heading {
    color: #F280B3;
}

.product-roadmap .steps-image-content .steps-box.box-5 .steps-content .steps-heading {
    color: #61C3DE;
}

.product-roadmap .steps-image-content .steps-box.box-6 .steps-content .steps-heading {
    color: #BBA6D1;
}

.product-roadmap .steps-image-content :where(.steps-box.box-1 .steps-content .steps-description, .steps-box.box-2 .steps-content .steps-description, .steps-box.box-3 .steps-content .steps-description, .steps-box.box-4 .steps-content .steps-description, .steps-box.box-5 .steps-content .steps-description, .steps-box.box-6 .steps-content .steps-description) {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    text-align: end;
    width: 100%;
    margin-left: auto;
    margin-top: 5px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.product-roadmap .steps-image-content .steps-box:hover .steps-content .steps-description {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease-in-out;
}

.product-roadmap .steps-image-content :where(.steps-box.box-2 .steps-content .steps-heading, .steps-box.box-3 .steps-content .steps-heading) {
    text-align: start;
}

.product-roadmap .steps-image-content :where(.steps-box.box-2 .steps-content .steps-description, .steps-box.box-3 .steps-content .steps-description) {
    text-align: start;
    margin-left: 0;
    margin-right: auto;
}

.product-roadmap .rocket-person {
    position: absolute;
    bottom: 0;
    right: 335px;
}

.mobile-show {
    display: none;
}

.steps-content {
    position: relative;
}

.steps-content p.steps-description {
    position: absolute;
    top: -5px;
}

.product-roadmap .steps-image-content .steps-box .steps-heading {
    transition: all 0.3s ease-in-out;
}

.product-roadmap .steps-image-content .steps-box:hover .steps-heading {
    margin-top: -25px;
}

/*.product-roadmap .steps-image-content .steps-box:hover p.steps-description {
    top: 15px;
}
*/
/* Product Roadmap Css End */


/*-------------------------------------------------------
    contact us
-------------------------------------------------------*/
.contactus-area {
    background: url(../../assets/images/contact/bg.png) no-repeat;
    padding: 180px 0 140px 0;
    position: relative;
    background-size: 100% 100%;
}

section.contactus-area:after {
    content: "";
    background: radial-gradient(50.15% 50.14% at 49.59% 55.65%, #9F9F9F 6%, #858585 13%, #5C5C5C 26%, #3B3B3B 39%, #212121 52%, #0E0E0E 66%, #030303 81%, #000 96%);
    opacity: 0.4;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.contactus-content {
    position: relative;
    z-index: 1;
}

.contactus-content h1 {
    font-size: 42px;
    line-height: 65px;
    margin-bottom: 50px;
}

.contact-point {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-point li {
    /* display: flex;
    gap: 20px; */
    color: var(--white-color);
}

.contact-point li svg {
    position: relative;
    float: left;
    top: 5px;
}

.contact-form {
    position: relative;
    z-index: 1;
    margin-left: 50px;
    margin-right: 50px;
}

.c-logo {
    width: 26%;
    position: relative;
    top: -4px;
    padding-right: 3px;
    margin-left: 20px;
}

.contact-point li p {
    font-size: 18px;
    padding-left: 40px;
}

.form-title {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px 40px 0 40px;
    display: inline-block;
}

.form-title h2 {
    font-weight: 600;
    font-size: 42px;
}

form.form {
    background: #fff;
    border-radius: 0 20px 20px 20px;
    padding: 60px 50px 50px 50px;
    margin-top: -22px;
}
.contact-form-col{
    margin-bottom: 15px;
}

form.form .form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
    margin-bottom: 5px;
    padding: 0 0 10px 0;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

form.form .form-control:focus {
    outline: none;
    box-shadow: none;
}

textarea.form-control {
    height: 100px;
}

.policy-text {
    max-width: 70%;
    line-height: normal;
    font-weight: 500;
}

.policy-text a {
    color: #35C4ED;
}

.btn-confirm {
    border-radius: 12px;
    background: #35C4ED;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
}

.btn-confirm:hover {
    background: #249ec0;
    color: #fff;
}

.faq-area {
    background: #292A2F;
    padding: 100px 0;
}

.f-testimonial-item {
    background: linear-gradient(45deg, #5EBBD5 10.09%, #30C5EF 96.1%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.f-testimonial .f-testimonial-content img {
    width: 85px;
    height: 85px;
    text-align: center;
    margin: 0 auto;
}

.f-testimonial-content h6 {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    color: #fff;
}

.f-testimonial-content p {
    font-size: 13px;
    color: #fff;
    text-align: center;
    margin: auto;
    padding: 0 20px;
}

.f-testimonial-content {
    padding: 45px 0 0 0;
    text-align: center;
    margin: 0 auto;
}

.f-testimonial-other {
    background: #fff;
    margin-top: -11px;
    padding: 15px;
}

.f-testimonial-other .star {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.f-testimonial-other .star img {
    width: 20px;
}

.f-testimonial-author h6 {
    color: #525252;
}

.f-testimonial-author p {
    color: #888888;
    font-size: 13px;
}

.f-testimonial .owl-dots button.owl-dot {
    height: 13px;
    width: 13px;
    background: #BEC6D5;
    margin: 0 5px;
    border-radius: 50px;
}

.f-testimonial .owl-dots button.owl-dot.active {
    background: var(--primary-color);
}


.faq-quick-search {
    color: #fff;
}

.faq-quick-search span {
    color: #249ec0;
}

.faq-search-input {
    position: relative;
}

.faq-search-input input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
}

.faq-search-input img {
    position: absolute;
    right: 20px;
    top: 13px;
}

.faq-search-input input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
}

.faq-quick-search {
    color: #fff;
    padding-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.faq-title h2 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.faqs-main {
    margin-left: 80px;
}


.faqs-main .accordion-item {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(90, 86, 86, 0.7);
    border-radius: 0;
}

.faqs-main .accordion-item:last-child {
    border-bottom: 1px solid rgba(90, 86, 86, 0.7);
}

.faqs-main .accordion-button {
    color: #d4d4d4;
    border-radius: 0 !important;
    background: transparent;
    border: none;
    font-size: 18px;
    padding: 25px 0;
}

.faqs-main .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faqs-main .accordion-body {
    padding: 10px 0 30px 0;
}

.faqs-main .accordion-body p {
    color: rgba(255, 255, 255, .7);
}

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

.accordion-arrows {
    position: absolute;
    right: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faqs-main .accordion-button svg {
    width: 24px;
    z-index: 1;
}

.accordion-button:not(.collapsed) .accordion-arrows svg path:first-child {
    display: none;
}

.faqs-main .accordion-button:hover .button__bg {
    transform: scale(1);
}

.button__bg {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    transition: all .3s;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: scale(0);
}

.faqs-main .accordion-button:hover svg path {
    fill: #000;
}

/* --------------------------------------------------
    clients-area
---------------------------------------------------*/
.clients-area {
    background: #1D1D1D;
    padding: 100px 0 0 0;
}

.client-data h2 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
}

.client-box {
    display: flex;
    gap: 30px;
}

.client-title h6 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.client-list ul li {
    margin-bottom: 13px;
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    align-items: center;
}

.client-contact:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 180px;
    background: #218DCE;
    left: 0;
    bottom: 0;
    border-radius: 5px 5px 0 0;
}

.client-contact {
    border-radius: 5px;
    padding: 0 0px 5px 150px;
    position: relative;
    margin-left: 80px;
    margin-top: 100px;
}

.info-images {
    position: absolute;
    left: -20px;
    bottom: -1px;
}

.client-title {
    margin-top: -70px;
    background: #218DCE;
    display: inline-block;
    margin-bottom: 0;
    padding: 15px 30px 15px 30px;
    border-radius: 5px;
    width: 100%;
}

.client-list {
    position: relative;
}

.client-list ul {
    padding-left: 30px;
}

.footer {
    background: #1C1D23;
    padding: 60px 0px 35px 0px;
    color: #fff;
}

.footer .heading-title {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer p {
    font-size: 25px;
    line-height: 34px;
}

.footer .star .img-box {
    width: 65px;
    text-align: left;
    margin-right: 25px;
}

.footer .star {
    margin-bottom: 15px;
}

.main-send-textarea {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.email-textbox:focus {
    background-color: transparent;
    border-color: #AEAEAE;
    box-shadow: none;
}

.email-textbox-main {
width: 60%;
}
.email-textbox {
    width: 100%;
    float: left;
    background: transparent;
    border-color: #AEAEAE;
    padding: 15px;
    border-radius: 10px;
}

.subscribe-btn {
    width: auto;
    background-color: #E8768C;
    padding: 15px 30px;
}

.subscribe-btn:hover {
    background-color: #b74d61;
}

.footer ul li a {
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    font-weight: 200;
}

.socialList {
    display: flex;
    gap: 15px;
    float: right;
}

.footer-hr {
    margin: 80px 0 50px 0px;
}

/* --------------------------------------------------
    app we built page start
---------------------------------------------------*/
.scrybe-main {
    background: url(../../assets/images/scrybe/background-1.svg) no-repeat;
    padding: 90px 0 0px 0;
    position: relative;
    background-size: cover;
}

#talkbubble {
    width: 100%;
    height: auto;
    background: #2A2143;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 30px;
    color: #fff;
    padding: 30px;
    margin: 50px 0;
}

#talkbubble:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    right: -92px;
    top: 50px;
    width: 125px;
    height: 100%;
    background-image: url(../images/scrybe/chat-arrow.svg);
}

.display-flex {
    display: flex;
    gap: 15px;
}

.scrybe-content {
    position: relative;
    top: 50px;
    left: calc(100% - 470px);
    z-index: 1;
}

.nutshell {
    background-color: #1C1D23;
    color: #fff;
    padding: 60px 0;
}

.nutshell-icon {
    display: flex;
    gap: 10px;
    /* padding-bottom: 40px; */
}

.nutshell h1 {
    font-size: 32px;
    padding: 0px 0 30px 0;
}

.nutshell-icon p {
    font-size: 20px;
    line-height: 26px;
}

/* .nutshell-icon img {
    width: 80%;
} */
.icon-div {
    width: 14%;
}

.Third-section {
    background-color: #15161C;
    color: #fff;
    padding: 60px 0;
}

.Third-section h2 {
    line-height: 40px;
}

.Third-section h2 p {
    font-size: 24px;
    font-weight: 400;
    color: #E5E5E5;
}

.great-challenge {
    background-color: #1C1D23;
    color: #fff;
    padding: 60px 0 0 0;
}

.great-challenge h2 {
    line-height: 40px;
}

.great-challenge p {
    font-size: 19px;
    font-weight: 500;
    color: #E5E5E5;
    padding-top: 10px;
}

.great-challenge .contact-point li p {
    font-size: 18px;
    color: #E5E5E5;
    padding: 0;
    font-weight: normal;
    line-height: 35px;
    padding-left: 40px;
}

.great-challenge .contact-point li svg {
    position: relative;
    top: 8px;
}

.great-challenge .contact-point {
    padding-left: 70px;
}

.great-solution {
    background-color: #15161C;
    color: #fff;
    padding: 60px 0 0 0;
}

.great-solution p {
    font-size: 19px;
    font-weight: 500;
    color: #E5E5E5;
    padding-top: 10px;
}

.great-solution .contact-point li p {
    font-size: 18px;
    color: #E5E5E5;
    padding: 0;
    font-weight: normal;
    line-height: 35px;
    padding-left: 40px;
}

.great-solution .contact-point li svg {
    position: relative;
    top: 8px;
}

.great-solution .contact-point {
    padding-right: 80px;
}

.exp-result::after {
    background-image: url("../images/scrybe/result-back.svg");
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -420px;
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.button-apple-google {
    display: flex;
    margin-top: 30px;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.newsletter-main {
    background: #fff;
    padding: 20px 20px 70px 20px;
    border-radius: 10px;
}

.newsletter {
    background-color: #15161C;
    padding: 10px 0 60px 0;
}

.heading-main {
    padding: 20px;
    border-top-left-radius: 10px;
    text-align: center;
    background: #EDEDED;
    border-top-right-radius: 10px;
    margin-bottom: 40px;
}

.mobile-app-service.banner-area-mobile{
    position: relative;
        padding-top: 10px;
        background-image: url('../images/banner/medium-shot-woman-working-laptop\ 1.png');
        overflow: hidden;
}

.web-app-development .banner-content{
    position: relative;
        padding-top: 10px;
        background: transparent;
        overflow: hidden;
}



.web-app-development .banner-content{
    padding-bottom: 42px;
}

.newsletter .email-textbox {
    padding: 12px 15px;
}

.newsletter .subscribe-btn {
    padding: 12px 50px;
}

.newsletter .form-check-input[type=checkbox] {
    border-radius: 11px;
    font-size: 18px;
    margin-left: -20px;
    margin-right: 10px;
}

.newsletter .form-check {
    margin-top: 25px;
}

.newsletter label {
    font-weight: 600;
}

.newsletter .form-check a {
    text-decoration: underline;

}

.s-full-logo {
    width: 50%;
}

.pt-40-mobile {
    padding-top: 40px;
}

.apps-we-built .we-box:hover .desc-box a svg {
    transform: rotateZ(42deg);
    transition: all 0.4s ease-in-out;
}

.we-box {
    cursor: pointer;
}

.container-flude {
    margin: 0px 0px 0 300px;
    padding: 0 15px;
}

.img-right {
    text-align: right;
    padding-right: 0;
}

.margin-zero {
    margin: 0px;
}

/* --------------------------------------------------
    app we built page End
---------------------------------------------------*/

.ask-call {
    padding: 40px;
    background-color: #1C1D23;
    background-image: url("../images/contact/call-background.svg");
    background-repeat: no-repeat;
    background-position: top;
}

.ask-call h1 {
    color: #fff;
    font-size: 21px;
}

.ask-call h1 span {
    font-weight: 100;
}

.ask-call h1 img {
    margin-right: 10px;
    width: 30px;
}

.text-align-right {
    text-align: right;
}

.testimonial-area {
    padding: 80px 0;
}

.great-challenge-text {
    padding-top: 70px;
}

.great-solution-text {
    padding-top: 70px;
}

.display-block {
    display: none;
}

.display-none {
    display: block;
}

.round-gif {
    padding: 12px;
    border-radius: 50px;
    background-color: #fff;
    background-image: url("../images/pencil_1-new.gif");
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
}

.round-gif-white {
    padding: 12px;
    border-radius: 50px;
    background-color: #fff;
    /* background-image: url("../images/pencil_2-new.gif");  */
    width: 35px;
    height: 35px;
}

.button-style-one:hover .round-gif-white {
    padding: 12px;
    border-radius: 50px;
    background-color: #fff;
    background-image: url("../images/pencil_2-new.gif");
    width: 35px;
    height: 35px;
}

.button-style-one:hover .round-gif {
    background-color: var(--primary-color);
}

.header-btns {
    margin-left: 1.5rem;
}

.display-mobile-block {
    display: none;
}

/* --------------------------------------------------
    shybe page start
---------------------------------------------------*/
.shybe-main {
    /* background: url(../../assets/images/shybe/background.svg) no-repeat; */
    padding: 90px 0 0px 0;
    position: relative;
    /* background-size: cover; */
    background-color: #7A8187;
}

.shybe-main #talkbubble {
    background-color: #573961;
}

.shybe-main #talkbubble:before {
    background-image: url(../images/shybe/chat-arrow.svg);
}

.shaybe-second {
    font-weight: normal;
    background: #15161C;
}

.shaybe-third {
    background-color: #27282D;
}

.margin-bottom-third {
    margin-bottom: 80px;
}

.shaybe-third::after {
    background-image: url(../images/shybe/cross-back.svg);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -610px;
    z-index: 0;
    background-size: cover;
}

.shybe-solution .contact-point {
    padding-right: 0px;
}

.padding-right-zero {
    padding-right: 0px;
}

/* --------------------------------------------------
    shybe page End
---------------------------------------------------*/

/* --------------------------------------------------
    Blog page Start
---------------------------------------------------*/
section.blog {
    padding-top: 220px;
    padding-bottom: 330px;
    /* background: #FE7865; */
    background-image: url('../images/blog/aerial-view-man-working-computer.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-info{
    padding-top: 150px;
    padding-bottom: 190px;
    /* background: #FE7865; */
    background-image: url('../images/blog/blog-single.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-sprint-planning{
    padding-top: 150px;
    padding-bottom: 190px;
    background-image: url('../images/blog/blog-bg-5.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-daily-standup{
    padding-top: 150px;
    padding-bottom: 190px;
    background-image: url('../images/blog/blog-bg-2.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-sprint-review{
    padding-top: 150px;
    padding-bottom: 190px;
    background-image: url('../images/blog/blog-bg-4.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-sprint-retro{
    padding-top: 150px;
    padding-bottom: 190px;
    background-image: url('../images/blog/blog-bg-3.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.blog-backlog-refinement{
    padding-top: 150px;
    padding-bottom: 190px;
    background-image: url('../images/blog/blog-bg-1.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}


.blog-managenent{
    padding-top: 150px;
    padding-bottom: 150px;
    /* background: #FE7865; */
    background-image: url('../images/blog/image-42.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}


.codefy-blog-title{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.codefy-blog-desc{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}
.codefy-blog-desc-singkle{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
}
.relative-position{
    position: relative;
}
.blog-main-down-arrow{
    left: 50%;
    position: absolute;
    bottom: 53px;

}
.next-idea-built{
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../images/blog/working-together-call-center-office.png);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px #000000a8;
}
.next-idea-built-title{
    color: var(--White, #FFF);
font-family: "Open Sans";
font-size: 48px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.next-idea-built-desc{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px; /* 166.667% */
}
.next-idea-input{
    border-radius: 8px;
    border: 1px solid #CACACA;
    background: var(--White, #FFF);
    color: #000;
    padding: 10px;
    width: 100%;
}
.next-idea-input::placeholder{
color: #888888;
}
.next-idea-submit{
    border-radius: 8px;
    background: #E8768C;
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 12px;
    width: 100%;
}


/* --------------------------------------------------- */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

.fade-in {
    animation: slideIn 1s ease-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }




.main-blog {
    padding: 60px 0;
}

.main-box {
    /* border: 1px solid #CCCCCC; */
    height: 100%;
   

}



  .hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.visible {
    /* opacity: 1;
                        transform: translateY(0); */
    animation: slideIn 1s ease-out;

}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* Move up by 20 pixels */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  /* ----------------------------------------------- */


.home-email-input{
    color:#fff !important;
}
.main-box{
    overflow: hidden;
      position: relative;
      transition: transform 0.5s ease;
}


.blog-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 15px;
}

.comment-view {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
}

.like-icon {
    color: #FF0000;
}

.bottom-part {
    padding: 25px 20px;
    text-align: left;
}

.title .readMore {
    color: #4299FF;
}
.blog-link:hover{
    color: #000;
}

.title h4 {
    padding-bottom: 5px;
}

.title p {
    font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}

.blog-author-content p {
    font-weight: 500;
    line-height: 18px;
    font-size: 16px;
}

.right-side h2 {
    line-height: 1;
    font-weight: 700;
    padding-bottom: 13px;
}

.right-side a {
    padding: 7px 25px;
    font-size: 16px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
.discover-more{
    color: #000;
font-family: "Open Sans";

font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: capitalize;
}
.explore-topics{
    background-color: #CFEEF7;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 20px;
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.ios {
    background-color: #F6C9C2;
    width: fit-content;
    padding: 6px 25px;
    border-radius: 20px;
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.ios:hover{
    color: #000;
    box-shadow: 10px 10px 5px #585757;
}

.pink-back {
    background-color: #FFD4E8;
    width: fit-content;
    padding: 6px 25px;
    border-radius: 20px;
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.yellow-back {
    background-color: #EAE3C2;
    width: fit-content;
    padding: 6px 25px;
    border-radius: 20px;
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blue-back {
    background-color: #CFEEF7;
    width: fit-content;
    padding: 6px 25px;
    border-radius: 20px;
    color: #000;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.explore-topics:hover,
.ios:hover,
.pink-back:hover,
.yellow-back:hover,
.blue-back:hover
{
    color: #000;
    box-shadow: 4px 4px 15px #a3a3a3;
}

.borderd-div{
    background-color: #D2D2D2;
    height: 1px;
    width: 100%;
}

.gap {
    gap: 30px 0;
}

.more-main {
    text-align: center;
}

.more-main a {
    background: #EEEEEE;
    font-weight: 600;
    padding: 15px 50px;
    border-radius: 10px;
}

.show-more {
    display: none;
}
.mote-blog-links{
    display: flex;
}

/* --------------------------------------------------
    Blog page End
---------------------------------------------------*/

/* --------------------------------------------------
    project-management page start
---------------------------------------------------*/
section.management {
    background: #ffffff;
    border-bottom: 1px solid #DBDBDB;
}

.button-tab {
    background: #F8F8F8;
    padding: 20px;
}

.postin-relative {
    position: relative;
}

.button-tab a {
    padding: 7px 25px;
    font-size: 14px;
    display: inline-block;
    border-radius: 50px;
    font-weight: 600;
}

.button-tab a:hover {
    color: #000;
}

.main-heading {
    text-align: center;
    padding: 60px;
}

.main-heading p {
    font-weight: 600;
    color: #6A6A6A;
    font-size: 16px;
}

.main-heading h1 {
    font-weight: 600;
}

.main-heading-description .blog-author {
    display: inline-flex;
    padding-top: 10px;
}

.main-heading-description h1 {
    font-weight: 700;
}

.main-heading-description h1 span {
    font-weight: 500;
}

.main-heading-description p {
    color: #000;
}

.management-descrption {
    border-bottom: 1px solid #DBDBDB;
}

.main-desctipion {
    padding-top: 15px;
}

.main-desctipion p {
    font-size: 16px;
}

.title-desc {
    padding: 25px 0 0 0;
}

.title-desc h5 {
    padding-bottom: 5px;
}

.title-desc ul {
    padding: 25px;
    font-size: 16px;
}

.title-desc ul li {
    list-style: disc;
}

table {
    border: 1px solid #DFDFDF;
    margin: 25px 0 0 0;
}

table th {
    text-align: center;
    padding: 15px 20px;
    background: #F8F8F8;
    border-right: 1px solid #DFDFDF;
    border-bottom: 1px solid #DFDFDF;
}

table tr td {
    border-right: 1px solid #DFDFDF;
    padding: 20px 30px;
    text-align: center;
    border-bottom: 1px solid #DFDFDF;
}

.main-join-list {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    padding: 30px;
    background-color: #ffffff;
}

.main-join-list h4 {
    padding-bottom: 15px;
}

.main-join-list p {
    padding-bottom: 15px;
    font-weight: 500;
}

.main-join-list .form-control {
    border: none;
    border-bottom: 1px solid #DFDFDF;
    border-radius: 0px;
    padding: 0 0 10px 0;
    font-size: 15px;
    margin-bottom: 15px;
}

.main-join-list .form-control:focus {
    box-shadow: none;
}

.main-join-list .form-check-input[type=checkbox] {
    border-radius: 11px;
    font-size: 18px;
    margin-left: -20px;
    padding: 8px;
}

.main-join-list .form-check {
    display: flex;
    gap: 10px;
    font-weight: 500;
}

.main-join-list .subscribe-btn {
    width: 100%;
    margin-top: 20px;
}

.sprint-review ul {
    padding: 5px 25px;
}

/* --------------------------------------------------
    project-management page End
---------------------------------------------------*/

/* ------------- Case study  --------------------------------- */
.case-study .hero-section{
    margin-top: 90px;
    background-image: url('../images/caseStudy/main-section.png');
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
    height: 680px;
    z-index: 0;
    padding: 93px 93px 0px 93px;
}
.hero-section .hero-section-point{
    position: relative;
}
.hero-section .hero-section-description{
    
    position: absolute;
    top: 39px;
    left: 50px;
    width: 500px;
}
.fs-16-white{
    color: var(--White, #FFF);
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px; 
}


#casestudyBubble {
    width: 100%;
    height: auto;
    background: #002D05E5;
    position: relative;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 30px;
    color: #fff;
    padding: 30px;
    margin: 50px 0;
}

#casestudyBubble:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    right: -120px;
    top: 50px;
    width: 125px;
    height: 100%;
    background-image: url(../images/caseStudy/chat-arrow-green.svg);
}





.fs-20-white-light{
    color: var(--White, #FFF);
    font-family: "Open Sans";
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px; 
}
.hero-section .dect-author{
    margin-top: 10px;
    color: var(--White, #FFF);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
.hero-section .app-logo{
    position: absolute;
    bottom: 85px;
    right: 53px;
}
.pickball-section{
    background: #15161C;
    padding: 40px 40px;
}
.in-a-nutshell-main{
    /* height: 400px; */
    width: 100%;
}
.in-a-nutshell-main h1{
  font-size: 32px;
}
.text-white{
    color: #fff;
}
.nutshell-main-background{
    background-image: url('../images/caseStudy/baseBall-backgroubd.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    box-shadow: inset 0 0 0 2000px #002506d1;
    padding: 50px 99px; 
}
.an-app-dedicated{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
}
.text-blue{
    color: #60D6F7;
    font-weight: 700;
}
.text-yellow{
    color: #E9C935;
    font-weight: 700;
}
.text-pink{
    color: #FE7FBB;
    font-weight: 700;
}
.codefy-initiated-by{
    background: #15161C;
    padding: 80px 80px;
}
.fs-32-white-light{
    color: var(--White, #FFF);
    font-family: "Open Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}
.bold-text{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; 
}
.text-p-red{
    color: #FE7865; 
    font-weight: 700;
}
.decoding-difficulties{
    background-color: #04240b;
}
.decoding-background{
    background-image: url('../images/caseStudy/decoding-background.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    padding: 50px 99px; 
    overflow: hidden;
}
.text-40-white{
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text-24-white{
    color: var(--White, #FFF);
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
}
.cracking-the-code-main{
    background-color: #04240b;
}
.cracking-the-code{
    background-image: url('../images/caseStudy/Cracking-the-Code.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    padding: 50px 99px; 
    overflow: hidden;
}
.cracking-the-image img{
    height: 500px;
}

.mobile-circle-image{
    margin-bottom: -65px;
    /* position: absolute;
    bottom: -40px;
    height: 100%; */
}
.cracking-image{
    margin-bottom: -65px;
    /* position: absolute;
    bottom: -52px;
    left: 36%; */
}


.computer-the-code-main{
    background-color: #04240b;
    position: relative;
}
.computer-the-code{
    background-image: url('../images/caseStudy/computer-background.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    padding: 50px 99px; 
}
.computer-the-image img{
    
    margin-left: -7rem;
}
.subscribe-our-newsletter{
    border-radius: 10px;
    background-color: #fff;
    margin-top: 4rem;

}
.our-newsletter{
    border-radius: 10px 10px 0px 0px;
    background: #F6F6F6;
    color: #000;
    font-family: "Open Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;

}
.input-email{
    border-radius: 8px;
    border: 1px solid #CACACA;
    background: var(--White, #FFF);
    width: 466px;
    height: 50px;
    padding: 10px;
}
.subscrebe-bitton{
    border-radius: 8px;
    background: #E8768C;
    color: var(--White, #FFF);
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 200px;
    height: 50px;
}
.form-check-input:checked{
    background-color: #E8768C;
    border-color: #E8768C;
}
.form-check-input:checked:focus{
    box-shadow: none;
}
.error{
    color: #C72C2C;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.blue-svg{
    display: flex;
    width: 20px;
    height: 20px;
    padding: 3px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid var(--Blue, #2C68D8);
    background: var(--Blue, #2C68D8);
}

.subscrebe-text{
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.flex-class{
    display: flex;
}
.mas-four{
    margin-left: 20px;
}

/* banner area  custom*/

.main-area {
    font-family: 'Arial', sans-serif; /* Replace with the exact font if known */
    color: #fff; /* Assuming white text from your screenshot */
  }
  
  .banner-area-custom {
    height: 550px;
    background-color: #000; 
  }
  .container img{
    
    }
  /* .banner-area-custom .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%; 
  } */
  
  /* .banner-area-custom img.banner-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
  }
   */
  .banner-content-custom-software {
    max-width: 540px; 
  }
  
  .banner-content-custom-software h1 {
    font-size: 48px; 
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .banner-content-custom-software p {
    font-size: 18px; 
    line-height: 1.6;
    color: #ccc; 
    margin-bottom: 30px;
  }
  
  .consultation-button {
    display: inline-block;
    text-decoration: none;
    background-color: #00BFFF; 
    color: #000; 
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .consultation-button:hover {
    background-color: #009ACD; 
  }
  
  @media (max-width: 991px) {
    .banner-area-custom {
      flex-direction: column;
      text-align: center;
    }
  
    .banner-area-custom .container {
      flex-direction: column;
    }
  
    .banner-area-custom img.banner-image {
      margin-bottom: 30px;
    }
  
    .banner-content-custom-software {
      max-width: 100%;
    }
  }
  


/* banner area  mobile*/

.mobile-app-service .contact-us-bitton{
    border-radius: 4px;
    background: #60D6F7;
    border: 1px solid #60D6F7;
    color: #000;
    padding: 10px 25px;
    font-weight: 700;
}
.mobile-app-service .contact-us-bitton:hover{
    border-radius: 4px;
    border: 1px solid #60D6F7;
    background-color: transparent;
    color: #fff;
    padding: 10px 25px;
    font-weight: 700;
}
.mobile-app-service .banner-area-mobile{
    position: relative;
        padding-top: 180px;
        background: #000;
        /* padding-bottom: 180px; */
        overflow: hidden;
}

.banner-area-mobile .banner-content{
    padding-bottom: 180px;
}

.light-shadow-svg{
    position: absolute;
    top: -70px;
    left: 10px;
}
.light-shadow-svg2{
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.mobile-app-service .banner-image-position svg{
    position: absolute;
    bottom: -350px;
    right: -128px;
    z-index: 1;
}
.mobile-app-service .banner-image-position img{
    z-index: 2;
    position: absolute;
    bottom: -350px;
}
.text-white-mobile-app{
    color:  #FFF;
    font-family: "Open Sans";
    font-size: 43px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.text-white-mobile-app .primary-color{
    color: #e47667;
    font-family: "Open Sans";
    font-size: 43px;
    font-style: normal;
}
.banner-content .cd-normal-font{
    font-size: 18px;
    font-family: "Open Sans";
    font-weight: 500;
    line-height: 1.3;
}

 



.mobile-app-service .technologies-we-use{
background-color: #292A2F;
padding: 70px 70px 42px 70px;
text-align: center;
overflow: hidden;
}
.technologies-we-use .round-big-ring{
    position: absolute;
    left: 0px;
    top: 235px;
    width: 100%;
    height: 1386px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.technologies-we-use .round-mid-ring{
    position: absolute;
    left: 145px;
    top: 445px;
    width: 80%;
    height: 1386px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.technologies-we-use .round-small-ring{
    position: absolute;
    left: 278px;
    top: 590px;
    width: 60%;
    height: 1386px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
}



.font-14-normal{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.font-16-bold{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.font-16-bold-aquea{
    color: #60D6F7;
font-family: "Open Sans";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 32px;
}
.font-16-normal{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.font-16-normal-black{
    color: #000;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.font-18-bold{
    color:  #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    }
.font-20-bold{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.font-20-normal{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.font-22-normal{
    color: #FFF;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.custom-mt-6{
    margin-top: 5rem;
    justify-content: space-around;
}
.custom-mt-3{
    margin-top: 1rem;
    justify-content: space-around;
}

.bg-pink-500{
    /* padding-top: 84px; */
    background: #6A226E;
}
.bg-pink-900{
    background: #28002A;
    height: 250px;
    
}
.bg-indigo-500{
    /* padding-top: 77px; */
    background: #362265;
}
.bg-indigo-900{
    background: #09031B;
    height: 250px;
}
.bg-green-500{
    background-color: #002D05;
}
.our-featured-work{
    /* max-width: 1400px; */
    margin: auto;
}
.our-featured-work .div-fix-height{
    height: 480px;
}
.bg-green-900{
    background: #051F08;
    height: 250px;
}


.our-featured-work .featured-work-img{
    margin-top: 85px;
    height: 100%;
}
.our-featured-work .featured-work-img2{
    width: 100%;
    height: 100%;
    margin-top: 85px;
}

.our-featured-work .overflow-hide{
    padding: 20px;
    overflow: hidden;
}
.our-featured-work .mt-custom{
    margin-top: 10px;
}
.w-full{
    width: 100%;
    margin: 0px;
}
.our-featured-work .mobile-app-industries{
padding-left:300px;
padding-right:300px;
}
.mobile-app-service .different-Industries{
    background-color: #1C1C1D;
    padding: 70px 70px 42px 70px;
    text-align: center;
  }
.different-Industries .app-industries-info{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: background-color 0.3s ease;
}
.colum-class:hover .app-industries-info{
    background-color: #FE7865;
}

/* .white-ring-div,
.pink-ring-div{
    position: absolute;
    top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
} */
.white-ring-div{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}
.pink-ring-div{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 1px solid #e47667;
    transition: all 0.5s ease;
}
.colum-class:hover .app-industries-info1{
    background-color: #FE7865;
}

.colum-class:hover .white-ring-div {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.colum-class:hover .pink-ring-div{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid #e47667;
}

.colum-class{
    position: relative;
}



.white-ring-div,
.pink-ring-div{
    position: absolute;
  top: 29%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.white-ring-div{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid #fff;
    transition: all 0.5s ease;
}
.pink-ring-div{
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 1px solid #e47667;
    transition: all 0.5s ease;
}
.colum-class:hover .app-industries-info1{
    background-color: #FE7865;
}

.colum-class:hover .white-ring-div {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.colum-class:hover .pink-ring-div{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid #e47667;
}








.custom-mt-6 .colum-class{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* .custom-mt-3 .colum-class{
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

.mobile-app-service .reach-users-platform{
    background-color: #292A2F;
    text-align: center;
}



.text-white-55{
    color:  #FFF;
    font-family: "Open Sans";
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.text-white-55 .primary-color{
    color:  #FE7865;
}
.reach-users-platform .all-users-platform-info{
    background: var(--White, #FFF);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.50);
    padding: 40px 1px;
}
.all-users-platform-info .custom-height{
    height: 90px;
}
.font-24-black{
    color: #000;
    text-align: center;
    font-family: "Open Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.font-18-black{
    color: #000;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.technologies-table table{
border: none;
}
.technologies-table table tr{
    border-top: 1px solid #696969;
}
.technologies-table table .border-bottom{
    border-bottom: 1px solid #696969;
}
.technologies-table table tr td{
    border: none;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 15px;
}
.technologies-table .content-info{
    border-radius: 10px;
    background:  #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
    padding: 0px 20px;
    height: 48px;
    width: max-content;
}
.reach-users-platform .border-bottom{
    border-bottom: 1px solid #696969;
}
.reach-users-platform .border-right{
    border-right: 1px solid #696969;
}
.bg-black00{
    background-color: #000;
    transition: background-color 0.3s ease;
    height: 100%;
}

.bg-black00:hover{
background-color: #FE7865;
}
.bg-white-custom{
    border-radius: 4px;
border-bottom: 8px solid #74DBF8;
background: var(--White, #FFF);
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}
.testimonials-main{
    background-color: #1C1C1D;
    padding: 70px 70px 42px 70px;
}
.text-aquea{
    color: #60D6F7;
    font-size: 50px;
    font-style: italic;
    margin-top: 10px;
}
.testimonials-main .slick-prev{
    opacity: 1;
    background-color: transparent;
    color: transparent;
}
.testimonials-main .slick-prev::before{
    content: url('../images/mobileService/arrow-right.svg');
    position: absolute;
    left: -55px;
    top: 41%;
    opacity: 1;
}
.testimonials-main .slick-next{
    opacity: 1;
    background-color: transparent;
    color: transparent;
}
.testimonials-main .slick-next::before{
    content: url('../images/mobileService/arrow-left.svg');
    position: absolute;
    right: -55px;
    top: 41%;
    opacity: 1;
}
.mobile-page-blog-main .mobile-page-blog{
background-color: #fff;
border-radius: 4px;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
}
.testimonials-main .search-input{
    border-radius: 8px;
    background:  #FFF;
    width: 100%;
    padding: 12px;
    color: #000;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.testimonials-main .search-botton{
    position: absolute;
    right: 7px;
    top: 7px;
}
.testimonials-main .quick-links{
    color: #64D6FF;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; 
}
.testimonials-main .border-top{
    border-top:1px solid #696969;
}
.testimonials-main .border-bottom{
    border-bottom:1px solid #696969;
}
.hoverCircle figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.hoverCircle figure:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


.slick-slider .custom-dot{
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 48%;
    display: inline-block;
    margin: 0 5px;
}
.slick-slider .slick-active .custom-dot{
    background-color: #60D6F7;
}
.slick-slider .slick-dots {
display: flex;
position: absolute;
    bottom: -5px;
     

}
.mobile-faq-section{
    margin-left: 0px !important;
}

@media only screen and (max-width: 1024px) {
    .font-18-bold {
        font-size: 14px;
    }
    .contactus-content h1{
        font-size: 36px;
    }
    #casestudyBubble{
        width: 500px;
    }
    .mobile-app-service .banner-area-mobile{
        padding-bottom: 60px;
    }
    .our-featured-work .featured-work-img{
        margin-top: 55px;
        height: auto;
    }
    .our-featured-work .div-fix-height{
        height: 350px;
    }
    .our-featured-work .featured-work-img2{
        margin-top: 55px;
    }
    .bg-pink-900,
    .bg-indigo-900,
    .bg-green-900{
        height: 300px 
    }
    .technologies-we-use .round-mid-ring{
        left: 120px;
    }
    .technologies-we-use .round-small-ring{
        left: 225px;
    }
    .light-shadow-svg2{
        left: -170px;
    }
    
}
@media only screen and (max-width: 820px) {
    .our-featured-work .div-fix-height {
        height: 280px;
    }
    .apps-we-built .we-box .desc-box{
        padding: 35px;
    }
    .custom-mt-6 .colum-class{
        width: 25%;
    }
    .bg-pink-900,
    .bg-indigo-900,
    .bg-green-900{
        height: 370px;
    }
    .banner-image-position svg{
        width: 495px;
        height: 400px;
    }
    .mobile-app-service .banner-area-mobile{
        padding-bottom: 38px;
    }
    .text-white-55{
        font-size: 40px;
    }
    .hero-section{
        overflow: hidden;
    }
    .email-svg svg{
      height: 50px;
      width: 50px;
    }
    .case-study .hero-section,
    .nutshell-main-background,
    .decoding-background,
    .cracking-the-code,
    .computer-the-code,
    .mobile-app-service .different-Industries,
    .mobile-app-service .reach-users-platform,
    .codefy-initiated-by,
    .testimonials-main{
        padding:50px;
    }
    .mobile-app-service .technologies-we-use{
        padding: 50px;
    }
    .subscribe-our-newsletter{
        margin-top: 3rem;
    }
    .computer-the-image img {
        margin-left: -4rem;
    }
    .great-challenge-text{
        padding-top: 20px;
    }
    .mote-blog-links{
        display: block;
    }
    .technologies-we-use .round-big-ring {
        left: 0px;
        top: 235px;
        width: 100%;
        height: 1665px;
    }
    .technologies-we-use .round-mid-ring{
        left: 82px;
        width: 80%;
        height: 1500px;
    }
    .technologies-we-use .round-small-ring {
        left: 167px;
    }
    
    
   
}
@media only screen and (max-width: 767px) {
    .custom-mt-6 .colum-class{
        width: 50%;
    }
    
    .testimonials-main .slick-next::before{
        right: 5px;
        z-index: 22;
    }
    .testimonials-main .slick-prev::before{
        left: 5px;
        z-index: 22;
    }
    .mobile-app-service .technologies-we-use,
    .mobile-app-service .different-Industries,
    .mobile-app-service .reach-users-platform,
    .testimonials-main{
        padding: 20px;
    }
    .our-featured-work .div-fix-height {
        height: 435px;
    }
    .bg-pink-900,
    .bg-indigo-900,
    .bg-green-900{
        height: 270px;
    }
    .custom-cols {
        display: flex;
        flex-wrap: wrap;
        margin: -5px;
    }
    .text-white-55{
        font-size: 32px;
    }
    .codefy-blog-title{
        font-size: 30px;
    }
    .codefy-blog-desc{
        font-size: 16px;
        line-height: 28px;
    }
    .case-study .hero-section {
        margin-top: 83px;
    }
    .case-study .hero-section,
    .nutshell-main-background,
    .decoding-background,
    .cracking-the-code,
    .computer-the-code,
    .codefy-initiated-by{
        padding:20px;
    }
    .fs-32-white-light{
        line-height: 40px;
    }
    
    .flex-class{
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .input-email{
        width: 100%;
        margin-bottom: 5px;
    }
    .mas-four{
        margin-left: 2px;
    }
    .our-newsletter{
        font-size: 15px;
    }
    .email-svg{
        text-align: center;
    }
    .computer-the-code{
        padding: 20px;
    }
    .pickball-section{
        padding: 20px;
    }
    .bold-text{
        font-size: 25px;
    }
    .fs-32-white-light{
        font-size: 24px;
        text-align: center;
    }
    .text-40-white{
        font-size: 30px;
    }
    .hero-section-point svg{
        width: 100%;
    }
    .hero-section .hero-section-description {
        top: 105px;
    left: 21px;
    width: 300px;
    }
    .fs-20-white{
        font-size: 12px;
        line-height: 15px;
    }
    .hero-section .dect-author{
        font-size: 15px;
    }
    .computer-the-image img {
        margin-left: -2rem;
    }
    #casestudyBubble{
        width: 100%;
    }
    .banner-image-position{
        height: 270px;
    }
    .mobile-app-service .banner-image-position svg{
        bottom: -93px;
    }
    .mobile-app-service .banner-image-position img{
        bottom: -94px;
    }
    .hoverCircle{
        height: 100%;
        position: relative;
    }
    .reach-users-platform .border-right{
        border-right: 0px transparent;
    }

    .technologies-we-use .round-big-ring {
       display: none;
    }
    .technologies-we-use .round-mid-ring{
        display: none;
    }
    .technologies-we-use .round-small-ring {
        display: none;
    }
    .light-shadow-svg{
        left: -151px;

    }
    .light-shadow-svg2{
        top: 35rem;
    }
}


 
.expertise-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: white;
    background-color: black; 
    height: 600px;
}

.expertise-list {
    list-style: none;
    padding-left: 0;
}

.expertise-list li {
    margin-bottom: 10px;
    font-size: 20px; /* Adjust size as needed */
    color: #fff; /* White text color */
    opacity: 0.5; /* Less emphasis on the list */
}

.expertise-list li:hover,
.expertise-list li.active {
    opacity: 1; /* Full emphasis when active/hover */
}

.expertise-content {
    border-left: 3px solid white;
    padding-left: 20px;
}

.expertise-content h2 {
    font-size: 24px; /* Adjust size as needed */
    margin-bottom: 20px;
}

.expertise-content p {
    font-size: 16px; /* Adjust size as needed */
    line-height: 1.5; /* For better readability */
}

.carousel-indicators {
    text-align: center;
}

.carousel-indicators .dot {
    height: 10px;
    width: 10px;
    background-color: #555;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .dot.active {
    background-color: #fff;
}

.carousel-controls {
    text-align: center;
    font-size: 30px;
    margin-top: 20px;
}

.carousel-controls .arrow {
    cursor: pointer;
    color: #fff;
}

.tab-content {
    padding: 20px;
    margin-top: -5px; /* Align with the list items above */
}

.nav-pills .nav-link {
    color: #fff; 
    opacity: 0.4; 
    font-size: 24px; /* Larger font size */
    white-space: nowrap; /* Keep text in a single line */
    overflow: hidden; /* Prevent text from spilling over */
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
    padding: 22px;
    margin-top: 10px;
}

.nav-pills .nav-link.active {
    opacity: 1; 
    color: #fff;
    background-color: transparent;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: white;
    background-color: transparent;
}
.indicator-dots {
    text-align: center;
}

 

.dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #666;
    border-radius: 50%;
    margin: 5px;
}

.dot.active {
    background-color: white;
}
.container2{
    width: 2%;
    margin-top: 120px;
}
.container3{
    height: 700px;
    width: 1100px;
    margin-top: -615px;
    background-color:#1C1C1D;
    margin-left: 400px;
}
.dotboxs {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: absolute;
    left: 0;
    right: 0;
    margin: 20px;
    bottom: 0; 
}

.dotboxs > .text-left {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
}

/* Center the dots in the middle */
.dotboxs > .indicator-dots {
    flex-grow: 2;
    display: flex;
    justify-content: start; /* Centers the dots */
}

/* Align the next button to the right */
.dotboxs > .text-right {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end; /* Aligns content to the right */
}
/* .row{
    padding: 50px;
} */
/* .subcontainer2{
    width: 90%;
    max-height: fit-content;
    position: relative;
    top: 18%;
    left: 20%;
} */
.subcointainer3{
    position: absolute;
    top: 110px;
    background-color: 
    #292A2F;
    width: 750px;
    right: 22%;
    height: 420px
}

.container3 h1 {
    font-size: 36px;
     margin-top: 40px;
     margin-left: 20px;
}
 
#expertiseTabContent .tab-pane p {
    margin-top: 30px; /* Adds space above each paragraph */
    font-size: 16px; /* Sets the font size */
    line-height: 1.6; /* Sets the line height for better readability */
    color: #ffffff; /* Sets the text color, change as needed */
}
 
@media (max-width: 768px) {
    .expertise-section {
        display: none; /* This hides the section on screens smaller than 768px */
    }
}
 