@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');
/* font-family: 'Rubik', sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Roboto', sans-serif; */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    /* background: #F6F6F6; */
    overflow-x: hidden;
    font-family: Roboto, sans-serif;
    background-image: url(../img/bg.webp);
    background-color: #f6f2ee !important;
    background-size: 5px;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: rgb(68, 205, 169);
}

::selection {
    background-color: #3fb096;
    color: #fff
}

/* #header {
    padding: 10px 0;
    position: fixed;
    width: 100%;
    transition: all .2s ease;
    z-index: 99;
    background: #fff;
    box-shadow: 0 0 10px rgb(1 1 1 / 20%);
} */


#header {
    /* background: #fff; */
    padding: 30px 0;
    position: fixed;
    width: 100%;
    transition: all .5s ease;
    z-index: 99;
    top: 0;
    left: 0;
}

#header.header-scroll {
    background: #fff;
    box-shadow: 0 0 10px rgb(1 1 1 / 20%);
    padding: 10px 0;

}

.container {
    max-width: 1245px;
    padding: 0 5px;
    margin: 0 auto;
}

.small-container {
    max-width: 1045px;
    padding: 0 5px;
    margin: 0 auto;
}

.content-title {
    font-size: 48px;
    color: #44cda9;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.content-title span {
    /* font-weight: 700; */
    color: #53999a;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    width: 160px;
    user-select: none;
    -webkit-user-drag: none;
}

#hamburger-btn {
    cursor: pointer;
    /* padding-bottom: 25px; */
    position: relative;
    margin-left: 35px;
}

.hamburger-item {
    width: 58px;
    height: 2px;
    background: #44cda9;
    display: block;
    transition: all 200ms linear;
    position: relative;
}

.hamburger-item:nth-child(2) {
    margin: 10px 0;
}

.hamburger-item:nth-child(3) {
    background: none;
    position: relative;
}

.hamburger-item:nth-child(3) svg {
    position: absolute;
    bottom: -2px;
}

#hover-menu-wrapper {
    position: absolute;
    right: 0;
    top: 47px;
    border-radius: 20px;
    width: 740px;
    height: calc(100vh - 120px);
    background: linear-gradient(345deg, #5eba78, #4ab38e 50%, #3eb096);
    padding: 30px 60px;
    transform: translateX(30px);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all .3s linear .2s;
    cursor: default;
    overflow-y: auto;
}

#hover-menu-wrapper.hover-menu-visible {
    transform: translateX(0px);
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    transition: all .3s linear .2s;
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(1),
#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(2) {
    width: 30px;
    margin-left: calc(30px / 4);
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(1) {
    transform: rotate(45deg) translate(calc((30px / 4) + 1px));
}

#hamburger-btn.burgerBtn-active .hamburger-item:nth-child(2) {
    transform: rotate(-45deg) translate(calc((30px / 4) + 1px));
}


.hevermenu-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 23px;
    color: #fff;
}

.hover-menu-content {
    display: flex;
    /* flex-wrap: wrap; */
}

.hover-content-item {
    display: flex;
    padding: 22px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    /* width: 50%; */
}

.hover-item-icon {
    max-width: 52px;
    padding-right: 15px;
}

.hover-item-icon img {
    width: 100%;
    /* height: 55px; */
    object-fit: contain;
    object-position: center;
}

.hover-item-title {
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: bold;
    transition: color .2s ease-in;
    color: #fff;
    /* text-transform: uppercase; */
}

.hover-item-title:hover {
    color: #268b70;
}

.hover-item-text p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 0;
    /* max-width: 75%; */
    font-weight: 300;
    color: #fff;
}

.hover-menu-content-left,
.hover-menu-content-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-download {
    width: 60%;
}

.menu-download img {
    width: 100%;
}

.header-login_demo {
    display: inline-block;
    color: #44cda9;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 25px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.header-login_demo:hover {
    color: #53999a;
}

.header-demo-border {
    border: 2px solid #44cda9;
    border-radius: 6px;
}

.header-demo-border:hover {
    background: #44cda9;
    color: #fff;
}



/* BANNER */
.banner {
    padding-bottom: 30px;
    padding-top: 150px;
    position: relative;
}

.head-blobs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    pointer-events: none;
}

.banner-text {
    max-height: 250px;
    text-align: center;
    margin-bottom: 55px;
}

.banner-text h1 {
    color: #53999a;
    font-size: 40px;
    font-weight: 500;
}

