/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/

/* 
    Created on : 7 Apr, 2021, 4:47:05 PM
    Author     : Ashvin Hirapara
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    outline: none;
    color: #7a7a7a;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/* #Primary
================================================== */

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    background-color: #fff;
}

::selection {
    color: #fff;
    background-color: #dc4f35;
}

::-moz-selection {
    color: #fff;
    background-color: #dc4f35;
}

/* #Navigation
================================================== */

header {
    background-color: #fff;
}

header .navigation-wrap .container {
    position: relative;
    z-index: 5;
}

header .b-layer {
    position: absolute;
    z-index: 1;
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0.7;
}

header .start-header {
    opacity: 1;
    transform: translateY(0);
    padding: 10px 0;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .start-header.scroll-on .navbar-brand img {
    height: 40px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .navbar {
    padding: 1rem 0;
    box-shadow: none;
}

header .navbar-brand {
    padding: 0px;
}

header .navbar-brand img {
    height: auto;
    width: auto;
    display: block;
    filter: brightness(100%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

header .navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

header .navbar-toggler:active,
header .navbar-toggler:focus {
    outline: none;
}

header .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 300ms linear;
}

header .navbar-light .navbar-toggler-icon:after,
header .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

header .navbar-light .navbar-toggler-icon:after {
    top: 8px;
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

header .nav-link {
    position: relative;
    padding: 10px 0 !important;
    display: inline-block;
    color: #262626 !important;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.28px;
    transition: all 200ms linear;
}

header .nav-item:hover .nav-link {
    color: #dc4f35 !important;
}

header .nav-item.active .nav-link {
    color: #dc4f35 !important;
    font-weight: 800;
}

header .nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #dc4f35;
    opacity: 0;
    transition: all 200ms linear;
}

header .nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

header .nav-item.active:after {
    bottom: 0;
    opacity: 1;
}

header .nav-item.active:hover:after {
    opacity: 1;
}

header .nav-item {
    position: relative;
    transition: all 200ms linear;
}

.navbar.navbar-light .breadcrumb .nav-item.active>.nav-link,
.navbar.navbar-light .navbar-nav .nav-item.active>.nav-link {
    background-color: #fff;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.355em;
    vertical-align: 0.155em;
    content: "";
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
}

/* #Primary style
================================================== */

header .menu {
    transition: all 200ms linear;
    background-color: transparent;
}

header .dropdown-menu {
    padding: 10px !important;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
    background-color: #1f2029;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 3px;
    transition: all 200ms linear;
}

header .dropdown-item {
    padding: 13px 15px 11px 15px;
    color: #fff;
    border-radius: 2px;
    transition: all 200ms linear;
    text-transform: uppercase;
}

header .dropdown-item:hover,
header .dropdown-item:focus {
    color: #fff;
    background-color: rgba(17, 151, 187, .6);
}

/*
header .nav-item .dropdown-menu {transform: translate3d(0, 10px, 0);visibility: hidden;opacity: 0;max-height: 0;display: block;padding: 0;margin: 0;transition: all 200ms linear;}
header .nav-item.show >  .dropdown-menu {opacity: 1;visibility: visible;max-height: 999px;transform: translate3d(0, 0px, 0);}
header .dropdown-menu {padding: 10px!important;margin: 0;font-size: 13px;letter-spacing: 1px;color: #fff;background-color: #1f2029;box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);border: none;border-radius: 3px;transition: all 200ms linear;}
header .dropdown-toggle::after {display: none;}
*/

/* #Link to page
================================================== */

header .logo {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: block;
    z-index: 100;
    transition: all 250ms linear;
}

header .logo img {
    height: 26px;
    width: auto;
    display: block;
    filter: brightness(10%);
    transition: all 250ms linear;
}

header .dropdown-submenu {
    position: relative;
}

header .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

/* SPECIAL : ROTATION des flèches */

header .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 6px;
    top: 16px;
}

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

/* SPECIAL : ROTATION des flèches */

/* Niveau 1 */

header li .dropdown-toggle:after {
    transition: all 0.5s;
}

header li.show>.dropdown-toggle:after {
    transform: rotate(180deg);
}

/* sous-Niveaux suivants */

header li li.show>.dropdown-toggle:after {
    transform: rotate(90deg);
}

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

.calendly-badge-widget {
    left: 15px;
}

.common-header-sec {
    background: url('../images/header-banner.png') no-repeat;
    background-size: cover;
    background-position: bottom center;
    color: #fff;
    padding: 160px 0px 66px 0px;
}

.common-header-sec h1,
.common-header-sec h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 40px;
}

.common-header-sec p {
    font-size: 16px;
    margin-top: 3px;
    line-height: 22px;
}

.common-header-sec p span {
    color: #dc4f35;
}

.height30 {
    height: 30px;
}

.height20 {
    height: 20px;
}

.title h3 {
    font-size: 14px;
    font-weight: 600;
    color: #dc4f35;
    position: relative;
    padding-left: 70px;
}

.title h3:before {
    position: absolute;
    top: 6px;
    left: 0;
    width: 50px;
    height: 2px;
    content: '';
    background-color: #dc4f35;
}

.title h1,
.title h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 43px;
    margin-top: 15px;
    text-transform: uppercase;
    position: relative;
}

.title h1 span,
.title h4 span {
    color: #262626;
    font-weight: 900;
}

.title h2 {
    font-size: 18px;
    font-weight: 800;
    line-height: 24px;
    text-transform: uppercase;
    position: relative;
    color: #262626;
}

.title h2 a {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 15px;
    font-weight: 600;
    color: #dc4f35 !important;
    text-transform: uppercase;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    background-color: #dc4f35;
    padding: 10px 15px 9px 15px;
}

