@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*** GENERIC CSS ***/
html,body, * {
    font-family: "Urbanist", sans-serif;

}

body {
    font-size: 16px;
    background: #fff url(../img/bg-body.png) repeat;
    color: #000;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
}

button:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color:#000;
    font-weight: 400;
    font-family: "Urbanist", sans-serif;
}

h1 {
}

h2 {
   font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
    font-size: 24px;
    font-weight: 500;
}

p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.25;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title.white h2 {
    color: #fff;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin: 0px;
}

.section-title h2 span {
    color: #A4A4A4;
}

.btn-default {
    border-radius: 42px;
    border: 1px solid #6F0008;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height:40px;
    display: inline-block;
    color: #6F0008;
    text-align: center;
    padding: 0px 20px;
}

.btn-default:hover {
    background: #6F0008;
    color: #fff;
}



/*** SIDEMENU ***/
.menu-btn {
    min-width: 30px;
    min-height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    margin-left: 40px;
    justify-content: end;
    text-align: right;
}

.menu-btn span {
    display: block;
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background: #000 !important;
    height: 3px;
    margin: 6px 0px;
    border-radius: 0px;
    transition: all .3s;
    margin-left: auto;
}

.menu-btn:hover span {
    width: 100% !important;
}

.menu-btn div {
    position: relative;
    top: 0px;
    vertical-align: middle;
    width: 30px;
}

.side-menu {
    background: #fff;
	position:fixed;
	top:0px;
    left: -100%;
    width: 340px;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	height:100%;
	z-index:9999999;
    padding: 55px 35px;
	overflow:hidden;
	overflow-y:auto;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.side-menu.intro {
	left:0px;
}

.side-menu ul.main-menu {
	padding-left:0px;
	margin-top:30px;
    border-radius: 0px;
    background: none;
    padding: 0px;
}

.side-menu ul.main-menu.navbar-nav li {
	list-style:none;
	display:inline-block;
	width:100%;
    margin: 0;
    margin-bottom: 10px;
}

.side-menu ul.main-menu li a {
    display: inline-block;
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    padding: 15px 20px;
    text-align: center;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    font-weight: 400;
    background: #6F0008;
    border-radius: 25px;
}

.side-menu ul.main-menu li:hover>a,
.side-menu ul.main-menu li.active>a {
	background:#000;
    color:#fff;
}

.side-menu a.CloseBtn {
    float: right;
    color: #fff;
    background: #6F0008;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 99;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 40px;
    min-height: 40px;
    border-radius: 0px 0px 0px 5px;
}

.side-menu a.CloseBtn:before,
.side-menu a.CloseBtn:after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
}

.side-menu a.CloseBtn:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.side-menu a.CloseBtn:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.side-menu .menu-item-has-children {
    cursor: pointer;
}

.side-menu .menu-item-has-children>a {
    pointer-events: none;
    cursor: pointer;
    position: relative;
}

.side-menu .menu-item-has-children:hover>a,
.side-menu .menu-item-has-children.active>a {
    color: #d0b99b !important;
}

.side-menu .menu-item-has-children>a:after {
    content: '';
    width: 25px;
    height: 25px;
    background: #d0b99b;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.side-menu .menu-item-has-children>a:before {
    position: absolute;
    top: 0;
    right: 0;
    color: #000000;
    font-size: 27px;
    z-index: 99;
    top: 51%;
    transform: translate(0px, -50%);
    right: 6px;
    content: "\f067";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
}

.side-menu .menu-item-has-children.current>a:before {
    content: "\f068";
}

.side-menu ul.navbar-nav>li.menu-item-has-children ul.sub-menu {
    opacity: 1;
    visibility: visible !important;
    position: relative !important;
    left: 0 !important;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    transform: translateY(0) !important;
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 0px 0px !important;
    display: none !important;
    top: 0 !important;
}

.side-menu ul.navbar-nav>li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li {
    margin: 0;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li a {
    font-size: 12px;
    background: #ebebeb;
    color: #000;
    margin: 0;
    padding: 10px 15px !important;
}

.side-menu ul.navbar-nav>li>ul.sub-menu>li:hover a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.current_page_item>a,
.side-menu ul.navbar-nav>li>ul.sub-menu>li.active>a {
    color: #000 !important;
    background: #d0b99b !important;
}

.side-menu ul li.current ul.sub-menu {
    display: block !important;
    pointer-events: auto;
}


/*** HEADER ***/
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all .3s;
    padding: 0px 15px;
}

header .main-nav {
    padding: 25px 0px;
}

