/* font-famaly-hear */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');
/* font-famaly-hear-end */

/* root */
:root{
    --inter: 'Inter', sans-serif;

    --white-color: #fff;
    --black-color: #000;

    --dark: #242436;

    --primary: #0BAB8B;
    --secondary: #000;

    --theme: #FDFAF7;


    --body-color: #777E90;
    --heading-color: #242436;
}
/* root */



/* defaults-css-start */
html{
    font-size: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}
*,
*::before,
*::after{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}
main{
    margin-top:  40px;
}
a,
button{
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

a:focus,
button:focus,
.btn:focus{
    outline: none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
    outline: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--inter);
    color: var(--heading-color);
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    text-transform: normal;
    line-height: 1.3;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
li {
    list-style: none
}
p {
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: var(--body-color);
    margin-bottom: 15px;
}
label {
    color: #4E566D;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}
*::-moz-selection {
    background: var(--primary);
    color: var(--white-color);
    text-shadow: none;
}
::-moz-selection {
    background: var(--primary);
    color: var(--white-color);
    text-shadow: none;
}
::selection {
    background: var(--primary);
    color: var(--white-color);
    text-shadow: none;
}
*::-moz-placeholder {
    color: #777E90;
    font-size: 16px;
    opacity: 1;
    transition: .3s;
}
*::placeholder {
    color: #777E90;
    font-size: 16px;
    opacity: 1;
    transition: .3s;
}
/* defaults-css--end */


/* theme-css */

.hero__content h2 {
    font-weight: normal;
}




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

.bg-primary{
    background-color: var(--primary) !important;
}
.bg-secondary{
    background-color: var(--secondary) !important;
}
.bg-theme{
    background-color: var(--theme) !important;
}



.btn{
    padding: 14.3px 24px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-phone{
    border: none;
    color: var(--primary);
}

.btn-primary{
    background-color: var(--primary);
    color: var(--white-color);
}

.btn-primary:hover{
    background-color: #18caa7;
    color: var(--white-color);
    border-color: #18caa7;
}

.btn-outline-primary{
    color: var(--primary);
}

.btn-outline-primary:hover{
    color: var(--white-color);
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary span svg path{
    transition: .3s;
}
.btn-outline-primary:hover span svg path{
    fill: var(--white-color);
}


.section{
    padding: 92px 0px 100px;
}
.section__title h2{
    margin-bottom: 18px;
}
.section__title p{
    margin-bottom: 0px;
}

.section.section.features {
    margin-bottom: 10px;
}

.section.section.testimonial {
    margin-top:  10px;
}

/* list-css */

.list li {
    display: flex;
    align-items: flex-start;
    padding: 4px 0px;
    color: #242436;
}
.list li span.icon{
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex: 0 0 auto;
}
.list.list__checked li span.icon{
    border: 1px solid #F2DCA8;
    background: #FDFAF7;
    padding-left: 1px;
}
.list.list__cross li span.icon{
    background: #FFE6E4;
}

/* list-css-end */

.object{
    position: absolute;
    max-width: 100%;
}


/* theme-css-end */





/* ======== header style start ============ */
.header{
    padding: 10px 0px;
}
/* ======== header style end ============ */


/* ======== hero style start ============ */

.hero__content h1 {
    margin-bottom: 0px;
}

.hero__content p {
    margin-bottom: 18px;
}

.hero__content .list {
    margin-bottom: 28px;
}

.hero__object{
    right: 0px;
    bottom: 100px;
}
/* ======== hero style end ============ */


/* ======== do-sections style start ============ */
.section.do .section__title {
    margin-bottom: 80px;
}

.do__content h6 {
    margin-bottom: 18px;
}

.do__box {
    background: #FCFCFD;
    border: 1px solid #E6E8EC;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 18px;
}

.do__box ul.list li {
    padding: 8px 0px;
}

/* ======== do-sections style end ============ */


/* ======== vision-sections style start ============ */
.vision__content_title {
    padding-right: 90px;
}

.vision__content_desc {
    padding-right: 18px;
}

.row.vision__content {
    margin-bottom: 60px;
}

.vision__box {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 56px 105px;
    text-align: center;
}

.vision__box h4 {
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 18px;
}

.vision__box h4::after {
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 78%;
    height: 1px;
    content: "";
    background: #E6E8EC;
    transform: translateX(-50%);
}

.vision__box p {
    margin-bottom: 18px;
}

.vision__box p:last-child {
    margin-bottom: 0px;
}

/* ======== vision-sections style end ============ */


/* ======== media-sections style start ============ */

.media__content_title {
    border-bottom: 1px solid #E6E8EC;
    margin-bottom: 36px;
}

.media__content_title h2 {
    margin-bottom: 17px;
}

.media__content ul.list {
    margin-bottom: 36px;
}


/* ======== media-sections style end ============ */


/* ======== Approach-sections style start ============ */
.section.approach .section__title {
    margin-bottom: 58px;
}

.approach__card {
    background: #FFFFFF;
    border-top: 4px solid #0BAB8B;
    border-radius: 8px;
    padding: 15px 24px;
    height: 100%;
    transition: .3s;
}

.approach__card:hover {
    box-shadow: 0px 16px 40px rgba(43, 56, 88, 0.08);
    transform: translateY(-10px);
}

.approach__card p {
    margin-bottom: 8px;
}
/* ======== Approach-sections style end ============ */


/* ======== feature-sections style start ============ */
.feature__content h2 {
    margin-bottom: 26px;
}

.feature__content p {
    margin-bottom: 26px;
}

.feature__content p:last-child {
    margin-bottom: 0px;
}

.feature__single {
    margin-bottom: 70px;
}

.feature__single:last-child {
    margin-bottom: 0px;
}

/* ======== feature-sections style end ============ */


/* ======== sections style start ============ */

.section.testimonial .section__title {
    margin-bottom: 65px;
}

.testimonial__card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 24px 23px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s;
}
.testimonial__card:hover {
    box-shadow: 0px 16px 40px rgba(43, 56, 88, 0.08);
}

.testimonial__img {
    text-align: center;
    margin-bottom: 27px;
}

.testimonial__img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.testimonial__desc p {
    margin-bottom: 0px;
}

.testimonial__info p {
    margin-bottom: 0px;
}

.testimonial__info h6 {
    margin-bottom: 3px;
}

.testimonial__desc {
    min-height: 120px;
    margin-bottom: 25px;
}

/* ======== sections style end ============ */


/* ======== creater-user-sections style start ============ */

.create__content ul li {
    display: flex;
    align-items: flex-start;
    padding: 12px 0px;
}

.create__content ul li span.icon {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid #0BAB8B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding-left: 1px;
    margin-right: 16px;
}

.create__content ul {
    margin-bottom: 28px;
}

.create__content h2 {
    margin-bottom: 28px;
}

.create__content {
    padding-right: 95px;
}

.create__form {
    background: #FFFFFF;
    border: 1px solid #E6E8EC;
    box-shadow: 0px 16px 40px rgba(43, 56, 88, 0.08);
    border-radius: 16px;
    padding: 35px 40px 40px;
}

.single-input label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single-input .form-control {
    background: #FFFFFF;
    border: 1px solid #E6E8EC;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    resize: none;
}
.single-input .form-control:focus {
    border-color: var(--primary);
}
.single-input .form-control:focus::placeholder{
    opacity: 0;
    visibility: hidden;
}

.single-input input {
    height: 44px;
}

.single-input {
    margin-bottom: 19px;
}

.single-input textarea {
    height: 140px;
}

.single-checkBox input {
    display: none;
}

.single-checkBox label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #777E90;
}

.single-checkBox label span.ind {
    background: #FFFFFF;
    border: 1px solid #E6E8EC;
    border-radius: 6px;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    position: relative;
}

.single-checkBox label span.ind::after {
    position: absolute;
    height: 10px;
    width: 10px;
    content: "";
    background: var(--primary);
    border-radius: 3px;
    margin-left: -5px;
    left: 50%;
    top: 50%;
    margin-top: -5px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.create__form .single-checkBox {
    margin-bottom: 32px;
}

.single-checkBox label span.text a {
    color: #777E90;
}

.single-checkBox input:checked~label span.ind {
    border-color: var(--primary);
}
.single-checkBox input:checked~label span.ind::after {
    opacity: 1;
    visibility: visible;
}


.single-input .iti {
    width: 100%;
}

.single-input .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
}
.single-input .iti__flag.iti__in {
    display: none;
}
.single-input .iti__arrow {
    border-top: 4px solid #555;
    border: none !important;
    height: 8px;
    width: 10px;
    margin-left: 5px;
    background-image: url('../img/icons/arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.single-input .iti__country-list {
    width: 220px;
}
.single-input .iti__flag {
    display: none;
}
.single-input .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 4px;
    color: #242436;
}
.single-input .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: transparent;
}

.single-input .iti__flag-box{
    margin-right: 6px;
    width: 0px;
}
.single-input .iti__country {
    font-size: 14px;
}
.single-input .iti__country.iti__highlight{
    background-color: var(--primary);
    color: var(--white-color);
}
.single-input .iti__country.iti__highlight .iti__dial-code{
    color: var(--white-color);
}
.single-input .iti__country-list{
    border: 1px solid #E6E8EC;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    scrollbar-width: none;
}
.single-input .iti__country-list::-webkit-scrollbar{
    display: none; 
}


/* ======== creater-user-sections style end ============ */


/* ======== footer style start ============ */
.footer{
    background-color: #FCFCFD;
    padding: 28px 0px;
}
.footer__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__menu ul{
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__menu ul li a{
    color: #4E566D;
    text-decoration: none;
    display: block;
}
.footer__menu ul li a:hover{
    color: var(--primary);
}

/* ======== footer style end ============ */