*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    src: url(../fonts/Poppins/Poppins-ExtraBold.ttf);
    font-family: 'Poppins-ExtraBold';
}

@font-face {
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
    font-family: 'Poppins-Bold';
}

@font-face {
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
    font-family: 'Poppins-SemiBold';
}

@font-face {
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
    font-family: 'Poppins-Medium';
}

@font-face {
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-family: 'Poppins-Regular';
}

@font-face {
    src: url(../fonts/Poppins/Poppins-Light.ttf);
    font-family: 'Poppins-Light';
}



/*--- common css ---*/

:root {
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #999999;
    --blue-color: #142339;
    --dark-blue: #162030;
    --text-green: #A3E635;
    --green-color: #84CC16;
    --light-blue: #2F4FCE;
}

body {
    font-family: 'Poppins-Regular';
    background-color: var(--blue-color);
}

h1, h2 {
    font-size: 55px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--white-color);
    font-family: 'Poppins-SemiBold';
}


p {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins-Regular';
    color: var(--white-color);
}

p:last-child {
    margin-bottom: 0;
}

span {
    display: inline-block;
}

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

image,
video {
    width: 100%;
}

a {
    display: inline-block;
    text-decoration: none;
}

.common-btn {
    font-size: 16px;
    color: var(--black-color);
    padding: 6px 25px;
    border-radius: 8px;
    font-family: 'Poppins-Medium';
    background: var(--green-color);
    box-shadow: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-btn:hover {
    color: var(--black-color);
}

.btn:focus {
    box-shadow: none !important;
}

section {
	padding: 70px 0;
	overflow-x: hidden;
	overflow-y: auto;
}

.desktop {
    display: none !important;
}

.mobile {
    display: block !important;
}

.container {
    max-width: 1550px;
    padding: 0 25px;
}

.commonInput {
    width: 100%;
    border-radius: 8px;
    padding: 10px 20px;
    border: 1px solid #D8D8D8;
    background-color: var(--dark-blue);
    box-shadow: none;
    outline: none;
    color: var(--white-color);
    height: 45px;
}

.commonInput::placeholder {
    color: var(--gray-color);
    font-family: 'Poppins-Regular';
    font-size: 16px;
}

.commonLabel {
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins-Regular';
    margin-bottom: 5px;
}

/*--- 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 10px 2px #ffffff40;
}

header {
    background-color: var(--blue-color);
    padding: 25px 0;
    transition: .5s all;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 10px #444444ad;
    border-bottom: 1px solid #444444;
}

header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-box .btn-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .header-box .sidebar_icon {
    display: none;
}

header .logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .header-box .sidebar_icon svg {
    height: 25px;
    width: 25px;
}

header .logo-box img {
    max-width: 180px;
    width: 100%;
}

header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

header nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

header nav ul li a {
	color: var(--white-color);
	border-radius: 5px;
	font-size: 16px;
	font-family: 'Poppins-Medium';
}

header nav ul li a:hover {
    color: var(--text-green);
}

header .login_btn.common-btn {
    color: var(--green-color);
    background-color: transparent !important;
}

/*--- header css end ---*/


/*--- header css end ---*/

/*--- main_banner css start ---*/

#main_banner {
    padding: 0;
}

#main_banner .container-fluid {
    padding: 0;
}

#main_banner .owl-carousel {
    z-index: 0;
}

#main_banner .banner_slider .item {
    position: relative;
}

#main_banner .banner_slider .item .img_box {
    position: relative;
}

#main_banner .banner_slider .item .img_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #1423398c;
}

#main_banner .banner_slider .item .img_box img {
    width: 100%;
    height: 100%;
    max-height: 870px;
    object-fit: cover;
    object-position: center;
}

#main_banner .banner_slider .item .text_box {
    position: absolute;
    z-index: 999;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 700px;
}

#main_banner .banner_slider .item .text_box h2 {
    font-family: 'Poppins-Medium';
    margin-bottom: 20px;
}

#main_banner .banner_slider .item .text_box h2 span {
    color: var(--text-green);
    font-family: 'Poppins-Bold';
}