.btn:hover {
    background-color: #117590;
    color: #fff;
}

.home .sm-ui-header {
    background: url('../images/header-banner.png') no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 80px;
}

.home .main-slide-sec .slide {
    background-image: url(../images/home/slider/3.png);
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 600px;
    position: relative;
}

.home .main-slide-sec .get-in-touch {
    font-size: 32px;
    font-weight: 800;
    line-height: 43px;
    padding: 37px;
    background-color: #fff;
    max-width: 800px;
    margin: 0px auto;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    position: relative;
}

.home .main-slide-sec .get-in-touch span {
    font-weight: 900;
    color: #262626;
}

.home .main-slide-sec .get-in-touch .btn {
    position: absolute;
    right: -70px;
    top: 21px;
    margin-top: 15px;
}

.home .owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-left: -160px;
}

.home .owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 4px;
    border-radius: 0;
    background: #0202026b;
    margin: 5px 5px;
}

.home .owl-theme .owl-dots .owl-dot.active span {
    background: rgb(17, 151, 189);
}

.home .mainslide-sec .main-slider .item {
    position: relative
}

.home .mainslide-sec .main-slider .item .layer {
    position: absolute;
    z-index: 1;
    background-color: #000;
    width: 100%;
    height: 100px;
    bottom: 0px;
    left: 0px;
    opacity: 0.5;
}

.home .mainslide-sec .main-slider .item .txt-box {
    position: absolute;
    bottom: 0px;
    z-index: 1;
    width: 100%;
    padding: 20px;
}

.home .mainslide-sec .main-slider .item .txt-box .status {
    display: flex;
}

.home .mainslide-sec .main-slider .item .txt-box h2 {
    font-size: 30px;
    color: #fff;
    padding-bottom: 5px;
    font-weight: 600;
}

.home .mainslide-sec .main-slider .item .txt-box p {
    font-size: 14px;
    color: #fff;
    padding-right: 15px;
}

.home .mainslide-sec .main-slider .item .txt-box .txt p {
    font-size: 14px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    text-align: center;
}

.cus-flex {
    align-items: center;
}

.home .who-we-are-sec {
    padding: 50px 0px 20px 0px;
}

.home .who-we-are-sec .title h4 {
    max-width: 270px;
    margin-bottom: 30px;
}

.home .who-we-are-sec .box h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: #262626;
    margin: 34px 0px 10px 0px;
}

.home .who-we-are-sec .box p {
    font-size: 16px;
    line-height: 22px;
    color: #7a7a7a;
    margin-bottom: 30px;
}

.home .our-project-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.home .our-project-sec .img-container {
    margin-top: 30px;
    position: relative;
}

.home .our-project-sec .img-container i {
    font-size: 14px;
    font-weight: 600;
    color: #fafafa;
    text-transform: uppercase;
    position: absolute;
    padding: 5px 20px;
    border-radius: 20px;
    background-color: #262626;
    bottom: 20px;
    left: 20px;
}

.home .our-project-sec .box {}

.home .our-project-sec .box .data {
    background-color: #fff;
    padding: 18px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: solid 1px #e9e9e9;
    height: 100%;
}

.home .our-project-sec .box h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.home .our-project-sec .box span {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    padding: 7px 0px 0px 15px;
    text-transform: uppercase;
}

.home .our-project-sec .box span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #dc4f35;
    position: absolute;
    border-radius: 5px;
    margin-top: 5px;
    margin-left: -12px;
}

.home .our-event-sec {
    padding: 50px 0px;
}

.home .our-event-sec img {
    margin-top: 30px;
}

.home .our-event-sec .box .data {
    background-color: #fff;
    padding: 18px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: solid 1px #e9e9e9;
    height: 100%;
}

.home .our-event-sec .box h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.home .our-event-sec .box span {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    padding: 7px 0px 0px 15px;
    text-transform: uppercase;
}

.home .our-event-sec .box span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #dc4f35;
    position: absolute;
    border-radius: 5px;
    margin-top: 3px;
    margin-left: -12px;
}

.home button.more-btn {
    font-size: 16px;
    font-weight: 600;
    color: #dc4f35;
    text-transform: uppercase;
    background-color: #fff;
    border: 1px solid #dc4f35;
    padding: 10px 15px 9px 15px;
    border-radius: 10px;
    width: 100%;
    text-align: center
}

.home button.more-btn a {
    color: #dc4f35;
}

.home .news-feed-sec {
    padding: 50px 0px;
}

.home .news-feed-sec img {
    margin-top: 30px;
    width: 255px;
    height: 157px;
}

.home .news-feed-sec .box .data {
    background-color: #fff;
    padding: 18px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: solid 1px #e9e9e9;
    height: 100%;
}

.home .news-feed-sec .box h3 {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.home .news-feed-sec .box span {
    display: inline-block;
    font-size: 12px;
    margin-right: 10px;
    padding: 7px 0px 0px 15px;
    text-transform: uppercase;
}

.home .news-feed-sec .box span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #dc4f35;
    position: absolute;
    border-radius: 5px;
    margin-top: 3px;
    margin-left: -12px;
}

.home .social-media-sec {
    padding: 50px 0;
}

.home .social-media-sec .title {
    margin-bottom: 30px;
}

.home .social-media-sec .card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.home .Headline-sec {
    padding: 50px 0;
}