header.fixed .main-nav {
    padding: 15px 0px;
}

header.fixed {
    position: fixed;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}

header .navbar-brand img {
    max-height: 65px;
    transition: all .3s;
}

header.fixed .menu-btn span {
    background: #000 !important;
}

.navbar-brand {
    padding: 0px !important;
}

.navbar {
	padding:0px 0px;
}

header .btn-default {
    background: #6F0008;
    color: #fff;
}

header .btn-default:hover {
    background: #000;
    color: #fff;
}


@media (min-width: 992px) {
.navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: space-between;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}
}

.navbar-nav {
    align-items: center;
    border-radius: 83px;
    background: #6F0008;
    padding: 5px 0px;
}

.navbar-light .navbar-nav>.nav-item {
	position:relative;
    margin:0px 5px;
	display:inline-block;
    vertical-align: top;
}

.navbar-light .navbar-nav>.nav-item + .nav-item>a:before {
    content: '';
    width: 0.5px;
    height: 24.021px;
    background: rgba(255, 255, 255, 0.24);
    display: inline-block;
    margin: 0px 20px;
    position: absolute;
    top: 8px;
    left: -20px;
}

.navbar-light .navbar-nav>.nav-item>.nav-link {
    position: relative;
    color: #faf8f3;
    font-size: 16px;
    line-height: 40px;
    padding-bottom: 5px;
    transition: all .3s;
    font-weight: 500;
    padding: 0px 20px !important;
    min-width: 98px;
    text-align: center;
    /*font-family: "Onest", sans-serif;*/
    border-radius: 100px;
}