#main_banner .banner_slider .item .text_box p {
    margin-bottom: 30px;
}

#main_banner .banner_slider .item .text_box .btn_box {
    display: flex;
    gap: 20px;
}

#main_banner .banner_slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

#main_banner .banner_slider .owl-dots .owl-dot span{
    width: 20px;
    height: 5px;
    border-radius: 30px;
    background-color: #B2B2B2;
    display: inline-block;
    transition: 0.3s all;
}

#main_banner .banner_slider .owl-dots .owl-dot.active span{
    background-color: var(--green-color);
    width: 40px;
}

/*--- main_banner css end ---*/

/*--- howToworked setion css start ---*/

#howToworked {
    background-color: var(--dark-blue);
}

#howToworked .title_box {
    text-align: center;
    margin-bottom: 60px;
}

#howToworked .title_box h1 {
    font-size: 48px;
}

#howToworked .title_box h1 span {
    color: var(--text-green);
}

#howToworked .worked_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#howToworked .worked_box .details_box {
    width: calc(33%);
    text-align: center;
}

#howToworked .worked_box .details_box .img_box {
    background-color: #fff;
    border: 3px solid var(--light-blue);
    height: 150px;
    width: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*--- howToworked setion css end ---*/


/*--- howToworked setion css start ---*/

#keyfeature .keyfeature_box .right_img {
    height: 100%;
}

#keyfeature .keyfeature_box .right_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

#keyfeature .keyfeature_box .left_text h3 {
    margin-bottom: 40px;
}

#keyfeature .keyfeature_box .left_text p {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

#keyfeature .keyfeature_box .left_text p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid var(--green-color);
}

/*--- howToworked setion css end ---*/


/*--- workFlow setion css start ---*/

#workFlow {
    background-color: var(--dark-blue);
}

#workFlow .workFlow_box .right_img img {
    width: 100%;
}

#workFlow .workFlow_box .left_text h3 {
    margin-bottom: 50px;
}

#workFlow .workFlow_box .left_text p {
    width: 100%;
    max-width: 500px;
}


/*--- workFlow section css end ---*/


/*--- smart project section css start ---*/

#smart_project .left_img img {
    width: 100%;
}

#smart_project .right_text {
    max-width: 600px;
    margin-left: auto;
}

#smart_project .right_text h3 {
    margin-bottom: 50px;
}

/*--- smart project section css end ---*/


/*--- generate value section css start ---*/

#generateValue {
    background-color: var(--dark-blue);
}

#generateValue .title_box {
    text-align: center;
    margin-bottom: 60px;
}

#generateValue .worked_box .details_box {
    text-align: center;
}

#generateValue .worked_box .img_box {
    text-align: center;
    margin-bottom: 30px;
}

#generateValue .worked_box .img_box svg {
    height: 100px;
    width: 100px;
}

#generateValue .worked_box .text_box h5 {
    font-family: 'Poppins-SemiBold';
}

/*--- generate value section css end ---*/


/*--- feedback section css start ---*/

#feedback {
    background-image: url(../images/feedback-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

#feedback::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #142339c7;
}

#feedback .feedback_box {
    position: relative;
    z-index: 5;
}

#feedback .title_box {
    text-align: center;
    margin-bottom: 60px;
}

#feedback .title_box h3 span {
    color: var(--text-green);
}

#feedback .feedback_slider .item .review_box {
    width: 100%;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
}

#feedback .feedback_slider .item .img_box img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
    margin: 0 auto;
}

#feedback .feedback_slider .item .star ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#feedback .feedback_slider .item .star ul li a i {
    color: #F8D254;
}

#feedback .feedback_slider .item .review_box h6 {
    font-size: 18px;
    font-family: 'Poppins-SemiBold';
    margin: 15px 0;
}

#feedback .feedback_slider .item .review_box p {
    font-size: 16px;
    font-family: 'Poppins-Regular';
}

#feedback button.owl-prev,
#feedback button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#feedback button.owl-prev i,
#feedback button.owl-next i {
    color: var(--white-color);
    font-size: 18px;
}

#feedback button.owl-prev {
    left: 0;
}