.home .Headline-sec .headline-carousel .box {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.home .Headline-sec .headline-carousel .box img {
    width: auto;
    margin: 0 auto;
}

.home .testimonial-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.home .testimonial-sec .testimonial {
    font-size: 16px;
    line-height: 25px;
    max-width: 900px;
    margin: 35px auto 30px auto;
    padding: 40px 50px 50px 50px;
    border-radius: 10px;
    border: solid 1px #f5f5f5;
    background-color: #fff;
    text-align: center;
    position: relative;
}

.home .testimonial-sec h5 {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.home .double-quotes {
    position: absolute;
    width: 50px;
    height: 40px;
}

.home .double-quotes.left {
    left: 50px;
    top: -20px;
    background: url(../images/home/testimonial/double-quotes1.png) no-repeat;
}

.home .double-quotes.right {
    right: 50px;
    bottom: -20px;
    background: url(../images/home/testimonial/double-quotes2.png) no-repeat;
}

.home .testimonial-video-sec {
    padding: 20px 50px 50px;
    background-color: #fff;
}

.home .testimonial-video-sec .video-container {
    margin-top: 30px;
}

.home .testimonial-video-sec .video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.home .testimonial-video-sec .video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.home .testimonial-video-sec .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.privacypolicy {
    padding-bottom: 50px;
}

.privacypolicy .info-sec {
    padding-top: 50px;
}

.privacypolicy .info-sec p,
.privacypolicy .other-info p {
    font-size: 16px;
    line-height: 30px;
    position: relative;
    padding-left: 20px;
}

.privacypolicy .info-sec p:before,
.privacypolicy .other-info p:before {
    position: absolute;
    top: 14px;
    left: 0px;
    width: 8px;
    height: 2px;
    content: '';
    background-color: #7a7a7a;
}

.privacypolicy .other-info .title h1 {
    font-size: 18px;
    font-weight: 300 !important;
    line-height: 43px;
    margin-top: 15px;
    position: relative;
    text-transform: capitalize;
}

.aboutus .company-info-sec {
    padding: 50px 0px;
}

.aboutus .chairman-info-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.aboutus .chairman-info-sec .img-container {
    text-align: center;
}

.aboutus .chairman-info-sec .img-container img {
    width: 90%;
}

.aboutus .company-info-sec p,
.aboutus .chairman-info-sec p,
.aboutus .vision-sec p {
    font-size: 18px;
    line-height: 30px;
    margin-top: 30px;
}

.aboutus .vision-sec {
    padding: 50px 0px 20px 0px;
}

.aboutus .vision-sec .box {
    padding-bottom: 30px;
    height: 100%;
}

.aboutus .vision-sec .data {
    text-align: center;
    border-radius: 10px;
    border: solid 1px #e2e2e2;
    padding: 50px;
    height: 100%;
}

.aboutus .vision-sec h4 {
    font-size: 24px;
    font-weight: 600;
}

.aboutus .vision-sec h4 span {
    color: #262626;
    font-weight: 900;
}

.aboutus .vision-sec p {
    margin-top: 10px;
}

.aboutus .next-gen-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.aboutus .next-gen-sec .box {
    margin-top: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.aboutus .next-gen-sec .box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    text-transform: uppercase;
    margin: 20px 0px 7px 0px;
}

.aboutus .next-gen-sec .box .post {
    font-size: 14px;
}

.aboutus .next-gen-sec .box p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
}

.aboutus .work-sec {
    padding: 20px 0px 50px 0px;
}

.aboutus .work-sec .box h3 {
    font-size: 20px;
    font-weight: 900;
    line-height: 28px;
    color: #262626;
    margin: 30px 0px;
    text-transform: uppercase;
    text-align: center;
}

.aboutus .work-sec .box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    margin: 20px 0px 10px 0px;
}

.aboutus .work-sec .box p {
    font-size: 16px;
    line-height: 22px;
    margin: 0px;
}

.project .header-sec {
    background: url('../images/home/green-leaf.png') no-repeat;
    background-size: cover;
    background-position: center center;
    height: 350px;
}

.project .header-sec .btn-container {
    margin-top: 280px;
    text-align: right;
}

.project .tab-sec {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border-bottom: 1px solid #e9e9e9;
}

.project .tab-sec a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    padding: 20px 25px;
    cursor: pointer;
}

.project .details-sec {
    padding: 10px 0px 30px 0px;
    background-color: #fafafa;
}

.project .details-sec .divider {
    height: 1px;
    background-color: #e9e9e9;
    clear: both;
}

.project .details-sec .box {
    border-radius: 5px;
    border: solid 1px #e9e9e9;
    background-color: #ffffff;
    padding: 30px 25px;
    margin-top: 20px;
}

.project .details-sec .sub-title {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

.project .details-sec .sub-title h1,
.project .details-sec .sub-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 24px;
}

.project .details-sec .sub-title blockquote {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 20px;
}

.project .details-sec .sub-title.active i {
    position: absolute;
    height: 2px;
    display: inline-block;
    width: 60px;
    background-color: #dc4f35;
    bottom: 0px;
    left: 0px;
}

.project .details-sec .intro {
    position: relative;
}

.project .details-sec .intro .sub-title h3 {
    margin-bottom: 7px;
}

.project .details-sec .intro .project-status {
    position: absolute;
    border: solid 1px #a2c77d;
    background-color: #eeffdc;
    color: #6f8b53;
    font-size: 12px;
    font-weight: 600;
    right: 25px;
    padding: 7px 15px;
    text-transform: uppercase;
    border-radius: 3px;
}

.project .details-sec .intro p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
}

.project .details-sec .intro .divider-2 {
    height: 1px;
    background-color: #e9e9e9;
    margin: 25px 0px;
}

.project .details-sec .intro h4 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project .details-sec .intro li {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 10px 0px;
    list-style-type: disc;
    margin-left: 17px;
}

