@charset "utf-8";
/* CSS Document */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: "Poppins-Bold";
    src: url('../fonts/Poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf');
}

@font-face {
    font-family: "Poppins-Light";
    src: url('../fonts/Poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: "Poppins-Medium";
    src: url('../fonts/Poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: "Poppins-Regular";
    src: url('../fonts/Poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf');
}


*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    -webkit-overflow-scrolling: touch;
}

:focus {
    outline: none;
}

ul,
li,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    color: #494949;
    transition: 0.5s;
}

input[type="button"],
input[type="submit"] {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    color: #0072ca;
    text-decoration: none;
    outline: none;
}

a:focus {
    text-decoration: none;
    outline: none;
}

a img,
img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    width: 100%;
    width: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins-Bold";
    margin: 0px;
    padding: 0px;
    margin-bottom: 15px;
    color: #2F281E;
}

h1 {
    font-size: 50px;
    line-height: 60px;
}
h2 {
    font-size: 42px;
    line-height: 52px;
}
h3 {
    font-size: 34px;
    line-height: 44px;
}
h4 {
    font-size: 26px;
    line-height: 36px;
}
h5 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

p {
    font-family: "Poppins-Medium";
    color: #544837;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
p:last-child {
    margin-bottom: 0;
}

:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}


input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    outline: none !important;
    text-decoration: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="search"],
input[type="text"],
textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

.row:before,
.row:after {
    display: inline-block !important;
}

.container {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
}

.container:before,
.container:after {
    display: table;
    content: "";
}

.container:after {
    clear: both;
}

section {
    padding: 60px 0;
}

a.menu-icon {
    display: none;
    height: auto;
    padding: 7px 0 7px 0;
    width: 40px;
    background: rgba(0, 0, 0, 0.2);
}

a.menu-icon span {
    display: block;
    margin: 4px 10px;
    background: #fff;
    height: 3px;
}


.section-title h1 {
    position: relative;
    text-transform: capitalize;
    text-align: center;
    font-size: 30px;
    color: #f15a29;
    margin: 0px;
    padding-bottom: 40px;
}

.section-title h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 1px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #f15a29;
}


.content-title h1 {
    position: relative;
    text-transform: capitalize;
    font-size: 19px;
    color: #000;
    margin: 0px;
    padding-bottom: 36px;
}

.content-title h1::after {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    position: absolute;
    bottom: 25px;
    left: 0;
    background-color: #f15a29;
}


.bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.btn.btn-blue {
	background-color: #000455;
	padding: 10px 20px;
	border-radius: 5px;
	color: #fff;
	text-transform: capitalize;
	font-size: 18px;
	font-family: "Poppins-SemiBold";
}



/* header css start */
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	animation: smoothScroll 1s forwards;
	z-index: 1000;
	box-shadow: 0 0 5px 1px #2F281E;
	background-color: #fff;
}

#header {
	background-color: transparent;
	padding: 12px 0;
	transition: .5s all;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
	max-width: 200px;
	width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    font-size: 25px;
    color: black;
    cursor: pointer;
    display: none;
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#header .button-box {
    margin-left: 20px;
}

#header nav ul li {
    display: inline-block;
    padding: 5px;
    position: relative;
}

#header nav ul li a {
	color: #2F281E;
	padding: 10px 10px;
	border-radius: 5px;
	font-size: 18px;
	font-family: "Poppins-Regular";
}

/* header css end */


#banner1 .banner-box .row {
    align-items: center;
}

#banner1 .box.box2 .image-content img {
	width: 100%;
}

#banner1 p
{
    font-family: "Poppins-Light";
}

#about_banner .about_banner-block .container .about_banner-box .row {
    align-items: center;
}

#about_banner .about_banner-block .container .about_banner-box .col-lg-5 img {
	width: 100%;
}

#about_banner .about_banner-block .container .about_banner-box .col-lg-7 {
	padding-left: 100px;
}

#about_banner .about_banner-block .container .about_banner-box .col-lg-7 .what-block {
	padding-top: 25px;
}



