@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

:root {
    --primaryColor: #4FA446;
    --secondaryColor: #38246E;
    --lightBg: #F1EDFF;
    --textColor: #212121;
    --blackColor: #111;
    --dropShadow: 0 0 15px #8785854f;
    --whiteColor: #fff;
    --smPadding: 2rem .5rem;
    --lgPadding: 4rem 0
}

/* start font family */
@font-face {
    font-family: 'poppinslight';
    src: url('../font/poppins-light.woff2') format('woff2'),
        url('../font/poppins-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsbold';
    src: url('../font/poppins-bold.woff2') format('woff2'),
        url('../font/poppins-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'parkinsansmedium';
    src: url('../font/parkinsans-medium-webfont.woff2') format('woff2'),
        url('../font/parkinsans-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* end font family */


/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* scroll */

/* keyframes */
@keyframes circle {
    0% {
        transform: rotate(45deg);
        bottom: -90px;
    }

    50% {
        transform: rotate(90deg);
        bottom: -60px;
    }

    70% {
        transform: rotate(180deg);
        bottom: -100px;
    }

    100% {
        transform: rotate(45deg);
        bottom: -90px;
    }
}

/* leyframes */


/* start common css section */


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: #FAF9FF;
    overflow-x: hidden;
    position: relative;
}

body,
p,
a {
    font-family: 'poppinslight';
    font-weight: 500;
    font-size: 13px;
}

h1,
h2 {
    font-family: 'parkinsansmedium';
    font-weight: 600;
}

h3,
h4,
h5,
h6 {
    font-family: poppinsbold;
}



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

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

p {
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--textColor);
    font-weight: 600;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.text-color {
    color: var(--textColor);
}

header,
section,
footer {
    padding: var(--smPadding);
}

.cursor-pointer {
    cursor: pointer;
}

.w-90 {
    width: 90%;
}

.btn-green {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    color: #fff;
    border: 3px solid var(--primaryColor);
    background-image: linear-gradient(30deg, var(--primaryColor) 71%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    transition: background 300ms ease-in-out;
    border-radius: 100px;
    padding: .4rem 1.5rem;
    font-size: 14px;
    font-weight: bold;
}

.btn-green:hover {
    background-position: 208%;
    color: var(--primaryColor);
}

.btn-primary {
    background-color: var(--primaryColor) !important;
    border-radius: 100px;
    padding: .4rem 1.5rem;
    border: 3px solid var(--primaryColor);
    font-size: 14px;
    font-weight: bold;
    transition: .3s ease-out;
}

.btn-primary:hover {
    background-color: transparent !important;
    border: 3px solid var(--secondaryColor);
    color: var(--secondaryColor);
    transition: .3s ease-in;
}

.btn-login {
    background: transparent !important;
    border: 1px solid var(--primaryColor);
    color: black;
    width: 120px;
}

.btn-login:hover {
    color: initial;
    border-color: var(--secondaryColor);
}

.dropdown-menu {
    padding: 1rem;
    border: 0;
    box-shadow: var(--dropShadow);
    margin-top: 22px;
}

.service-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.box {
    background-color: white;
    box-shadow: var(--dropShadow);
    border-radius: 10px;
    padding: .5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.box h5 {
    font-size: 16px;
    font-family: 'poppinsbold';
}

.box img {
    width: 70px;
}

.box::before {
    content: '';
    background-color: var(--primaryColor);
    width: 4px;
    height: 63%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 360px;
    transition: .3s ease-in;
    z-index: -1;
}

.service .box:hover::before {
    width: 100%;
    height: 100%;
    transition: .3s ease-out;
    border-radius: 0;
}

.service .box:hover h5 {
    color: var(--lightBg);
    transition: .5s ease-out;
}

.box::after {
    content: '';
    background-color: var(--lightBg);
    width: 120px;
    height: 140px;
    position: absolute;
    top: 0;
    right: -58px;
    bottom: 0;
    z-index: -1;
    transform: rotate(20deg);
    transition: .3s ease-in;
}

.service .box:hover::after {
    background-color: var(--secondaryColor);
    width: 180px;
    height: 300px;
    top: -50px;
    right: -48px;
    bottom: 6px;
    transition: .5s ease-out;
}

.form-control,
.form-select {
    box-shadow: none !important;
    border-color: #DDDDDD !important;
    font-weight: 600;
}

.form-control::placeholder {
    color: #b3b3b3;
}


.dropzone .dropzone-container {
    padding: 2rem 0;
    width: 100%;
    height: 100%;
    position: relative;
    color: #A6A6A6;
    z-index: 20;
}

.dropzone .dropzone-container .browse {
    text-decoration: underline;
    color: #007bff;
}

.dropzone .file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.file-icon {
    font-size: 3rem;
}

.table-label {
    --bs-table-bg: var(--lightBg);
}

.table-label tr th {
    color: var(--textColor);
    padding: 15px .5rem;
}

.table-label tr th:first-child {
    border-radius: 10px 0 0 10px;
}

.table-label tr th:last-child {
    border-radius: 0 10px 10px 0;
}

table tbody tr:last-child,
.table-label tr:first-child {
    border-bottom: transparent;
}


.theme-mode .checkbox {
    opacity: 0;
    position: absolute;
}

.theme-mode .checkbox-label {
    background-color: #412FCF;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-mode .fa-moon {
    color: #f1c40f;
}

.theme-mode .fa-sun {
    color: #f39c12;
}

.theme-mode .checkbox-label .ball {
    background-color: #fff;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.theme-mode .checkbox:checked+.checkbox-label .ball {
    transform: translateX(24px);
}

/* end common css section */

/* start chooose-language */

.choose-language .select-tab li {
    padding: 9px;
    border-radius: 6px;
}

.choose-language .select-tab li a i {
    display: none;
}

.choose-language .select-tab li:hover {
    background: var(--lightBg);
}

.choose-language .select-tab li:hover a i {
    display: block;
}

.choose-language .select-tab {
    box-shadow: var(--dropShadow);
    background-color: var(--whiteColor);
    padding: 1rem;
    border-radius: 10px;
}

/* end choose-language */

/* start home page */
header .logo {
    width: 100px;
}

header .navbar-toggler {
    border: 0;
    outline: 0;
    font-size: 30px;
    box-shadow: none !important;
}

header .navbar-collapse {
    background: lavender;
    padding: 1rem 1.5rem;
    border-radius: 10px;

}

header .nav-link {
    font-weight: bold;
    font-size: 15px;
}

.banner .container {
    background: linear-gradient(133deg, rgba(36, 33, 63, 1) 64%, rgba(78, 50, 149, 1) 83%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
}

.banner .service h3 {
    font-family: poppinsbold;
}

.process .list::before {
    content: '';
    border: 1px dashed #707070;
    width: 1px;
    height: 80%;
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.process .number {
    width: 50px;
    height: 50px;
    background-color: var(--lightBg);
    border-radius: 70px;
    font-weight: bold;
    color: green;
    font-size: 17px;
    box-shadow: 0 5px 7px #bcbcbc;
}

.process .box {
    width: calc(100% - 65px);
}

.process .box::after {
    content: none;
}

.counter {
    background-color: var(--lightBg);
}

.client .owl-carousel .owl-item img {
    height: 150px;
    object-fit: contain;
}

.provide .point img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.strap .container {
    background-color: var(--secondaryColor);
    border-radius: 21px;
    padding: 3rem 2.5rem;
}

.testimonial .review {
    border: 1px solid var(--primaryColor);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    width: 95%;
    margin: auto;
}

.testimonial .review p {
    height: 150px;
    overflow-y: scroll;
}

.testimonial .review img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 7px;
}

.testimonial .owl-dots {
    display: flex;
    justify-content: end;
    gap: 7px;
}

.testimonial .owl-dots .owl-dot {
    width: 25px;
    background: #4fa446;
    height: 10px;
    margin-top: 20px;
    opacity: .5;
}

.testimonial .owl-dots .owl-dot.active {
    opacity: 1;
    width: 50px;
}

footer {
    background-color: var(--secondaryColor);
}

footer .logo {
    width: 80px;
}

footer .newsletter-input ::placeholder {
    color: var(--lightBg) !important;
}

/* end home page */


/* start login-signup page */

.login {
    position: relative;
    /* height: 100vh; */
    overflow: hidden;
    background: url('../img/map.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.login::after,
.login:before {
    content: '';
    position: absolute;
    background-size: 100%;
    width: 200px;
    height: 150px;
}

.login::after {
    background-image: url('../img/left-element.png');
    right: -30px;
    top: -40px;
}

.login::before {
    background-image: url('../img/right-element.png');
    left: -50px;
    bottom: 0px;
}

.form-box {
    background-color: var(--whiteColor);
    box-shadow: var(--dropShadow);
    padding: 1.5rem;
    border-radius: 10px;
}

.form-box label {
    font-family: poppinsbold;
    font-size: 15px;
}

/* end login-signup page */

/* start inner-banner section */
.inner-banner .container {
    background: url('../img/inner-banner.png') no-repeat;
    background-size: cover;
    padding: 2rem;
    background-position: center;
    border-radius: 10px;
    height: 200px;

}

.sub-category {
    background-color: var(--lightBg);
}

.sub-category .box::after {
    content: none;
}

/* end inner-banner section */

/* start deal-view list */
.deal-list .nav-item .box {
    padding: 1.3rem 2.3rem;
}

.deal-list .nav-item .box.active {
    background-color: var(--lightBg);
}

.deal-list .nav-item .box::after {
    content: none;
}

.input-container .search-icon {
    color: #DDDDDD;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 18px;
}

/* end deal-view list */

/* start scroll-top-wrapper */

.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    text-align: center;
    z-index: 2;
    background-color: var(--primaryColor);
    color: #eeeeee;
    width: 50px;
    height: 48px;
    right: 30px;
    bottom: 30px;
    border-radius: 10px;
    padding-top: 4px;
    transition: all 0.5s ease-in-out;
}

.scroll-top-wrapper:hover {
    background-color: var(--secondaryColor);
}

.scroll-top-wrapper.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1.0;
}

.scroll-top-wrapper i.fa {
    line-height: inherit;
}

/* end scroll-top-wrapper */

.contact-us .contact_wrapper {
    display: flex;
    background: white;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 80%;
    margin: auto;
}

.contact-us .contact_wrapper .contact_info {
    position: relative;
    width: 300px;
    flex: 0 0 300px;
    background: var(--primaryColor);
    color: #f6f6f6;
    margin-left: calc(-230px / 2 - 30px);
    padding: 25px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.contact-us .contact_wrapper .contact_info .title {
    font-size: 24px;
    margin: 0px;
    margin-bottom: 30px;
}

.contact-us .contact_wrapper .contact_info .icons_wrapp {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 30px;
}

.contact-us .contact_wrapper .contact_info .icons_wrapp li {
    display: flex;
    align-items: baseline;
    margin-bottom: 25px;
    font-size: 18px;
}


.contact-us .contact_wrapper .contact_info .icons_wrapp li .text {
    vertical-align: middle;
    line-height: 1.4;
    font-size: 15px;
    font-weight: 600;
}

.contact-us .contact_wrapper .contact_info .soci_wrap {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 25px;
}

.contact-us .contact_wrapper .contact_info .soci_wrap li {
    margin: 0px 5px;
}


.contact-us .contact_wrapper .contact_info .soci_wrap li a i {
    color: #f4f4f4;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}


.contact-us .contact_wrapper .contact_msg {
    width: calc(100% - 230px / 2 - 55px);
    flex: 0 0 calc(100% - 230px / 2 - 55px);
    padding: 25px 30px;
    padding-bottom: 0px;
}


.contact-us .contact_wrapper .contact_msg .title {
    font-size: 24px;
    margin: 0px;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 15px;
    color: var(--secondaryColor);
}

.contact-us .contact_wrapper .contact_msg .form_fild {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group {
    position: relative;
    margin-bottom: 25px;
    padding: 0 15px;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group.w_50 {
    width: calc(50% - 30px);
    flex: 0 0 calc(50% - 30px);
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group.w_100 {
    width: calc(100% - 30px);
    flex: 0 0 calc(100% - 30px);
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input {
    width: 100%;
    min-height: 30px;
    padding: 5px 0px;
    border: none;
    color: #444;
    outline: none;
    font-weight: 600;
    border-bottom: solid 2px #e9e9e9;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input.input_textarea {
    min-width: 100%;
    min-height: 75px;
    max-height: 75px;
    max-width: 100%;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:hover {
    border-bottom-color: #ddd;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:focus {
    border-bottom-color: #aaa;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:valid~.label-text,
.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:focus~.label-text {
    top: -50px;
    font-size: 12px !important;
    color: var(--secondaryColor);
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:valid~.label-text.textarea,
.contact-us .contact_wrapper .contact_msg .form_fild .input_group .input:focus~.label-text.textarea {
    top: -12px;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .label-text {
    position: absolute;
    left: 15px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #bbb;
    font-weight: 400;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-us .contact_wrapper .contact_msg .form_fild .input_group .label-text.textarea {
    align-items: baseline;
}


/* start new deal css */
.new-deal .deal-wizard .nav {
    overflow: scroll;
    width: 100%;
}

.new-deal .deal-wizard .nav .step-nav {
    width: 230px;
    min-width: 210px;
    margin-bottom: 30px;
}

.new-deal .deal-wizard .number {
    width: 40px;
    height: 40px;
    border: 3px solid #A6A6A6;
    background: var(--whiteColor);
    border-radius: 100px;
    text-align: center;
    padding-top: 8px;
}

.new-deal .deal-wizard .nav .step-nav.active .number {
    border: 3px solid var(--primaryColor);
}

.new-deal .deal-wizard .nav .step-nav.complete .number {
    background: var(--primaryColor);
    color: white;
    border: 3px solid var(--primaryColor);
}
/* end new deal css */

/* price code start */
.price-box {
    background-color: #fff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

.price-box:hover {
    background: #f1edff;
}

.price-box .price-box-header {
    border: 1px solid #F1EDFF;
    background-color: #F1EDFF;
}

.price-box .price-box-header.price-box-header-purple {
    background-image: linear-gradient(45deg, #220056, #c096ff);
    color: #fff;
    border: none;
}

.price-box .price-box-body {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-top: none;
}

.price-box .price-box-body .price-box-primary {
    font-size: 36px;
    margin-top: 10px;
}

.price-box .price-box-body .price-box-text {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 300;
}
/* price code end */

/* profile code start */
.avatar-upload {
    position: relative;
    max-width: 190px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 21px;
    z-index: 1;
    top: 21px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: var(--primaryColor);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: var(--secondaryColor);
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 170px;
    height: 170px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* profile code end */