.project .details-sec .floating-form h3 {
    margin-bottom: 15px;
}

.project .details-sec .near-by h3 {
    margin: 30px 0px 0px 0px;
}

.project .details-sec .near-by .box {
    padding: 20px 20px 10px 20px;
}

.project .details-sec .near-by .box div {
    padding: 12px 0px 12px 72px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project .details-sec .near-by div.airport {
    background: url(../images/project/domestic-airport.png) no-repeat;
}

.project .details-sec .near-by div.railway {
    background: url(../images/project/railway-station.png) no-repeat;
}

.project .details-sec .near-by div.commercial {
    background: url(../images/project/commercial-hub.png) no-repeat;
}

.project .details-sec .near-by div.office {
    background: url(../images/project/office-block.png) no-repeat;
}

.project .details-sec .near-by div.school {
    background: url(../images/project/school-collage.png) no-repeat;
}

.project .details-sec .near-by div.petrol {
    background: url(../images/project/petrol-pump.png) no-repeat;
}

.project .details-sec .near-by div.mall {
    background: url(../images/project/mall-multiplex.png) no-repeat;
}

.project .details-sec .near-by div.brts {
    background: url(../images/project/brts-route.png) no-repeat;
}

.project .details-sec .near-by div.supermarket {
    background: url(../images/project/super-market.png) no-repeat;
}

.project .details-sec .near-by div.market {
    background: url(../images/project/market-area.png) no-repeat;
}

.project .details-sec .near-by div.diamond {
    background: url(../images/project/diamond.png) no-repeat;
}

.project .details-sec .near-by div.garden {
    background: url(../images/project/garden.png) no-repeat;
}

.project .details-sec .near-by div.market {
    background: url(../images/project/textile.png) no-repeat;
}

.project .details-sec .near-by div.clg {
    background: url(../images/project/clg.png) no-repeat;
}

.project .details-sec .amenities .list {
    margin-top: 10px;
}

.project .details-sec .amenities .list div {
    float: left;
    width: 128px;
    height: 128px;
    text-align: center;
    border: solid 1px #fff;
    padding: 12px 0px;
}

.project .details-sec .amenities .list div p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    line-height: 22px;
}

.project .details-sec .photo-sec .sub-title {
    cursor: pointer;
}

.project .details-sec .photo-sec h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0px;
}

.project .details-sec .photo-sec .photos {
    margin-top: 15px;
}

.project .details-sec .photo-sec .img-container {
    padding: 8px 10px 0px 0px;
}

.project .details-sec .photo-sec .video-container {
    margin-top: 20px;
}

.project .details-sec .map .img-container {
    margin-top: 20px;
}

.project .details-sec .emi-calculator .emi {
    float: right;
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    margin-top: 5px;
}

.homeEmicalculator {
    margin-top: 15px;
}

.homeEmicalculator .clearfix {
    margin-top: 15px;
}

.homeEmicalculator .rangeSliderWrapper .left {
    float: left;
    font-size: 14px;
    margin-top: 7px;
    text-transform: uppercase;
    color: #262626;
}

.homeEmicalculator .rangeSliderWrapper .right {
    float: right;
}

.homeEmicalculator .rangeSliderWrapper .ticker {
    font-size: 14px;
    margin-top: 0px;
    text-transform: uppercase;
    color: #262626;
    padding: 5px;
}

.homeEmicalculator .rangeSliderWrapper .right input,
.homeEmicalculator .rangeSliderWrapper .right input:focus {
    border-radius: 3px;
    border: solid 1px #e9e9e9;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: #262626;
    width: 90px;
    padding: 5px 8px;
    text-align: right;
    outline: none;
}

.homeEmicalculator .range {
    display: block;
    width: 100%;
    margin: 0;
    height: 30px;
    overflow: hidden;
    cursor: pointer;
}

.emiWrapper {
    margin-top: 20px;
    background-color: #fafafa;
    border-radius: 10px;
}

.emiWrapper .left {
    float: left;
    margin-top: 7px;
}

.emiWrapper .sp,
.emiWrapper .sp input {
    color: #262626 !important;
    font-size: 15px;
}

.emiWrapper .left.sp1 {
    margin-top: 5px;
}

.emiWrapper .right {
    float: right;
}

.emiWrapper input {
    border: none;
    background: transparent;
    text-align: right;
    width: 120px;
    color: #7a7a7a;
    font-weight: 600;
}

.emiWrapper .rec {
    padding: 10px 15px 0px 15px;
    font-weight: 600;
}

.emiWrapper .total {
    margin-top: 10px;
    background-color: #7a7a7a;
    color: #fff !important;
    padding: 10px 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.emiWrapper .total .left {
    margin-top: 4px;
}

.emiWrapper .total input {
    color: #fff;
}

.gallery .photo-sec {
    padding: 80px 0px 50px 0px;
}

.gallery .photo-sec .box {
    margin-bottom: 30px;
}

.gallery .photo-sec .box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
    line-height: 27px;
    margin: 10px 0px 10px 0px;
}

.gallery .photo-sec .box p {
    font-size: 16px;
    line-height: 22px;
}

.channel-partner .form-sec {
    padding: 60px 0px;
}

.channel-partner .form-sec .floating-form {
    max-width: 430px;
}

.channel-partner .form-sec .btn {
    width: 200px;
}

.career .form-sec {
    padding: 30px 0px 60px 0px;
}

.career .form-sec .title {
    padding-top: 30px;
}

.career .form-sec .floating-form {
    margin-top: 30px;
}

.career .form-sec .btn {
    width: 200px;
}

.career .job-list-sec {
    padding-top: 30px;
}