#key .box .img-box img {
    width: 100%;
    max-width: 100px;
    margin-left: -20px;
}

#key .owl-nav img {
    max-width: 50px;
    width: 100%;
}

#key .owl-nav img {
    width: 100%;
}

#key .owl-nav .left, #key .owl-nav .right {
	position: absolute;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
}

#key .owl-nav .right {
    transform: translateX(0%);
}

#key .owl-nav .left {
    transform: translateX(-200%);
}

#key .owl-nav .left img {
    transform: rotate(180deg);
}

#key .box {
	max-width: 250px;
	margin: 0 auto;
}

#key {
	background-image: url('../images/key.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	padding: 60px 0 160px;
}

#key .section-heading {
    text-align: center;
    margin-bottom: 60px;
}

#solution .solution-block .container .solution-box .row {
    align-items: center;
}

#solution h5 {
	color: #544837;
}

#solution .solution-block .container .solution-box .col-lg-6 img {
	width: 100%;
}

#solution .solution-box .row .write-content h1 {
    padding-bottom: 15px;
}

#solution .solution-box .row .col-lg-6 .write-content {
	padding-right: 40px;
}

#solution .solution-block .container .solution-box .col-lg-6 ul li img {
	max-width: 40px;
	width: 40px;
}

#solution .solution-block .container .solution-box .col-lg-6 ul li:last-child {
    margin-left: 30px;
}

#solution .solution-block .container .solution-box .col-lg-6 ul {
	display: flex;
	align-items: baseline;
	padding-bottom: 20px;
}

#solution .solution-block .container .solution-box .col-lg-6 ul:last-child {
	padding-bottom: 0;
}

#product .product-block .container .product-box .row {
    display: flex;
    align-items: center;
}

#product .product-box .col-lg-6 .button-content ul {
    display: flex;
}

#product .product-box .col-lg-6 .button-content ul img {
	max-width: 200px;
	width: 100%;
}

#product .product-block .container .product-box .write-content {
	padding-left: 100px;
}

#product .product-block .container .product-box .button-content ul li:last-child {
	margin-left: 25px;
}

#product .image-content img {
	width: 100%;
}

#product .product-block .container .product-box .col-lg-6 h1 {
    padding-bottom: 23px;
}

#product .product-block .container .product-box .col-lg-6 h6 {
    padding-bottom: 10px;
}

#product .product-block .container .product-box .col-lg-6 p {
    margin-bottom: 30px;
}

#model {
    background-image: url('../images/buisiness_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#model .model-box .content-box {
    border-radius: 15px;
    box-shadow: 2px 2px 5px #F1F1F9;
    border: 1px solid #F1F1F9;
    padding: 30px;
    height: 100%;
    background-color: #fff;
}

#model .model-box .model-heading {
	text-align: center;
	padding-bottom: 40px;
}

#model .model-box .image-box img {
    width: 100%;
    min-height: 255px;
    object-fit: contain;
}

#model .model-box .write-box {
    text-align: center;
    margin-top: 40px;
}

#model .model-box .write-box p {
    margin-bottom: 0;
}

#growth .growth-box .growth-heading {
	text-align: center;
	padding-bottom: 40px;
}

#growth .growth-box .content-box ul {
    display: flex;
    align-items: baseline;
}

#growth .content-box {
	max-width: 320px;
	position: relative;
}

#growth .col-lg-4:nth-child(-n+2) .content-box::after {
	content: "";
	background-image: url("../images/arrow.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: -90px;
	height: 10px;
	width: 60px;
	transform: translateY(-100%);
}


#growth .col-lg-4:nth-child(2) {
    display: flex;
    justify-content: center;
}

#growth .col-lg-4:nth-child(3) {
    display: flex;
    justify-content: end;
}

#growth h5 {
	color: #544837;
}

#growth .growth-box .content-box ul img {
    max-width: 50px;
}

#growth .growth-box .content-box ul li:last-child {
	margin-left: 30px;
}