.banner-text h1 span {
    font-weight: 700;
}


.banner-text p {
    font-size: 20px;
    color: #3a5862;
    /* margin: 20px 0; */
    width: 50%;
    text-align: center;
    margin: 25px auto;
}

.banner-text a {
    display: inline-block;
    padding: 18px 24px;
    background: #44cda9;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 10px;
    transition: all .2s ease-in-out;
}

.banner-text a:hover {
    background-color: #53999a;
}

.banner-img img {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.banner-img p {
    color: #6b8289;
    font-size: 16px;
    text-align: center;
    margin: 45px 0 20px 0;
}

.banner-logos {
    width: 62%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.banner-logo {
    width: 25%;
    padding: 0 20px;
}

.banner-logo img {
    width: 100%;
    object-fit: cover;
}


/* SECTION 1 */

.section-1 {
    background: rgba(248, 250, 251, 1);
    padding-top: 100px;
    padding-bottom: 30px;
}

.section-1-text {
    text-align: center;
    margin-bottom: 85px;
}

.section-1-text p {
    font-size: 20px;
    color: #3a5862;
    margin: 9px 0;
}

.section-1-content {
    display: flex;
    flex-wrap: wrap;
}

.section-1-item {
    width: calc(25% - 50px);
    margin: 0 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    transition: all 0.25s linear;
    margin-bottom: 70px;
    background: #fff;
    border-radius: 10px;
}

.sec-1-img {
    height: 60px;
    margin-bottom: 10px;
}

.sec-1-img img {
    height: 100%;
}

.section-1-item:hover {
    box-shadow: 0 10px 35px -5px rgb(51 51 51 / 35%), 0 25px 50px 0 rgb(51 51 51 / 10%);
}

.sec-1-title {
    color: #1a4f62;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 1px;
}

.sec-1-text {
    margin-bottom: 12px;
    color: #6b8289;
    font-size: 14px;
    line-height: 1.5;
    /* font-weight: 500; */
    margin: 10px 0;
}

.sec-1-link {
    color: #38b28e;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    transition: all .2s ease-in-out;
}

.sec-1-link:hover {
    color: #53999a;
}



/* SECTION 2 */

.section-2 {
    padding: 50px 0;
    background: #53999a;
    position: relative;
    margin: 280px 0;
}

.section-2-content {
    position: relative;
    margin: 30px 0;
}

.section-2-text {
    text-align: center;
}

.section-2-text h2 span {
    color: #fff;
}

.section-2-text a {
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
}

.sec-2-text {
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    opacity: .8;
}

.section-2-top-img {
    width: 100%;
    position: absolute;
    top: -270px;
    left: 0;
}

.section-2-bot-img {
    width: 100%;
    position: absolute;
    bottom: -300px;
    left: 0;
}

.section-2-top-img img,
.section-2-bot-img img {
    height: 325px;
    width: 100%;
    object-fit: cover;
}


#sectionCrm .window {
    width: 65%;
    margin: 0 auto;
    position: relative;
}

#sectionCrm .window .background img {
    width: 100%;
}

#sectionCrm .window .media {
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 100% 100%;
    background-color: #fff;
    position: absolute;
    top: 1.5%;
    left: 10.8%;
    right: 10.6%;
    bottom: 8.5%;
}

#sectionCrm .media-textboxes {
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#sectionCrm .media-textboxes .textbox {
    width: 50%;
    flex: 1 1 33.3333333%;
}

#sectionCrm .media-textboxes .textbox-inner {
    width: 275px;
    background-color: #f6f2ee;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    opacity: .3;
    cursor: pointer;
}

#sectionCrm .media-textboxes .textbox-inner .order {
    font-weight: 700;
    margin-right: 15px;
    color: #949494;
}

#sectionCrm .media-textboxes .textbox-inner .text {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
    color: #949494;
}

#sectionCrm .media-textboxes .textbox:nth-child(1n+4) .textbox-inner {
    margin-left: auto;
}

#sectionCrm .media-textboxes .textbox:hover .textbox-inner {
    opacity: .5;
}

#sectionCrm .media-textboxes .textbox.active .textbox-inner {
    opacity: 1;
}

/* SECTION 3-4 */

.section-3 {
    padding: 50px 0;
    padding-top: 100px;
}