.career .job-list-sec .box {
    border-radius: 5px;
    border: solid 1px #e9e9e9;
    padding: 15px 15px 0px 15px;
    position: relative;
    margin-bottom: 15px;
    cursor: pointer;
}

.career .job-list-sec .box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #262626;
    padding-bottom: 15px;
}

.career .job-list-sec .box h3 .arrow {
    background: url("../images/down-arrow.png") no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 10px;
}

.career .job-list-sec .box p {
    padding-bottom: 10px;
}

.career .job-list-sec .box p label {
    width: 130px;
    display: inline-block;
}

.career .job-list-sec .divider {
    height: 1px;
    background-color: #e9e9e9;
    margin: 5px 0px 15px 0px;
}

.career .job-list-sec h5 {
    font-size: 15px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 5px;
}

.career .job-list-sec ul {
    padding-bottom: 15px;
}

.career .job-list-sec ul li {
    font-size: 14px;
    color: #464a4d;
    padding-top: 7px;
    line-height: 22px;
    list-style: circle;
    margin-left: 17px;
}

.event .event-list-sec {
    padding: 50px 0px;
}

.event .event-list-sec img {
    margin-top: 30px;
}

.event .event-list-sec .box .data {
    background-color: #fff;
    padding: 18px 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: solid 1px #e9e9e9;
    height: 100%;
}

.event .event-list-sec .box h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.event .event-list-sec .box span {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    padding: 7px 0px 0px 15px;
    text-transform: uppercase;
}

.event .event-list-sec .box span:before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: #dc4f35;
    position: absolute;
    border-radius: 5px;
    margin-top: 3px;
    margin-left: -12px;
}

.event .social-media-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.event .social-media-sec .title {
    margin-bottom: 30px;
}

/*.event .social-media-sec .twitter{}*/

/*.event .social-media-sec .box{border-radius: 10px;border: solid 1px #e9e9e9;margin-top: 30px;min-height: 442px;max-height: 442px;overflow-y: auto;}*/

/*.event .social-media-sec .box-1{margin-top: 20px;}*/

.event .social-media-sec .card {
    box-shadow: none;
    border: solid 1px #e9e9e9;
    border-radius: 10px;
}

.event .social-media-sec .card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #262626;
}

.event .social-media-sec p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    color: #7a7a7a !important;
}

.event .social-media-sec small {
    font-size: 12px;
    color: #999;
}

.event .photo-sec {
    padding: 50px 0px;
}

.event .photo-sec img {
    height: 250px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
}

.event .box {
    margin-top: 30px;
}

.event .video-sec {
    padding: 50px 0px;
    background-color: #fafafa;
}

.event .video-container {
    margin-top: 30px;
}

.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.our-it-product .header-sec {
    background: url('../images/itproduct/hr/header-back.jpg') #fafafa no-repeat;
    background-size: cover;
    background-position: left center;
    height: 570px;
    color: #fff;
}

.our-it-product .header-sec .box {
    position: relative;
}

.our-it-product .header-sec .box .data-container {
    position: relative;
    z-index: 10;
}

.our-it-product .header-sec .box .img-container {
    position: absolute;
    top: -25px;
    right: 0px;
    z-index: 9;
}

.our-it-product .header-sec h5 {
    font-size: 26px;
    margin-top: 145px;
    line-height: 32px;
}

.our-it-product .header-sec h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
}

.our-it-product .header-sec p {
    margin: 40px 0px 44px 0px;
}

.our-it-product .app-store a {
    display: inline-block;
    height: 54px;
}

.our-it-product a.play-store {
    background: url('../images/itproduct/playstore.png') no-repeat;
    width: 174px;
}

.our-it-product a.apple-store {
    background: url('../images/itproduct/appstore.png') no-repeat;
    width: 158px;
    margin-left: 10px;
}

.our-it-product .header-sec .btn {
    background-color: #fff;
    padding: 13px 0px 12px 0px;
    margin: 40px 0px 0px 0px;
    color: #dc4f35;
    font-weight: 700;
    width: 170px;
}

.our-it-product .app-feature {
    background-color: #fafafa;
    padding: 130px 0px 70px 0px;
}

.our-it-product .app-feature .box-container {
    padding-top: 80px;
    height: 100%;
}

.our-it-product .app-feature .box {
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    padding: 50px;
    height: 100%;
}

.our-it-product .app-feature .box img {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -45px;
}

.our-it-product .app-feature .box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #262626;
    margin: 30px 0px 10px 0px;
    text-transform: uppercase;
}

.our-it-product .app-feature .box p {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 26px;
}

.our-it-product .app-detail-feature {
    background-color: #fff;
    padding: 40px 0px 40px 0px;
}

.our-it-product .app-detail-feature .img-container {
    text-align: center;
}

.our-it-product .app-detail-feature h2 {
    font-size: 32px;
    color: #262626;
    font-weight: 800;
}

.our-it-product .app-detail-feature p.desc {
    font-size: 18px;
    color: #7a7a7a;
    line-height: 30px;
    margin: 10px 0px 20px 0px;
}

.our-it-product .app-detail-feature .box {
    padding: 20px;
    border-radius: 3px;
    border: solid 1px #e9e9e9;
}

.our-it-product .app-detail-feature .box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #262626;
    cursor: pointer;
    position: relative;
}

.our-it-product .app-detail-feature .box h3 span {
    background: url('../images/itproduct/plus-icon.png') no-repeat;
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 0px;
}

.our-it-product .app-detail-feature .box.open h3 span {
    background: url('../images/itproduct/minus-icon.png') 0px 6px no-repeat;
}