#team .team-heading {
    text-align: center;
}

#team .box-content {
    position: relative;
}

#team .write-content {
	color: white;
	position: absolute;
	left: 15px;
	bottom: 15px;
	z-index: 2;
}

#team {
    background-image: url('../images/team_bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#team .box-content .image-content img {
    width: 100%;
}

#team .box-content .image-content {
    position: relative;
}

#team .write-content p {
	color: #BFBFBF;
	font-family: "Poppins-Regular";
}

#team .box-content .image-content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgb(0, 0, 42) 100%);
	border-radius: 10px;
	z-index: 1;
}


#team .team-heading {
	text-align: center;
	padding-bottom: 40px;
}

#team h5 {
	color: #FFFFFF;
	margin-bottom: 0;
}

#footer {
    padding-top: 60px;
}

#footer .head-image img {
	width: 100%;
	max-width: 200px;
	margin-bottom: 30px;
}

#footer .top-footer {
	border-bottom: 2px solid #BCD0E575;
	padding-bottom: 50px;
}

#footer .col-lg-3.center {
	display: flex;
	justify-content: center;
}

#footer .col-lg-2.end {
	display: flex;
	justify-content: flex-end;
}

#footer .write-content .img-box img {
	max-width: 80px;
	width: 100%;
}

#footer .col-lg-2.center {
	display: flex;
	justify-content: center;
}

#footer p, #footer a {
	font-size: 16px;
    line-height: 26px;
    color: #544837;
    font-family: "Poppins-Medium";
}

#footer .end-footer {
	padding: 20px 0 30px;
}

#footer .end-footer p, #footer .end-footer a {
	color: #7A7A7A;
	font-size: 15px;
}

#footer .footer-box {
	border-top: 2px solid #BCD0E575;
	padding-top: 60px;
}

#footer .end-footer ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 10px;
}

#footer .end-footer ul li:first-child a {
	padding-right: 15px;
	margin-right: 15px;
	border-right: 2px solid #7A7A7A;
}
#footer .end-footer .box.box2 {
	display: flex;
	justify-content: end;
}

#footer .top-footer ul li {
	margin-bottom: 10px;
}

#footer .top-footer ul li:last-child {
	margin-bottom: 0;
}

#footer .footer-box .write-content p {
    margin-bottom: 0;
}

#copyright .copyright-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

#copyright {
    padding: 10px 0;
}

#copyright li
{
    font-family: "Poppins-Light";
}
#footer .footer-box .write-content h6 {
    padding-bottom: 5px;
}

#copyright .copyright-box .content-right li {
    display: inline-block;
    padding-right: 8px;
}

#copyright .copyright-box .content-right ul li:first-child {
    border-right: 1px solid black;
}

.bx-wrapper .bx-controls-direction a.disabled {
    display: block !important;
}

.pseudoStickyBlock {
    display: none !important;
}



#banner1 .banner-block .container .banner-box {
    display: flex;
}

#nav ul li:first-child {
    margin-left: 0px;
    padding-left: 0px;
}

#nav ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

#slider {}

#slider ul li {
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden;
    position: relative;
}

#slider ul li img {
    width: 100% !important;
    height: auto !important;
}

#slider .slider-content-blocks {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
    top: 0px;
    left: 0;
}

#slider .slider-content-block {
    display: table-cell;
    vertical-align: middle;
}

#slider .slider-content-box h1 {
    font-size: 68px;
    color: #000;
    margin-bottom: 15px;
    max-width: 475px;
    line-height: 70px;
    font-weight: 900;
}

#slider .slider-content-box h1 span {
    color: #0058f0;
}

#slider .slider-content-box {
    max-width: 480px;
    padding-top: 120px;
}

#slider .slider-content-box p {
    font-size: 21px;
}

#slider .button_box {
    margin-top: 20px;
}

#banner {}

#banner .banner-block {
    padding: 100px 0px 70px 0px;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#banner .banner-block h1 {
    color: #fff;
    text-transform: uppercase;
}