.navbar-light .navbar-nav>.nav-item.menu-item-has-children>.nav-link:after {
    content: "";
    font-size: 18px;
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link::before,
.navbar-light .navbar-nav>.nav-item.active>.nav-link::before {
    opacity: 0;
}

header .navbar-light .navbar-nav>.nav-item.btn-link {
    text-decoration: none;
}

.navbar-light .navbar-nav>.nav-item:hover>.nav-link,
.navbar-light .navbar-nav>.nav-item.active>.nav-link {
	color:#000!important;
    background: #fff !important;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu {
    border: none;
    border-radius: 0px !important;
    text-align: left;
    display: block;
    list-style: none;
    margin: 0;
    position: absolute;
    overflow: hidden;
    left: calc(50% - 100px);
    min-width: 180px;
    padding: 0px;
    padding-top: 18px;
    background: none !important;
    opacity: 0px;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    box-shadow: none;
    white-space: nowrap;
}

.navbar-light .navbar-nav>.nav-item:hover ul.sub-menu {
	display:block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li {
	width:100%;
    position: relative;
    margin-bottom: 1px;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:last-child {
    border: none;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li>.nav-link {
    transition: all .3s;
    display: inline-block;
    clear: both;
    margin: 0px;
	width:100%;
	position:relative;
    line-height: 45px;
    padding: 0px 18px !important;
    font-size: 14px;
    border: none;
    white-space: nowrap;
    letter-spacing: 0px;
    color: #faf8f3;
    background: #0c0f24;
    text-transform: uppercase;
    text-align: center;
        /*font-family: "Onest", sans-serif;*/
    font-weight: 400;
}

.navbar-light .navbar-nav>.nav-item ul.sub-menu>li:hover>a,
.navbar-light .navbar-nav>.nav-item ul.sub-menu>li.active>a {
	color:#000!important;
    background: #d0b99b;
}

header .menu-right {
    display: flex;
    align-items: center;
}

header .social {
    color: #faf8f3;
    display: inline-block;
    border: 1px solid #faf8f3;
    width: 30px;
    line-height: 28px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
}

header .social:hover {
    background: #d0b99b;
    border-color: #d0b99b;
    color: #faf8f3;
}
/*** BANNER ***/
.banner {
    position: relative;
    padding: 150px 0px 0px 0px;
    overflow: hidden;
}

.banner .container {
    position: relative;
    z-index: 3;
}

.banner h1 {
    color: #000;
    font-size: 64px;
    font-weight: 500;
    line-height: 62px;
    position: absolute;
    right: 70px;
    top: 50px;
}

.banner h1 span {
    position: relative;
    right: 60px;
}

.banner h1 span span {
    position: relative;
    right: 60px;
}

.banner h2,
.banner .h2 {
    color: #000;
    font-size: 64px;
    font-weight: 500;
    line-height: 62px;
    position: absolute;
    top: 30px;
}

.banner h2 span,
.banner .h2 span {
    position: relative;
    left: 60px;
}

.banner h2 span span,
.banner .h2 span span {
    position: relative;
    left: 120px;
}

/*** SOFTWARE DELIVERY ***/
.software-delivery {
    padding-bottom: 130px;
}

.software-delivery .section-title h2 {
    margin-bottom: 80px;
    text-transform: inherit;
}

.software-delivery .bg {
    background: #F4F4F4;
    filter: drop-shadow(0 4px 56.4px rgba(0, 0, 0, 0.02));
    padding: 56px 90px 40px 90px;
    border-radius: 40px;
    height: calc(100% - 25px);
    margin-bottom: 25px;
}

.software-delivery .bg h3 {
    padding-left: 40px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    margin: 0px 0px 35px 0px;
}

.software-delivery .bg p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin: 0px;
}



/*** PARTNERS ***/
.partners {
    background: #F4F4F4;
}

.partners .details {
    padding:80px 40px;
}

.partners .btn-default {
    margin-bottom: 30px;
}

.partners-logo {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: end;
}

.partner-box {
    float: left;
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.partner-box .text {
    display: inline-block;
    width: 100%;
    position: absolute;
    bottom: 80px;
    left: 0px;
    padding: 0px 88px;
}

.partners .owl-theme .owl-nav {
    margin-top: 0px;
}

.partners .num {
    color: #FFF;
    font-size: 48px;
    font-weight: 900;
    line-height: 20px;
}

.partners .num em {
    font-style: normal;
    font-size: 24px;
}

.partners .num span {
    color: rgba(255, 255, 255, 0.42);
}

.partners h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 27px;
    margin: 10px 0px;
}

.partner-box p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    position: absolute;
    bottom: -15px;
    right: 55px;
    max-width: 180px;
}

.partners .owl-theme .owl-nav {
    margin: 0px;
}

.partners .owl-theme .owl-nav [class*=owl-] {
    position: absolute;
    top: 43%;
    left: 46.5%;
    color: #fff;
    background: none !important;
    margin: 0px;
}

.partners .owl-carousel .owl-item img {
    display: inline-block;
    width: 100%;
    object-fit: cover;
}

/*** SOLUTIONS ***/
.solutions {
    padding: 100px 0px;
    position: relative;
    overflow: hidden;
}

.brdr-right {
    border-left: 1px solid #000;
    margin-left: 100px;
    padding-left: 100px;
}

.sol-box {
    display: flex;
    background: #F4F4F4;
    filter: drop-shadow(0 4px 56.4px rgba(0, 0, 0, 0.02));
    border-radius: 25px;
    padding: 85px 40px;
    gap: 22px;
}

.sol-box img {
    width: 85px !important;
    height: 85px;
}

.solutions .owl-stage-outer {
    width: 100vw;
}

.solutions .custom-nav {
    display: flex;
    justify-content: flex-end;
    gap:12px;
    cursor:pointer;
}

.solutions .custom-nav button {
    border: none !important;
    padding: 0px;
    background: none !important;
    border-radius: 0px;
}

/*** TECHNOLOGIES ***/
.technologies {
    background: #F4F4F4;
    padding: 100px 0px 70px 0px;
}

.nav-tabs {
    border:0px !important;
    outline: 0 !important;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
}

.nav-tabs .nav-link {
    border: 0px;
    background: none !important;
    font-size: 24px;
    color: #A3A3A3;
}

.tab-content>.tab-pane {
    padding: 80px 0px;
}

.tech-logos {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.tech-logos a {
    width: calc(16.66% - 50px);
}

/*** FOOTER ***/
footer {
    background: url(../img/bg-footer.png) bottom center no-repeat;
    background-size: contain;
    padding: 73px 0px 300px 0px;
}

footer.bggrey {
    background-color: #f4f4f4;
}

footer .logo img {
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

.contact-details a img {
    margin-right: 12px;
}


/*** MODAL ***/
.modal-header {
    padding: 15px 45px;
    border-color: rgba(0, 0, 0, 0.08);
}

.modal-header .modal-title {
    color: #000;
    font-size: 36px;
    font-weight: 500;
}

.servicebox * {
    transition: all .3s;
}

.servicebox:last-child {
    margin-bottom: 0px;
    border: none;
}

.servicebox {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 32px;
    border-bottom:1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
}

.servicebox:hover .num {
    color: #000;
}

.servicebox .num {
    color: #F4F4F4;
    font-size: 48px;
    font-weight: 900;
    line-height: 20px;
    margin-right: 25px;
}

.servicebox h3 {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.servicebox p {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.modal-body {
    padding: 15px 45px 0px 45px;
}

.modal-header .btn-close {
    opacity: 1 !important;
    box-shadow: none !important;
}


/*** ABOUT BANNER ***/
.about-banner {
    padding: 40px 0px;
}

.about-banner h1 {
    color: #000;
    font-size: 64px;
    line-height: 1.3;
    margin-bottom: 120px;
}

.about-banner h1 span {
    position: relative;
    left: -15px;
}

.about-banner h2 {
    color: #A4A4A4;
    font-size: 48px;
    line-height: 1.3;
    text-transform: inherit;
}

.about-banner h2 em {
    font-style: normal;
}

.about-banner h2 span {
}



/**/
.type-container {
    position: relative;
    overflow: hidden;
}

/* hide second text initially */
.typing.black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}


/*** WE TURN ***/
.we-turn .section-title {
    padding: 40px 40px;
    position: relative;
}

.we-turn .left {
    position: absolute;
    bottom: 75px;
    left: 40px;
    width: 250px;
    text-align: right;
    margin: 0px;
    font-size: 16px;
    line-height: 1.25;
}

.we-turn .right {
    position: absolute;
    bottom: 75px;
    right: 40px;
    width: 250px;
    text-align: left;
    margin: 0px;
}

.we-turn .section-title h2 {
    color: #A4A4A4;
    font-size: 96px;
    font-weight: 600;
    margin: 25px 0px;
    text-transform: inherit;
}

.we-turn .align1 {
    position: absolute;
    top: 0px;
    left: 0px;
}

.we-turn .align2 {
    position: absolute;
    top: 0px;
    right: 0px;
}

.we-turn .align3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.we-turn .align4 {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

/*** PROCESS ***/
.process {
    padding: 130px 0px 160px 0px;
    position: relative;
    overflow: hidden;
}

.p {
    font-size: 16px;
    line-height: 1.25;
}

.box-right {
    border-right: 1px solid #000;
    margin-right: 100px;
    padding: 20px 0px;
    padding-right: 100px;
    text-align: right;
}

.process .margin-bottom {
    margin-bottom: 110px;
}

.process-line {
    position: absolute;
    top: -24px;
    left: 18%;
    max-width: 78%;
}

.process-box {
    display: inline-block;
    position: relative;
}

.process-box .round {
    position: absolute;
    top: 25px;
    right: -34px;
    transition: all 2s;
    animation-delay: 2s;
    animation-duration: 1.5s;
}

.process-box.aos-animate .round {
    transform: scale(1.5);
}

.process-box h3 {
    color: rgba(0, 0, 0, 0.50);
    font-size: 48px;
    font-weight: 500;
    line-height: 62px;
    text-transform: capitalize;
}

.process-box .p {
    border-left: 1px solid #000;
    padding-left: 18px;
    max-width: 220px;
    position: relative;
    left: 70px;
}

.process-box.second {
    position: relative;
    top: -40px;
}

.process-box.second .round {
    top: 78px;
    right: auto;
    left: 20px;
}

.process-box.third {
    margin-top: 140px;
}

.process-box.third .round {
    top: 17px;
    right: auto;
    left: -90px;
}

.process-box.fourth {
    margin-top: 95px;
    position: relative;
    left: 63px;
}

.process-box.fourth .round {
    top: 70px;
    right: auto;
    left: -50px;
}

.process-box.fifth {
    margin-top: 75px;
    position: relative;
    left: -30px;
}

.process-box.fifth .round {
    top: 20px;
    right: -155px;
}

.process-box.sixth {
    margin-top: 155px;
    position: relative;
    left: 20px;
}

.process-box.sixth .round {
    top: 20px;
    right: -130px;
}

.process-box.seventh {
    margin-top: -20px;
    position: relative;
    left: 95px;
}

.process-box.seventh .round {
    top: 42px;
    right: -60px;
}

div.aos-animate {
    margin: 0px;
    padding: 0px;
}

.focus-img {
    width: 350%;
    max-width: none;
    position: relative;
    left: 25%;
    transform: translateX(-50%);
    /*top: -10%;*/
}
.second-banner-img{
    margin-top: -30%
}
@media (max-width: 700px) {
    .focus-img {
        width: 100%;
        bottom: 10%;
         position: relative;
    left: 50%;
    }
    .second-text{
        margin-bottom: 96%;
    }
    .second-banner-img{
        margin-top: -50% !important;
    }
}