.our-it-product .app-detail-feature .box ul {
    margin-top: 15px;
    display: none;
}

.our-it-product .app-detail-feature .box.open ul {
    display: block;
}

.our-it-product .app-detail-feature .box ul li {
    font-size: 16px;
    margin: 7px 0px 0px 20px;
    line-height: 24px;
    list-style: circle;
}

.our-it-product .app-detail-feature .app-store {
    margin-top: 20px;
}

.blog .blog-sec {
    margin-top: 50px;
}

.blog .blog-sec .box {
    margin-bottom: 50px;
}

.blog .blog-sec .box .pic {
    margin-bottom: 10px;
    width: 100%;
}

.blog .blog-sec .box .blog-txt p {
    font-size: 12px;
    line-height: 2;
    color: #ee362d;
}

.blog .blog-sec .box .blog-txt h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #252525;
    margin-bottom: 10px;
}

.blog .blog-sec .box .blog-txt h6 {
    font-size: 14px;
    line-height: 1.71;
    color: #707070;
    margin-bottom: 10px;
}

.blog .blog-sec .box .blog-txt a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #252525;
    text-decoration: none;
}

.blog .blog-sec .box .blog-txt a img {
    margin-left: 5px;
}

.blog-detail .title-sec {
    margin-top: 50px;
    margin-bottom: 20px;
}

.blog-detail .title-sec .heading p {
    font-size: 14px;
    line-height: 1.71;
    color: #ee362d;
    text-align: center;
    margin-bottom: 10px;
}

.blog-detail .title-sec .heading h1 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.56;
    color: #232323;
    letter-spacing: 6.4px;
    text-align: center;
    text-transform: uppercase;
}

.blog-detail .share-sec {
    margin-bottom: 15px;
}

.blog-detail .share-sec .share-container {
    position: relative;
    max-width: 100%;
    display: flex;
    margin: 30px 0;
    align-items: center;
    align-content: flex-end;
    justify-content: flex-end;
}

.blog-detail .share-sec .share-container .share-link {
    position: relative;
    margin-right: 300px;
    width: 100px;
    font-size: 12px;
    font-weight: 500;
    color: #232323;
    text-transform: uppercase;
}

.blog-detail .share-sec .share-container .share-link:after {
    position: absolute;
    top: 50%;
    right: -200px;
    background: #336887;
    width: 200px;
    height: 1px;
    content: "";
}

.blog-detail .share-sec .share-container .share-icon {
    display: contents;
}

.blog-detail .share-sec .share-container .share-icon a.icon {
    margin-left: 10px;
    margin-right: 10px;
    height: 17px;
    width: 20px;
}

.blog-detail .blog-content .img-container {
    margin-bottom: 35px;
}

.blog-detail .blog-content .img-container img {
    margin-bottom: 20px;
}

.blog-detail .blog-content .img-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #707070;
    margin-bottom: 10px;
}

.blog-detail .blog-content .blog-data {
    margin-bottom: 40px;
    font-size: 17px !important;
    color: #707070 !important;
    line-height: 1.5 !important;
}

.blog-detail .blog-content .blog-data strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #232323;
}

.blog-detail .blog-content .blog-data h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #232323;
    margin-bottom: 15px;
}

.blog-detail .blog-content .blog-data .blog-txt {
    margin-bottom: 35px;
}

.blog-detail .blog-content .blog-data .blog-txt p {
    font-size: 16px;
    line-height: 1.5;
    color: #707070;
    margin-bottom: 15px;
}

.blog-detail .blog-content .blog-data p {
    font-size: 16px;
    line-height: 1.5;
    color: #707070;
    margin-bottom: 10px;
}

.blog-detail .blog-content .blog-data ul li {
    font-size: 16px;
    line-height: 1.5;
    color: #232323;
    margin-bottom: 15px;
}

.blog-detail .blog-content .blog-data ul li:before {
    content: "\2022";
    color: #232323;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 0em;
}

/*.blog-detail .blog-content .blog-data{margin-bottom: 40px;}
.blog-detail .blog-content .blog-data h2{font-size: 20px;font-weight: 600;line-height: 1.2;color: #232323;margin-bottom: 15px;}
.blog-detail .blog-content .blog-data .blog-txt{margin-bottom: 35px;}
.blog-detail .blog-content .blog-data .blog-txt p{font-size: 16px;line-height: 1.5;color: #707070;margin-bottom: 15px;}

.blog-detail .blog-content .blog-data ul li{font-size: 16px;line-height: 1.5;color: #232323;margin-bottom: 15px;}
.blog-detail .blog-content .blog-data ul li:before{content: "\2022";color: #232323;font-weight: bold;display: inline-block;width: 1em; margin-left: 0em;}*/

.blog-detail .blog-content .recommended-sec {
    margin-left: 20px;
}

.blog-detail .blog-content .recommended-sec h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.46;
    color: #232323;
    margin-bottom: 10px;
}

.blog-detail .blog-content .recommended-sec .box-container {
    display: flex;
    margin-bottom: 20px;
}

.blog-detail .blog-content .recommended-sec .box-container .pic img {
    width: 100px;
    margin-right: 20px;
}

.blog-detail .blog-content .recommended-sec .box-container .txt p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.38;
    color: #232323;
}

.screenshots-wrap {
    padding: 40px 0px 40px 0px;
    position: relative;
}

.app-slider {
    background-color: #fafafa;
    padding-top: 50px;
    overflow: hidden;
    width: 100%;
}

.app-detail-feature .w-100 {
    max-width: 280px;
    text-align: center;
}

.iphone-frame {
    position: absolute;
    top: 12px;
    width: 100%;
    height: 100%;
    margin-left: 0px;
    z-index: 2;
}