#feedback button.owl-next {
    right: 0;
}


/*--- feedback section css end ---*/

/* --- footer css start --- */

footer {
    background-color: var(--dark-blue);
    padding: 100px 0;
}

footer .footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

footer .footer_top .logo-box img {
    width: 100%;
    max-width: 200px;
}

footer .footer_top .menu_box ul ,
footer .footer_top .icon_box ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

footer .footer_top .menu_box ul li a,
footer .footer_top .icon_box ul li a i {
    color: var(--white-color);
    font-size: 16px;
}

footer .footer_top .icon_box ul li a i {
    font-size: 18px;
}

footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid #ffffff1a;
}

footer .copyright .text_box p {
    color: var(--gray-color);
    font-size: 16px;
}

footer .copyright ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

footer .copyright ul a {
    color: var(--gray-color);
    font-size: 16px;
}

/* --- footer css end --- */


/* --- pricing page css start --- */

#pricing .top_box {
    display: flex;
    align-items: end;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 100px;
}

#pricing .top_box .title-box h3 {
    color: var(--green-color);
}

#pricing .top_box .title-box p {
    width: 100%;
    max-width: 90%;
}

#pricing .top_box .price_tab_box {
    display: flex;
    align-items: center;
    gap: 20px;
}

#pricing .top_box .price_tab_box h6 {
    color: var(--green-color);
    margin-bottom: 0;
    font-size: 14px;
}

#pricing .price_tab_box .nav-tabs {
    border: 1px solid #003B97;
    box-shadow: 0px 0px 5px #ffffff21;
    padding: 5px;
    border-radius: 30px;
    flex-wrap: nowrap;
}

#pricing .price_tab_box .nav-tabs .nav-link {
    border: none;
    box-shadow: none;
    border-radius: 30px;
    color: var(--gray-color);
    font-family: 'Poppins-SemiBold';
    padding: 8px 16px;
}

#pricing .price_tab_box .nav-tabs .nav-link.active {
    background-color: var(--green-color);
    color: var(--black-color);
}

#pricing .price_box_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

#pricing .price_box_row .price_box {
    background-color: var(--dark-blue);
    border-radius: 26px;
    padding: 50px 50px;
    box-shadow: 0px 0px 20px #ffffff25;
    width: calc(30%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    height: -webkit-fill-available;
    position: relative;
}

#pricing .price_box_row .price_box .plan_btn .common-btn {
    width: 100%;
    border-radius: 30px;
}

#pricing .price_box_row .price_box h4 {
    margin-bottom: 20px;
}

#pricing .price_box_row .price_box h4 span{
    font-size: 16px;
    font-family: 'Poppins-Medium';
}

#pricing .price_box_row .price_box h5 {
    font-family: 'Poppins-Medium';
}

#pricing .price_box_row .price_box p {
    font-size: 14px;
}

#pricing .price_box_row .price_box ul li {
    position: relative;
    padding-left: 30px;
}

#pricing .price_box_row .price_box ul li:not(:last-child) {
    margin-bottom: 10px;
}

#pricing .price_box_row .price_box ul li::after {
    content: '\f00c';
    font-family: 'fontawesome';
    position: absolute;
    left: 0;
    top: 0px;
    background-color: #2D3645;
    color: var(--white-color);
    height: 22px;
    width: 22px;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

#pricing .price_box_row .price_box .popular {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: #B2B2B2;
    color: var(--black-color);
    font-size: 10px;
    border-radius: 30px;
    font-family: 'Poppins-SemiBold';
    padding: 6px 20px;
}

/* --- pricing page css end --- */


/* --- contact page css start --- */

#contact textarea.commonInput {
    resize: none;
    min-height: 150px;
}

#contact .right_form .form-group {
    margin-bottom: 30px;
}

#contact .right_form .submit_btn .common-btn {
    width: 100%;
}

#contact .left_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

#contact .left_text .information ul li {
    display: flex;
    align-items: start;
    gap: 40px;
}

#contact .left_text .information ul li:not(:last-child) {
    margin-bottom: 20px;
}