.check-icon {
    min-width: 26px;
    height: 26px;
    background: #44cda9;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-right: 15px;
    transition: all .1s ease-in-out;
}

.check-icon img {
    height: 12px;
    position: absolute;
    top: 8px;
}

.section-3-text {
    width: 50%;
}

.section-3-text p {
    font-size: 20px;
    color: #3a5862;
    margin: 20px 0;
}

.sec-3-item-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
}

.sec-3-item {
    width: calc(50% - 20px);
    display: flex;
    /* align-items: center; */
    margin-bottom: 40px;
    margin-right: 20px;
}

.sec-3-item:hover .check-icon {
    background: #53999a;
}

.sec-item-text h4 {
    color: #4b7677;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.sec-item-text p {
    font-size: 16px;
    color: #4c595e;
    font-weight: 400;
}

/* FOOTER */

footer {
    background: rgba(248, 250, 251, 1);
    padding-top: 130px;
    padding-bottom: 90px;
}

.footer-content {
    /* display: flex; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    /* flex-direction: column; */
}

.footer-logo {
    width: 100%;
    /* margin-bottom: 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 50%;
}

.footer-demo {
    display: inline-block;
    padding: 12px 20px;
    background: #44cda9;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 16px;
    /* margin-top: 10px; */
    transition: all .2s ease-in-out;
}

.footer-demo:hover {
    background: #53999a;
}

.footer-items {
    display: flex;
    width: 80%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-item h4 {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.5;
}

.footer-item ul {
    padding: 0 6px 0 6px;
}

.footer-item ul li a {
    display: inline-block;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    font-weight: 400;
    text-decoration: none;
    color: #666;

    font-size: 13px;
    line-height: 28px;
    margin-bottom: 8px;
}

.footer-item ul li a:hover {
    color: #53999a;
}

.footer-line {
    width: 100%;
    border-top: 1px solid #e0ddfc;
    margin-bottom: 20px;
}

.footer-lower-row {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    /* width: 100%; */
}

.footer-lower-col1 {
    flex: 0 0 40%;
    max-width: 40%;
}

.footer-lower-col3,
.footer-lower-col4 {
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-lower-col4 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-social {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #53999a;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .2s;
    color: #fff;
}

.footer-social:hover {
    background: #44cda9;
    transition: background-color .2s
}

.footer-phone-text,
.footer-support-text {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 4px;
}

.footer-phone-number,
.footer-support-address {
    line-height: 24px;
    font-size: 16px;
    letter-spacing: -.4px;
    margin-top: 0;
}

.footer-phone-number a,
.footer-support-address a {
    color: #53999a;
}

.footer-apps {
    display: flex;
    justify-content: center;
    gap: 10px;
    /* width: 100%; */
}

.footer-apps img {
    width: 150px;
}

.footer-lowest-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-lowest-col75 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.footer-lowest-col25 {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    justify-content: flex-end;
}

.footer-lowest-col100 {
    flex: 0 0 100%;
    max-width: 100%;
}

.footer-lowest-col75 p,
.footer-lowest-col100 p {
    font-size: 12px;
    line-height: 22px;
    color: #666;
    opacity: .7;
    margin: 0;
    margin-top: 10px;
}

#cookie {
    display: block;
    justify-content: center;
    align-items: center;
    background: #53999a;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999999999;
    min-height: 60px;
    height: auto;
    /* transform: translateY(60px); */
    animation: cookie forwards .8s cubic-bezier(.21, -1.65, 1, 1.41);
}

#cookie p {
    color: #fff;
    display: inline-block;
}

#cookie p a {
    color: #fff;
    transition: color .5s
}

#cookie p a:hover {
    color: #282828;
    transition: color .5s
}

.cookie-container {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
}

@keyframes cookie {
    from {
        transform: translateY(60px)
    }

    to {
        transform: translateY(0)
    }
}

.btn-cookie {
    border: 1px solid #44cda9;
    color: #fff;
    font-size: 15px;
    font-family: Roboto, sans-serif;
    margin-left: 20px;
    padding: 8px 10px;
    background: none;
    border-radius: 4px;
    transition: all .2s ease-in-out;
}

.btn-cookie:hover {
    background: #fff;
    color: #3a5862;
}

.menu-login-demo {
    display: none;
}


/* ------------------------------------BLOG------------------------------------ */

.blog-title {
    text-align: center;
    color: #53999a;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 70px;
}