.iphone-frame img {
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

.app-img {
    opacity: 0.25;
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
    text-align: center;
}

.app-img.slick-current {
    opacity: 1;
}

@media (min-width: 260px) and (max-width: 421px) {
    .app-img img {
        width: 240px;
        text-align: center;
        margin: 0px auto;
    }
}

@media (min-width: 260px) and (max-width: 421px) {
    .iphone-frame {
        top: 20px;
    }
    .iphone-frame img {
        max-width: 280px;
    }
}

.contact-us .title {
    margin-bottom: 25px;
}

.contact-us .form-sec {
    padding: 60px 0px 60px 0px;
}

.contact-us .form-sec .btn {
    width: 200px;
}

.contact-us .site-office-sec {
    padding: 60px 0px 30px 0px;
    background-color: #fafafa;
}

.contact-us .site-office-sec .box {
    border-radius: 10px;
    border: solid 1px #e9e9e9;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
}

.contact-us .site-office-sec .box h3 {
    font-size: 14px;
    font-weight: 800;
    color: #262626;
    padding-bottom: 10px;
    border-bottom: solid 1px #e9e9e9;
    text-transform: uppercase;
    line-height: 20px;
}

.contact-us .site-office-sec .box p {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.contact-us .site-office-sec .box a {
    font-size: 12px;
    font-weight: 600;
    color: #2886f2;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
}

footer {
    background-color: #262626;
    padding: 20px 0px 0px 0px;
}

footer a:hover {
    color: #fff;
}

footer .box {
    margin-top: 30px;
}

footer .box h2 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    color: #fff;
    margin-bottom: 20px;
}

footer .box ul li {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0px;
    line-height: 22px;
}

footer .box .btn {
    margin-top: 30px;
}

footer .box .ps {
    margin-bottom: 8px;
}

footer .call {
    padding-left: 27px !important;
    background: url(../images/call.png) 0px 7px no-repeat;
}

footer .email {
    padding-left: 27px !important;
    background: url(../images/email.png) 0px 8px no-repeat;
    word-wrap: break-word;
}

footer .social li a {
    display: inline-block;
    padding-left: 20px;
}

footer .social li a.fa {
    background: url(../images/facebook.png) 3px 3px no-repeat;
}

footer .social li a.tw {
    background: url(../images/twitter.png) 0px 4px no-repeat;
}

footer .social li a.ig {
    background: url(../images/instagram.png) 0px 4px no-repeat;
}

/*footer .social li a.gp{background: url(../images/google-plus.png) 0px 4px no-repeat;}*/

footer .social li a.lki {
    background: url(../images/linkedin.png) 0px 4px no-repeat;
}

footer .social li a.pint {
    background: url(../images/pinterest.png) 0px 4px no-repeat;
}

footer .social li a.yt {
    background: url(../images/youtube.png) 0px 4px no-repeat;
}

footer .social li a.ts {
    background: url(../images/threads.png) 0px 4px no-repeat;
}

footer .footer-img-box {
    margin-top: 70px;
    vertical-align: bottom;
}

footer .footer-img-box img {
    vertical-align: bottom;
}

footer .copyright-sec {
    font-size: 14px;
    border-top: #3b3b3b solid 1px;
    padding: 17px 0px;
    text-align: center;
    margin-top: 0px;
    line-height: 22px;
}

footer .copyright-sec a {
    cursor: pointer
}

.loading-pop {
    z-index: 10101010;
    background-color: #fff;
    text-align: center;
    padding: 30px 0 35px;
    position: relative;
    width: 300px;
    display: none;
    border-radius: 10px;
    border: solid 1px #e2e2e2;
}

.loading-pop b {
    font-size: 13px;
    color: #5d5d5d;
    display: block;
    padding-top: 15px;
}

.loading-pop .text {
    padding: 35px 0 30px;
}

.loading-pop .text h2 {
    font-size: 17px;
    font-weight: 700;
    color: #393939;
    padding-bottom: 5px;
}

.loading-pop .text p {
    font-size: 12px;
    color: #858585;
    margin-top: 2px;
}

.about-us-app {
    background-color: #fafafa;
}

.about-us-app .header {
    text-align: center;
    padding: 40px;
    background: aliceblue;
}

.about-us-app .about-data-sec {
    background-color: #fff;
    padding: 25px 0px;
}

.about-us-app .about-data-sec p {
    font-size: 15px;
    color: #746c6c;
    margin: 10px 0px 20px 0px;
    line-height: 24px;
}

.about-us-app .about-detail-sec .box {
    padding: 20px;
    margin: 30px 0px 20px 0px;
    background-color: #fff;
    border-radius: 10px;
}

.about-us-app .about-detail-sec .box h3 {
    font-size: 16px;
    font-weight: bold;
    color: #202125;
    margin-bottom: 7px;
}

.about-us-app .about-detail-sec .box p {
    font-size: 15px;
    color: #746c6c;
    line-height: 24px;
}

.tc-app .header {
    text-align: center;
    padding: 40px;
    background: aliceblue;
}

.tc-app .tc-sec {
    background-color: #fff;
    padding: 25px 0px;
}

.tc-app .tc-sec h3 {
    font-size: 16px;
    font-weight: bold;
    color: #202125;
    margin-bottom: 15px;
}

.tc-app .tc-sec ul {
    margin-left: 15px;
}

.tc-app .tc-sec ul li {
    font-size: 15px;
    color: #746c6c;
    margin: 10px 0px 20px 0px;
    line-height: 24px;
    list-style-type: disc;
}

/****  floating-Lable style start ****/

.floating-label {
    position: relative;
    margin-bottom: 20px;
}

.floating-input,
.floating-select {
    font-size: 14px;
    padding: 8px 45px 2px 17px;
    display: block;
    width: 100%;
    height: 48px;
    border: solid 1px #e9e9e9;
    background: #fff;
    border-radius: 5px;
    color: #262626;
    font-weight: 600;
}

.floating-input:focus,
.floating-select:focus {
    outline: none;
}

.floating-input:disabled {
    background-color: #fff6bd;
}

.floating-form .floating-label label {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 17px;
    top: 17px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    width: 90%;
}

.floating-input:focus~label,
.floating-input:not(:placeholder-shown)~label {
    top: 7px;
    font-size: 11px;
    color: #7f7f7f;
    margin-top: 0;
}

.floating-select:focus~label,
.floating-select:not([value=""]):valid~label {
    top: 7px;
    font-size: 11px;
    color: #7f7f7f;
}

/* active state */

.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

.floating-textarea {
    min-height: 100px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
    padding-top: 20px;
    line-height: 20px;
}

/* highlighter */

.highlight {
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */

.floating-input:focus~.highlight,
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.calendly-badge-widget {
    display: inline-table !important;
}

/* animation */

@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }
    to {
        width: 0;
        background: transparent;
    }
}

.floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("../images/down-arrow.png") no-repeat right .90rem center;
}

.choose {
    color: #7a7a7a;
    display: inline-block;
    border: none;
    padding: 14px 0px 14px 20px;
    border-radius: 3px;
    white-space: nowrap;
    cursor: pointer;
    font-size: 14px;
    width: 98%;
}

.file-control {
    padding-left: 125px;
}

/****  floating-Lable style end ****/

/* #Media
================================================== */

@media (max-width: 992px) {
    .home .who-we-are-sec .title h1 {
        max-width: max-content;
    }
}

@media (max-width: 767px) {
    header .nav-link {
        text-align: left;
    }
    header .nav-item:after {
        display: none;
    }
    header .nav-item::before,
    header .dropdown-menu a.dropdown-item:before {
        position: absolute;
        display: block;
        top: 15px;
        left: 0;
        width: 11px;
        height: 1px;
        content: "";
        border: none;
        background-color: #dc4f35;
        vertical-align: 0;
    }
    header .dropdown-toggle::after {
        position: absolute;
        display: block;
        top: 10px;
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #fff;
        vertical-align: 0;
        transition: all 200ms linear;
    }
    header .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }
    header .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
    }
    header .dropdown-toggle[aria-expanded="true"]+.dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }
    header .dropdown-item {
        padding-left: 25px;
    }
    header .dropdown-menu .dropdown-submenu .dropdown-menu a.dropdown-item {
        margin-left: 23px;
    }
    .home .main-slide-sec .slide {
        height: 370px;
    }
    .home .mainslide-sec .main-slider .item .txt-box h2 {
        font-size: 26px;
    }
    .home .owl-theme .owl-nav.disabled+.owl-dots {
        position: absolute;
        bottom: 5px;
        left: 50%;
        margin-left: -100px;
    }
    .home .owl-theme .owl-dots .owl-dot:focus span {
        outline: 0 ! important;
    }
    .home .owl-theme .owl-dots .owl-dot span {
        width: 15px;
        height: 3px;
        border-radius: 0;
        background: #0202026b;
    }
    .home .main-slide-sec .get-in-touch {
        text-align: center;
    }
    .home .main-slide-sec .get-in-touch .btn {
        position: initial;
    }
    .home .who-we-are-sec .box {
        text-align: center;
    }
    .home .testimonial-sec .testimonial {
        padding: 25px 25px 40px 25px;
    }
    .career .job-list-sec {
        padding-top: 35px !important;
    }
    .project .header-sec .btn-container {
        text-align: center;
    }
    .project .details-sec .intro .project-status {
        top: 1px;
        right: 1px;
        border-top: none;
        border-right: none;
    }
    .our-it-product .app-feature {
        padding-top: 50px;
    }
    .our-it-product .app-detail-feature h1 {
        margin-top: 40px;
    }
    .blog-detail .share-sec {
        display: none
    }
}

@media (max-width: 600px) {
    .project .details-sec .sub-title h3 {
        font-size: 15px;
    }
    .project .details-sec .photo-sec .sub-title {
        margin-right: 15px;
    }
}

/*blog-sec*/

.project .details-sec .photos .row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.project .details-sec .photos .row .column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 33.33%;
    max-width: 33.33%;
    padding: 0 4px;
}

.project .details-sec .photos .row .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */

@media screen and (max-width: 800px) {
    .project .details-sec .photos .row .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */

@media screen and (max-width: 600px) {
    .project .details-sec .photos .row .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}



  /* Button ki basic CSS */
  .nanu-button {
    padding: 12px 35px; /* Padding (top-bottom, left-right) */
    font-size: 15px; /* Font size */
    border: 1px solid #ffffff; /* Border */
    background-color: #dc4f35; /* Background color */
    color: #ffffff; /* Text color */
    border-radius: 7px; /* Border radius to make it look rounded */
    cursor: pointer; /* Cursor style on hover */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Transition effect */
}

/* Button ki hover effect */
.nanu-button:hover {
    background-color: #06a3e0; /* Background color on hover */
    color: #ffffff; /* Text color on hover */
    border-color: #999; /* Border color on hover */
}









.about-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-content img {
    max-width: 50%;
    height: auto;
    margin-right: 20px;
}

.text {
    max-width: 50%;
    text-align: left; /* Align text to the left */
}

.text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #dc4f35;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #aa5320;
}