#contact .left_text .title_box p {
    width: 100%;
    max-width: 92%;
}

/* --- contact page css end --- */


/* --- start free trial page css start --- */

.common_form {
    padding: 0;
}

.common_form .trial_main_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.common_form .left_form .top_box .logo-box img {
    width: 100%;
    max-width: 250px;
}

.common_form .left_form .top_box .logo-box {
    margin-bottom: 20px;
}

.common_form .left_form .top_box h4 {
    font-size: 26px;
    font-family: 'Poppins-Medium';
    margin-bottom: 30px;
}

.common_form .trial_main_box .right_img ,
.common_form .trial_main_box .left_form {
    width: 50%;
}

.common_form .trial_main_box .right_img {
    position: relative;
}

.common_form .trial_main_box .right_img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #16203021;
}

.common_form .trial_main_box .right_img img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 100% 30%;
}

.common_form .left_form {
    padding: 0 60px;
}

.common_form .left_form .flex_box {
    display: flex;
    align-items: start;
    gap: 15px;
}

.common_form .left_form .flex_box .form-group {
    width: 50%;
}

.common_form .left_form .form-group {
    margin-bottom: 20px;
}

.common_form .left_form .submit_btn .common-btn {
    width: 100%;
    margin-top: 30px;
}

.common_form .left_form .form-group textarea.commonInput {
    min-height: 130px;
    resize: none;
}

/* --- start free trial page css end --- */


/* --- login page css start --- */

.common_design {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/login-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.common_design .center_form_box {
    background-color: #0022728c;
    padding: 50px;
    width: 100%;
    max-width: 550px;
    backdrop-filter: blur(30px);
    border-radius: 20px;
}

.common_design .center_form_box .top_box {
    margin-bottom: 30px;
}

.common_design .center_form_box .logo-box {
    margin-bottom: 20px;
}

.common_design .center_form_box .logo-box img{
    width: 100%;
    max-width: 200px;
}

.common_design .center_form_box .top_box h6 {
    font-family: 'Poppins-Medium';
}

.common_design .center_form_box .form-group {
    margin-bottom: 25px;
}

.common_design .center_form_box .commonInput {
    border-radius: 0;
    background-color: transparent;
}

.common_design .center_form_box .commonInput::placeholder {
    color: #D9D9D9;
    font-size: 13px;
}

.common_design .center_form_box .form-group a {
    margin-top: 5px;
    color: var(--text-green);
    font-size: 13px;
    font-family: 'Poppins-Medium';
    display: inline-block;
    float: right;
}

.common_design .check_box {
    margin-bottom: 15px;
}

.common_design .check_box .clickTo {
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    display: inline-block;
    cursor: pointer;
}

.common_design .check_box .clickTo .keyword-label {
    font-size: 14px;
    color: var(--white-color);
    font-family: 'Poppins-Regular';
}

.common_design .check_box .clickTo input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    margin: 0;
}

.common_design .check_box .clickTo .keyword-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid var(--white-color);
    background-color: transparent;
    border-radius: 2px;
}

.common_design .check_box .clickTo input[type="checkbox"]:checked + .keyword-label::before {
    background-color: var(--green-color);
    border-color: var(--green-color);
    content: '\f00c';
    font-family: "FontAwesome";
    font-size: 13px;
    color: #000;
    text-align: center;
    line-height: 18px;
}

.common_design .center_form_box .btn-box .common-btn {
    width: 100%;
    border-radius: 0;
}

.common_design .center_form_box .last {
    text-align: center;
    margin-top: 15px;
}

.common_design .center_form_box .last {
    color: var(--white-color);
    font-size: 13px;
}

.common_design .center_form_box .last a {
    color: var(--text-green);
}

.common_design .center_form_box .flex_box {
    display: flex;
    gap: 10px;
}

.common_design .center_form_box .flex_box .form-group {
    width: 50%;
}

#register_main .center_form_box {
    max-width: 600px;
    padding: 30px 50px;
}

#otp_verify_main .btn-box {
    display: flex;
    gap: 10px;
}

#otp_verify_main .commonLabel {
    opacity: 0.5;
}



/* --- login page css end --- */