.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-item {
    width: calc(33.33333% - 40px);
    margin: 15px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 5px;
    box-shadow: -5px 0 20px 0 rgb(73 75 77 / 10%);
    transition: all .2s ease-in-out;
}

.blog-item:hover {
    box-shadow: -5px 0 20px 0 rgb(73 75 77 / 25%);
}

.blog-img {
    height: 34%;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.blog-text {
    padding: 24px 30px 30px;
    height: 66%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-text-bold a {
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #282828;
    transition: all .2s ease-in-out;
}

.blog-text-bold a:hover {
    color: #44cda9;
}

.bolg-text-p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #42484a;
}

.blog-link {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 25px;
}

.blog-link span {
    color: #42484a;
}

.blog-link a {
    color: #44cda9;
    font-weight: 600;
}

.blog-read-more {
    display: flex;
    align-items: center;
}

.blog-read-more svg {
    transition: all .2s ease-in-out;
    stroke: #2c2f30;
}

.blog-read-more:hover svg {
    stroke: #44cda9;
}



/* ------------------------------------BLOG-DETAY------------------------------------ */
.blogDetay-back-img {
    width: 100%;
    height: 500px;
}

.blogDetay-back-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blogDetay-content {
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: -120px;
    background: #fff;
    border-radius: 5px;
    box-shadow: -5px 0 20px 0 rgb(73 75 77 / 10%);
    padding: 75px 60px 80px;
}

.blogDetay-main-title {
    font-size: 42px;
    font-weight: 700;
    font-weight: 500;
    color: #282828cc;
    margin-bottom: 15px;
}

.blogDetay-paragraph {
    color: #282828cc;
    margin: 15px 0;
}

.blogDetay-paragraph-topSpace {
    margin-top: 30px;
}

.blogDetay-small-title {
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 15px;
}

.blogDetay-b-1::before,
.blogDetay-b-2::before,
.blogDetay-b-3::before {
    content: "";
    position: absolute;
    left: 36px;
}

.blogDetay-b-1::before {
    content: "1-";
}

.blogDetay-b-2::before {
    content: "2-";
}

.blogDetay-b-3::before {
    content: "3-";
}

.blogDetay-doted::before {
    content: url(../img/point.svg);
    position: absolute;
    left: 36px;
}

.blog-line {
    width: 100%;
    height: 2px;
    background: #282828cc;
    margin: 80px auto 40px auto;
}

.blog-back {
    display: flex;
    justify-content: space-between;
}

.blog-back a {
    font-size: 20px;
    color: #2c2f30;
    transition: all .2s ease-in-out;
}

.back-blog-link {
    display: flex;
    align-items: center;
}

.back-blog-link:hover a {
    color: #44cda9;
}

.back-blog-link:hover svg {
    stroke: #44cda9;
}

.blog-paylas {
    display: flex;
    align-items: center;
}

.blog-paylas p {
    margin-right: 5px;
}

.blog-paylas a {
    margin: 0 10px;
}

.blog-detay-alt-wrapper .blog-img {
    height: 38%;
}

.blog-detay-alt-wrapper .blog-text {
    height: 62%;
}

.blog-detay-alt-title {
    text-align: center;
    font-size: 32px;
    color: #282828;
    margin-bottom: 20px;
}




/* ----------------------------------INNER PAGE--------------------------- */


.inner-page-main {
    padding-bottom: 30px;
    padding-top: 150px;
}

.inner-page-main-text {
    text-align: center;
}

.inner-page-main-text h1 {
    margin-bottom: 15px;
    color: #033;
    font-weight: 600;
    font-family: Roboto, sans-serif;
    font-size: 30px;
}

.inner-page-main-text p {
    color: #033;
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

.inner-page-content-title h2 {
    /* text-align: center; */
    font-size: 25px;
    color: #3c9;
    margin: 50px 0px;
    font-weight: 600;
    line-height: 1.4;
}

.inner-page-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    margin-bottom: 100px;
}

.inner-item-text,
.inner-item-img {
    width: 50%;
}

.inner-item-img img {
    width: 75%;
    display: block;
    margin: 0 auto;
}

.inner-item-text h3 {
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #3c9;
    height: 50px;
}

.inner-item-text p {
    text-align: left;
    color: #666;
    font-family: Roboto, sans-serif;
    line-height: 30px;
    font-size: 16px;
    font-weight: 300;
}

.inner-item-reverse {
    flex-direction: row-reverse;
}