/* Fonts are loaded via a single combined <link> in app/[lang]/layout.tsx.
   They used to be six separate @import rules here, which forced a serial
   chain (global.css -> 6 font CSS -> woff2) and blocked first paint by
   ~1.5s (Lighthouse: render-blocking-resources / LCP). */

/* Colors */
:root {
    --background-color: #ffffff;
    --dark-blue-color: #01103d;
    --button-light-blue-color: #0c65ff;
    --buttonligt-grey-color: #e0e0e0;
    --logo-bg-grey-color: #cecece;
    --logo-bg-blue-color: #2254ff;
    --icon-grey-color: #3d3d3d;
    --text-purple-color: #2701fe;
    --button-purple-color: rgba(104, 101, 255, 0.06);
    --dark-grey-text-color: #5f6168;
    --features-border-color: #e8eaf1;
    --features-desc-color: #717171;
    --features-button-purple-color: #6865ff;
    --card-hover-color: linear-gradient(90deg, rgba(53, 103, 255, 1) 0%, rgba(148, 72, 255, 1) 76%);
    --carousel-back-color: #f6f5fa;
    --carousel-item-back-color: #c7c9d1;
    --comment-card-bg-color: linear-gradient(204deg, rgba(15, 10, 245, 1) 0%, rgba(89, 86, 233, 1) 100%);
    --small-text-grey-color: #888b95;
    --footer-bg-color: #eeeef5;
    --footer-title-color: #53525f;
    --sales-text-color: #595b62;
    --card-title-back-color: #f5f5f8;
    --payment-card-text-color: #141125;
    --accord-back-color: #031b62;
    --carousel-bg-color: #202124;
    --button-yellow-color: #f8ff35;
    --slider-price-color: #600ee4;
}

/* Fonts */
:root {
    --navbar-font: "Poppins", sans-serif;
    --inter-font: "Inter", sans-serif;
    --body-font: "Poppins", sans-serif;
    --montserrat: "Montserrat Alternates", sans-serif;
    --dm: "DM Serif Display", serif;
    --urbanist: "Urbanist", sans-serif;
}

body {
    background-color: var(--background-color);
    font-family: var(--navbar-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background-color: #2607dd;
    color: #fff;
    border: 1px solid #0011c7;

}

.price-display,
annual-display {
    font-family: sans-serif;
}

.price-calculate-button-yearly {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.price-calculate-button-monthly {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.rich-content-partner img {
    height: 179px !important;
    object-fit: cover;
}

.lang-select {
    font-family: Arial, sans-serif;
    max-width: 100%;
    right: 15px;
}

@media screen and (max-width: 390px){
    .lang-select{
        right: 0;
    }

}



.lang-select svg {
  vertical-align: middle;
  margin-left: auto;
  margin-right: 10px;
}

.lang-select a:hover {
  background-color: #f9f9f9;
}

.lang-select .selected, .lang-select .lang-select-dropdown-content a {
  color: #494949;
}

.lang-select .selected {
  padding: .3rem .7rem;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #000;
    background: none;
}

.lang-select .selected:hover, .lang-select .selected:focus {
  outline: none;
}

.down {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #494949;
  position: relative;
  left: 21px;
  top: 9px;
}

.up {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #494949;
  position: relative;
  left: 21px;
  bottom: 9px;
}

.lang-select .lang-select-dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 0 0 8px 8px;
  min-width: 222px;
  overflow: visible;
  z-index: 1;
  top: 45px;
  padding: 10px 0 10px 0;
}

.lang-select .lang-select-dropdown-content a {
  padding: 10px 25px 0 25px;
  font-size: 18px;
  text-decoration: none;
  display: block;
}

.lang-select-dropdown-content:before {
  content: '';
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  background: #fff;
  border-left: 1px solid #ededed;
  border-top: 1px solid #ededed;
  border-top-left-radius: 4px;
  position: absolute;
  top: -8px;
  right: 18px;
}

.lang-select a:after {
  content: '';
  width: 172px;
  height: 1px;
  background: #F0F0F0;
  display: block;
  margin-top: 10px;
}

.lang-select a:nth-last-child(1):after {
  display: none; 
}

.lang-select a:nth-last-child(1){
  padding-bottom: 10px;
}

.lang-select .show {
  display: block;
}



a {
    text-decoration: none;
}

li {
    list-style: none;
}

#navAll {
    margin: 0 5rem;
}

.navbar-toggler {
    border: 0;
}

.offcanvas-title {
    display: none;
}

.nav-link {
    font-family: var(--navbar-font);
    font-size: 17px;
}


.price-calculator .container {
    padding: 20px;
}

.price-calculator .price-display,
.price-calculator .annual-display {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.price-calculator .input-group-text {
    cursor: pointer;
}

.price-calculator .form-range {
    width: 100%;
}

/* Making the range input wider */

.price-calculator .col-form-label {
    font-size: 1.2rem !important;
    font-weight: bold;
    color: #474747
}

.price-calculator .input-group span {
    background: #0d65fe;
    color: #fff;
}

.price-calculator .input-group span {
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #2607dd;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}

.price-calculator .input-group span:hover {
    background-color: #004aca
}

.price-calculator .input-group span :active {
    background-color: #0055e7;
}


.doc-right li {
    display: flex;
}

.doc-right a {
    color: #292d34 !important;
}

.doc-search {
    display: block;
    padding: 50px 0;
    text-align: center;
}

.doc-search-icon {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    color: rgb(106 106 255 / 37%);
    font-size: 20px;
    --darkreader-inline-color: #4c76bf;
}

.doc-searh-input {
    outline: 0px;
    vertical-align: middle;
    border: 1px solid rgb(108, 108, 255);
    box-shadow: none;
    box-sizing: border-box;
    text-align: left;
    padding: 0px 0px 0px 40px;
    border-radius: 46px;
    font-size: 14px;
    height: 60px;
    color: rgb(0, 0, 0);
    --darkreader-inline-outline: initial;
    --darkreader-inline-border-top: #00006e;
    --darkreader-inline-border-right: #00006e;
    --darkreader-inline-border-bottom: #00006e;
    --darkreader-inline-border-left: #00006e;
    --darkreader-inline-boxshadow: none;
    --darkreader-inline-color: #aeadaa;
}

.doc-home {
    box-shadow: 2px 5px 20px 7px rgba(0, 0, 0, 0.2);
    background: linear-gradient(176deg, rgb(0 131 255 / 27%) 0%, rgba(255, 255, 255, 0) 100%);
    --darkreader-inline-bgcolor: #181a1b;
}

.document-title {
    font-size: 18px;
    justify-content: center;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    border-bottom: 1px solid #b7b0b0;
    padding-top: 6px;
    margin: 0 auto;
    width: 80%;
    display: flex;
    padding-bottom: 20px;
    margin-top: 5rem;
    text-transform: uppercase;
}

.doc-right h1 {
    font-weight: 700;
    font-size: 2.5rem;
    padding-top: 5.5rem;
    margin: 1rem 0;
}

.btn-img {
    display: flex;
    align-items: center;
}

/* İçerikle resmin arasında boşluk bırakmak için */
.btn-img img {
    margin-right: 5px;
    /* İstediğiniz kadar ayarlayabilirsiniz */
}

.doc-right p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #8c8e93;
}

.doc-list-a {
    display: block;
    border-bottom: 1px solid #dcdbdb;
    font-size: 18px;
    color: #504f4f;
    width: 100%;
    padding: 20px;
}

.doc-list-a:hover {
    border: 1px solid #1874ff4f;

}

.doc-list-a img {
    margin-right: 10px;
}


.navbar_products-nav-item {
    margin: 0 !important;
}

.navRight {
    align-items: baseline !important;
}

.signup-nav-link {
    margin-right: 1rem;
}


.footer-top-btn-1 {
    background-color: #121212;
    color: #fff;
    border: none;
    margin: 0 10px;
    font-size: 1.2rem;
    --darkreader-inline-bgcolor: #2c3e4c;
    --darkreader-inline-color: #aeadaa;
    --darkreader-inline-border-top: 0px;
    --darkreader-inline-border-right: 0px;
    --darkreader-inline-border-bottom: 0px;
    --darkreader-inline-border-left: 0px;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 10px;
}

.footer-top-btn-2 {
    background-color: transparent;
    color: #fff;
    border: 1px dashed #ffffff;
    font-size: 1.2rem;
    --darkreader-inline-bgcolor: #2c3e4c;
    --darkreader-inline-color: #aeadaa;
    --darkreader-inline-border-top: 0px;
    --darkreader-inline-border-right: 0px;
    --darkreader-inline-border-bottom: 0px;
    --darkreader-inline-border-left: 0px;
    border-radius: 50px;
    padding: 10px 20px;
}

.footer-top-section {
    margin-top: 1rem;
    background: #1574ff;
    color: #ffffff;
    
}

#sign {
    background-color: var(--button-light-blue-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--background-color);
    margin-right: 0.7rem;
}

#log {
    background-color: var(--buttonligt-grey-color);
    border-radius: 10px;
    font-size: 15px;
    color: var(--dark-blue-color);
}

#log i {
    color: #000;
    font-size: 15px;
}

.bgImage {
    margin-top: 3rem;
    /* padding: 19rem; */
    /* margin-top: 3rem; */
    background-image: url("../img/world.mp4");
    background-repeat: no-repeat;
    background-attachment: unset;
    background-position: unset;
    background-size: contain;
}

.mainSec .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mainSec .container .textTop {
    background: linear-gradient(94deg,
            rgba(137, 115, 254, 1) 0%,
            rgba(1, 82, 255, 1) 43%,
            rgba(24, 121, 255, 1) 78%,
            rgba(97, 33, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-family: var(--navbar-font);
}

.mainSec .container h1 {
    font-family: var(--navbar-font);
}

.mainSec.container .textSecond {
    font-family: var(--navbar-font);
    font-size: 2rem;
    margin: 0 0 1rem 0;
    color: var(--dark-blue-color);
}

.mainSec .container .button {
    margin: 1.5rem;
    padding: 1rem 4rem;
    border-radius: 10px;
    background: linear-gradient(94deg,
            rgba(137, 115, 254, 1) 0%,
            rgba(1, 82, 255, 1) 43%,
            rgba(24, 121, 255, 1) 78%,
            rgba(97, 33, 255, 1) 100%);
}

.mainSec .container .button a {
    color: var(--background-color);
    font-size: 1.7rem;
    font-family: var(--navbar-font);
    padding: 4rem;
}

.mainSec .container .textBottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.mainSec .container .textBottom div {
    margin: 0 0.8rem;
    font-size: 15px;
    color: var(--dark-blue-color);
    opacity: 0.5;
    padding: 0;
}

section .container {
    /* text-align: center; */
}

section .container .section-top {
    cursor: pointer;
    flex-wrap: wrap;
}

section .container .section-top .shover:hover {
    /* background-color: #0C65FF; */
    /* color: var(--logo-bg-grey-color); */
    transition: 0.5s;
}

section .container .section-top .desc p {
    transition: 0.5s;
}

section .container .section-top .shover:hover .desc p {
    /* color: var(--logo-bg-grey-color); */
    transition: 0.5s;
}

section .container .section-top .section-top-left,
.section-top-middle,
.section-top-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 2rem;
    padding: 1rem;
    border-top-right-radius: 13px;
    border-top-left-radius: 13px;
    transition: 0.5s;
}

.section-top {
    position: relative;
}

.section-bottom p {
    font-family: var(--navbar-font);
}

.border-highlight {
    position: absolute;
    height: 3px;
    /* height of the border */
    background-color: #000;
    /* color of the border */
    width: 0;
    /* Initial width */
    bottom: 0;
    /* Position at the bottom */
    left: 0;
    /* Initial position */
    transition: left 0.5s, width 0.5s;
    /* Smooth transition for left position and width */
}

section .container .section-top .section-top-left .img,
.section-top-right .img {
    /* background-color: #e7e7e7; */
    padding: 0.7rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 0.7rem;
}

section .container .section-top .text .description {
    opacity: 1;
}

section .container .section-top .section-top-middle .img {
    /* background-color: #e7e7e7; */
    padding: 0.7rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 0.7rem;
}

section .container .section-middle .block-item {
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-align: center;
    justify-content: space-evenly;
}

section .container .section-middle ul li {
    margin: 0 0.5rem;
    font-size: 15px;
    color: #000000;
    transition: 0.5s;
}

/* section .container .section-middle ul li:hover{
    color: var(--text-purple-color);
    transition: .5s;
  } */

/* section .container .section-middle ul li .title{

    margin: 1rem 0;

  } */
section .container .section-middle ul li .icon {
    height: 50px;
}

.hidden-item {
    display: none;
}

.block-item {
    display: flex;
}

#featuresImg {
    background-image: url("../img/features.png");
    background-repeat: no-repeat;
    background-attachment: unset;
    background-size: cover;
    overflow: visible;
    width: 100%;
    background-position-y: -170px;
    background-position-x: -25px;
}

@media screen and (min-width: 1150px) {
    #featuresImg {
        background-position-y: -250px;
    }
}

section .container .section-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
    height: 50vh;
}

section .container .section-bottom .block-item {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    /*margin-top: 3rem;*/
}

section .container .section-bottom li .description {
    font-family: var(--navbar-font);
    font-size: 1.125rem;
    font-weight: 100;
    margin-left: 5rem;
}

section .container .section-bottom li .img {
    flex: 1;
}

section .container .section-bottom li img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1.5rem;
    border-radius: 16px;
    margin-right: 5rem;
    /* Etrafındaki boşluk */
    background: #fff;
    /* Arka plan rengi */
}

.section-middle #optimization li,
#sales-crm li,
#pro li {
    display: flex;
    flex-direction: column;
    justify-content: start;
    border-radius: 13px;
    cursor: pointer;
    transition: 1s;
}

.section-middle #pro li .title {
    color: #000;
    transition: 0.5s;
}

.section-middle #sales-crm li .title {
    color: #000;
    transition: 0.5s;
}

.section-middle #optimization li .title {
    color: #000;
    transition: 0.5s;
}

.section-middle #optimization li:hover .title {
    color: #e17930;
    transition: 0.5s;
}

.section-middle #pro li:hover .title {
    color: #368ff5;
    transition: 0.5s;
}

.section-middle #sales-crm li:hover .title {
    color: #9f85ec;
    transition: 0.5s;
}

.section-middle .icon img {
    cursor: pointer;
    /* Indicates that the image is clickable */
    transition: background-color 0.4s;
    /* Smooth transition for background color change */
    border-radius: 13px;
    width: 50px;
    height: 50px;
    padding: 5px;
}

.section1 .right {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.section1 .right .badge {
    font-size: 13px;
    color: var(--text-purple-color);
    font-weight: 600;
    background-color: var(--button-purple-color);
    padding: 0.5rem;
    border-radius: 30px;
}

.section1 .right h1 {
    margin: 0;
}

.section1 .right .title {
    font-size: 35px;
    font-weight: bold;
}

.section1 .right .description {
    font-size: 18px;
    color: var(--dark-grey-text-color);
}

.section1 .right .tick {
    display: flex;
    flex-direction: column;
}

.section1 .right .ticks {
    display: flex;
    flex-direction: row;
    margin: 0.5rem 0;
}

.section1 .right .ticks div {
    margin: 0 0.5rem 0 0;
}

.section1 .right .button a {
    font-size: 15px;
    color: var(--background-color);
}

.section1 .right .button {
    text-align: center;
    background: linear-gradient(94deg,
            rgba(137, 115, 254, 1) 0%,
            rgba(1, 82, 255, 1) 43%,
            rgba(24, 121, 255, 1) 78%,
            rgba(97, 33, 255, 1) 100%);
    border-radius: 30px;
    padding: 0.2rem 2.3rem;
    line-height: 85%;
}

.section1 .right .button {
    margin: 1rem 0;
    padding: 1rem 0;
}

.section1 .right .button a {
    font-size: 1.3rem;
}

/* .features .features-container{
    margin: 5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  } */

.features .item {
    display: flex;
    padding: 4rem 3rem;
    flex-direction: column;
    align-items: start;
    border: 1px solid #e8eaf1;
    border-radius: 30px;
    margin: 1rem;
    cursor: pointer;
    transition: height 0.5s ease, background-color 0.5s ease;
    position: relative;
    /* Add position relative here */
    overflow: hidden;
}

.features .item .description {
    color: var(--features-desc-color);
    font-size: 16px;
}

.features .item .title {
    font-size: 22px;
    margin: 0.3rem 0;
}

.features .item .button {
    background-color: var(--button-purple-color);
    padding: 1rem;
    padding: 15px 20px;
    border-radius: 30px;
    margin-top: 1.7rem;
}

.features .item .button i {
    color: var(--features-button-purple-color);
}

.features .item:hover {
    height: 470px;
    background: linear-gradient(-204deg, rgba(53, 103, 255, 1) 0%, rgba(148, 72, 255, 1) 76%);
    transition: all 0.5s;
}

.icon,
.title,
.description,
.button {
    transition: opacity 0.2s ease;
    /* Transition for content to fade */
}

.item:hover .icon,
.item:hover .button {
    opacity: 0;
    /* Hide content on hover */
}

.features .item:hover .description {
    color: var(--background-color);
    opacity: 0.7;
    margin-bottom: 3rem;
    transition: 0.5s;
    z-index: 99;
}

.features .item:hover .title {
    font-size: 30px;
    color: var(--background-color);
    transition: 0.5s;
    z-index: 99;
}

.image-wrapper {
    position: absolute;
    bottom: -85px;
    /* Align to the top */
    right: -100%;
    /* Start off the screen to the right */
    width: -100%;
    /* Set to full width */
    height: -100%;
    /* Set to full height */
    transition: right 0.5s ease;
    z-index: 99;
}

/* Correct the selector to target .item instead of .card */
.features .item:hover .image-wrapper {
    right: 0;
    /* Bring image to the bottom of the container */
}

/* Adjust the transition for the image to slide in from the side */
.features .side-image {
    max-width: 100%;
    /* Ensure the image is not larger than its container */
    max-height: 100%;
    /* Adjust height to fill the image wrapper */
    transition: transform 0.5s ease;
    /* Smooth transition for the transform */
}

.features .item::before {
    content: "";
    /* Required for a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/img/16-p-500\ 1.svg") no-repeat center center;
    background-size: cover;
    opacity: 0;
    /* Start fully transparent */
    transition: opacity 0.5s ease;
    /* Smooth transition for the effect */
    z-index: 1;
    /* Stack before the content but below the second effect */
    pointer-events: none;
}

.features .item::after {
    content: "";
    /* Required for a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/img/downOverly.svg");
    /* Path to your uploaded image */
    background-size: cover;
    /* Cover the area of the card */
    background-position: center;
    /* Center the background image */
    opacity: 0;
    /* Start fully transparent */
    transition: opacity 0.5s ease;
    /* Smooth transition for the effect */
    pointer-events: none;
    /* Ensure the overlay doesn't interfere with clicking */
}

.features .item:hover::before {
    opacity: 0.9;
}

.features .item:hover::after {
    opacity: 1;
    /* On hover, make the image visible */
}

/*  */

.comment {
    margin: 0 0 5rem 0;
}

.comment ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 5rem;
}

.comment ul li {
    margin: 0.3rem;
}

.card {
    display: flex;
    /* Use flexbox for layout */
    max-width: 900px;
    /* Set a max-width for the card if necessary */
    border-radius: 20px;
    /* Rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Shadow effect */
    margin: auto;
    /* Center the card horizontally */
    overflow: hidden;
    font-family: var(--body-font);
}

.comment .card .left,
.right {
    padding: 2rem;
}

.comment .card .left .left-up {
    margin: 0 0 2rem 0;
}

#commentCard {
    flex-direction: row;
}

#commentCard p {
    color: var(--background-color);
}

#commentCard .description {
    margin-top: 1rem;
}

#commentCard .right .description p {
    color: var(--dark-grey-text-color);
}

.comment .card .left {
    border-top-right-radius: 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(94deg,
            rgba(137, 115, 254, 1) 0%,
            rgba(1, 82, 255, 1) 43%,
            rgba(24, 121, 255, 1) 78%,
            rgba(97, 33, 255, 1) 100%);
    color: #ffffff;
    /* White text color */
    flex: 0 0 50%;
    /* Take up 60% of the card's width */
}

.comment .card .right {
    flex: 1;
    /* Take up the remaining space */
    background-color: #ffffff;
    /* White background for the right panel */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Vertically center the content */
}

.comment .card .right .right-up .title h1 {
    font-size: 3.75rem;
    margin: 0;
}

.comment .card .right .right-up p {
    margin: 0;
    font-size: 18px;
}

.comment .card .right .right-down a,
i {
    color: var(--features-button-purple-color);
    margin: 0.3rem;
}

/* You can also add media queries to make it responsive if needed */
@media (max-width: 768px) {
    .comment .card .card {
        flex-direction: column;
        /* Stack the children vertically on smaller screens */
    }

    .comment .card .left,
    .right {
        flex-basis: auto;
        /* Let the size be determined by the content */
    }
}

.asses {
    margin: 5rem 0;
}

.asses .text h1 {
    font-size: 3.75rem;
    font-family: var(--montserrat);
}

.asses .text li {
    font-size: 20px;
    font-family: var(--body-font);
}

.asses li {
    display: flex;
    flex-direction: row;
    margin: 3rem 0;
}

.asses .desc {
    text-align: start;
}

.asses hr {
    opacity: 0.3;
}

.asses li img {
    margin-right: 3rem;
}

.asses .button a {
    color: var(--background-color);
    background-color: var(--button-light-blue-color);
    /* background: linear-gradient(94deg, rgba(137,115,254,1) 0%, rgba(1,82,255,1) 43%, rgba(24,121,255,1) 78%, rgba(97,33,255,1) 100%); */
    padding: 1rem;
    border-radius: 10px;
    font-family: var(--montserrat);
}

.asses .button p {
    font-size: 13px;
    font-family: var(--body-font);
    color: var(--small-text-grey-color);
}

footer {
    background-color: #ececfa;
}

footer .title h1 {
    color: var(--footer-title-color);
    font-size: 24px;
    font-weight: bold;
    font-family: var(--navbar-font);
}

footer ul li a {
    color: #000;
    font-size: 16px;
    font-family: var(--navbar-font);
    transition: 0.5s;
}

footer .product-images {
    filter: grayscale(100%);
}

footer .products-nav-image {
    min-width: 150px;
    max-width: 175px;
}

footer .product-images:hover {
    filter: none !important;
}

footer ul li {
    margin: 0.5rem 0;
}

footer ul li a:hover {
    color: #0152ff;
    opacity: 1;
    transition: 0.5s;
}

footer .footer-container .title .tit div {
    margin: 1rem 0;
}

footer .footer-container .title .tit li {
    margin: 0.5rem 0;
}

footer .bottom-links a {
    color: #000;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
}

footer .install .title {
    font-size: 20px;
    color: var(--dark-blue-color);
    font-family: var(--montserrat);
}

.dropdown {
    width: 200px;
}

.select-box {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    appearance: none;
    /* Removes default styling for select element */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230077B5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    /* SVG for the dropdown arrow */
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    cursor: pointer;
}

/* Add focus style for accessibility */
.select-box:focus {
    outline: none;
    border-color: #0077b5;
}

.footer-bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-container .left {
    display: flex;
    flex-direction: row;
}

.footer-bottom-container .left .text {
    display: flex;
}

.footer-bottom-container .left .text li {
    margin: 0 1rem;
}

.footer-bottom-container .left .text li a {
    font-size: 13px;
    font-family: var(--navbar-font);
    color: #000;
    text-decoration: underline;
}

.sales .container h1 {
    color: var(--dark-blue-color);
    font-family: var(--navbar-font);
}

.sales .container .desc p {
    color: var(--sales-text-color);
}

.sales .container .button a {
    background-color: var(--button-light-blue-color);
    color: var(--background-color);
    padding: 1rem;
    border-radius: 100px;
}

.customer .container .title h1 {
    font-size: 3.75rem;
    font-family: var(--navbar-font);
    color: var(--background-color);
}

.customer .container .button a {
    background-color: var(--button-light-blue-color);
    color: var(--background-color);
    padding: 1rem 1.3rem;
    border-radius: 100px;
}

.customer .container .desc {
    font-size: 20px;
    font-family: var(--urbanist);
    color: var(--background-color);
}

.bg-image {
    background-image: url("/storage/files/operation-end-cover-2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    /* Tam ekran boyutunda olacak şekilde ayarlayın */
    /* display: flex;
      justify-content: center;
      align-items: stretch;
      text-align: center; */
    color: white;
    /* İçerik rengi */
}

.graphic .card {
    margin: 1rem;
    border: 2px solid #000;
    border-radius: 0;
    height: 108%;
}

.placeholder-img img {
    width: 100%;
    height: 150px;
    /* Yüksekliği ihtiyaca göre ayarlayın */
}

.graphic .badge p {
    font-size: 15px;
    font-family: var(--navbar-font);
    color: var(--button-light-blue-color);
    font-weight: 200;
    padding: 0;
}

.graphic .card .card-title {
    font-size: 30px;
    color: #000;
    font-family: var(--body-font);
    font-weight: 600;
}

.graphic .card .card-text {
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--dark-grey-text-color);
}

.payment .title h1 {
    font-size: 3.75rem;
    font-family: var(--navbar-font);
    color: #000;
}

.payment .title p {
    font-size: 20px;
    font-family: var(--body-font);
    color: var(--dark-grey-text-color);
}

.payment .card {
    box-shadow: none;
}

.payment .card .top {
    background-color: var(--card-title-back-color);
    padding: 0.7rem;
    border-radius: 16px;
}

.payment .card .card-title {
    font-size: 24px;
    font-family: var(--body-font);
    font-weight: bold;
}

.payment .card .title .card-text {
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--dark-grey-text-color);
}

.payment .card .card-text {
    color: var(--payment-card-text-color);
    font-size: 20px;
    font-family: var(--body-font);
}

.accord .title {
    font-size: 40px;
    font-family: var(--navbar-font);
    color: var(--background-color);
}

.accord {
    background-color: #fff;
}

.accord .right .progTop div {
    font-size: 24px;
    color: var(--background-color);
    font-family: var(--body-font);
    margin: 0 0.5rem;
}

.accord .right .order-title {
    font-size: 30px;
    color: var(--background-color);
    font-family: var(--body-font);
}

.accord .right .order-desc {
    font-size: 20px;
    font-family: var(--inter-font);
    color: #000;
}

.sales-button {
    font-size: 25px !important;
    background-color: #fefefe !important;
    box-shadow: 3px 3px #f0ebeb !important;
}

.header-slider {
    padding-top: 3.25rem;
    padding-bottom: 2.75rem;
}

.header-slider-sales {
    background-position: bottom left;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.logo-header-font {
    font-size: 22px;
}

.accord .accordion-button {
    color: #242424;
    font-size: 30px;
    font-family: var(--navbar-font);
}

.accord .accordion-button:active {
    color: #242424 !important;
}

.accord .accordion-button:hover {
    color: #242424 !important;
}

.accord .accordion-body p {
    color: #242424;
    font-size: 15px;
    font-family: var(--inter-font);
}

.accord .accordion-body a {
    color: var(--background-color);
    text-decoration: underline;
}

.accord .accordion-body {
    background-color: #ffffff;
}

/* .accordion-button::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
} */
/* .accordion-button:not(.collapsed)::after {
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
} */

.pre .title h1 {
    font-size: 3.75rem;
    font-family: var(--navbar-font);
}

.pre .title h1 b {
    font-weight: 100;
    color: #141125;
    font-family: var(--inter-font);
}

.pre .desc p b {
    color: #141125;
}

.pre .desc p {
    color: var(--dark-grey-text-color);
    font-size: 17px;
    font-family: var(--navbar-font);
}

.pre .card {
    border-radius: 20px;
    /* Rounded corners for card */
}

.pre .card-img-top {
    border-radius: 20px;
    /* Rounded corners for image */
    background-color: #eaeaea;
    /* Placeholder background color */
    height: 150px;
    /* Adjust height as needed */
    z-index: 99;
    width: 40%;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.2);
}

/* Style for the shadow effect */
.pre .shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.pre .img {
    transform: translateY(50px);
    z-index: 99;
    position: relative;
}

.pre {
    background-color: var(--card-title-back-color);
}

/* Further customization to closely match the design in the image */
.pre .card-body {
    position: relative;
    background: white;
    padding: 2rem;
    margin-top: 2.5rem;
    font-size: 20px;
    border-radius: 20px;
    /* Consistent rounded corners */
}

.pre .card-body p {
    color: var(--dark-grey-text-color);
    font-size: 15px;
}

.pre .btn-primary {
    background-color: var(--card-title-back-color);
    /* Bootstrap primary color */
    border: none;
    color: #141125;
    border-radius: 20px;
    /* Rounded corners for button */
    padding: 0.5rem 1.5rem;
    /* Button padding */
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee {
    --gap: 1rem;
    position: relative;
    display: flex;
    overflow: visible;
    user-select: none;
    gap: var(--gap);
}

.sales_marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {

    .marquee__content,
    .sales_marquee__content {
        animation-play-state: paused !important;
    }
}

/* Enable animation */
.enable-animation .marquee__content,
.enable-animation .sales_marquee__content {
    animation: scroll 50s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content,
.marquee--reverse .sales_marquee__content {
    animation-direction: reverse;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content,
.marquee--hover-pause:hover .sales_marquee__content {
    animation-play-state: paused;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
.marquee--fit-content {
    max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
.marquee--pos-absolute .marquee__content:last-child,
.marquee--pos-absolute .sales_marquee__content:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child,
.enable-animation .marquee--pos-absolute .sales_marquee__content:last-child {
    animation-name: scroll-abs;
}

@keyframes scroll-abs {
    from {
        transform: translateX(calc(100% + var(--gap)));
    }

    to {
        transform: translateX(0);
    }
}

/* Other page demo styles */
.marquee__content>* {
    list-style-type: none;
    display: inline-block;
    /* Make sure each li is inline */
    margin-right: 50px;
    /* Space between items */
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 18px;
    color: #000;
    font-family: var(--urbanist);
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sales_marquee__content>* {
    list-style-type: none;
    display: inline-block;
    /* Make sure each li is inline */
    margin-right: 50px;
    /* Space between items */
}

footer .marquee ul li img {
    margin-right: 0.3rem;
}

.marquee:hover .marquee__content,
.marquee:hover .sales_marquee__content {
    animation-play-state: paused;
}

.offer .container h1,
p {
    font-family: var(--body-font);
    color: var(--payment-card-text-color);
}

.offer .container p {
    color: var(--sales-text-color);
    font-size: 20px;
}

.offer .container .button a {
    background-color: var(--button-light-blue-color);
    color: var(--background-color);
    padding: 1rem 1.3rem;
    border-radius: 100px;
}

.offer {
    background-color: var(--card-title-back-color);
}

.video {
    margin-top: 5rem;
    text-align: center;
    font-family: var(--body-font);
}

.video h1 {
    font-size: 3.75rem;
    margin-bottom: 2rem;
}

.video p {
    margin-top: 2em;
    color: var(--payment-card-text-color);
    font-size: 20px;
}

.whatOffer {
    margin-top: 4rem;
}

.whatOffer #card {
    background-color: var(--card-title-back-color);
    padding: 2rem;
    border: 1px solid #fff;
    text-align: start;
    border-bottom: 0;
}

.whatOffer #card .title {
    font-size: 28px;
    margin: 1rem 0;
    font-family: var(--body-font);
    color: var(--payment-card-text-color);
}

.whatOffer #card .desc p {
    color: var(--card-title-back-color);
    transition: 0.5s;
}

.whatOffer #card:hover .desc p {
    color: #595b62;
}

.whatOffer #card path {
    stroke: var(--payment-card-text-color);
    transition: 0.5s;
}

.whatOffer #card:hover path {
    stroke: var(--button-light-blue-color);
    transition: 0.5s;
}

.whatOffer .left {
    color: var(--background-color);
}

.whatOffer .left .title h1 {
    font-size: 3.75rem;
}

.whatOffer .left .badge p {
    font-size: 14px;
    color: var(--background-color);
    font-weight: 100;
    font-family: var(--body-font);
}

.whatOffer .left .desc p {
    font-size: 17px;
    color: var(--background-color);
}

.whatOffer .left .button {
    margin-top: 3rem;
}

.whatOffer .left .button a {
    color: #fff;
    background-color: #fcc6fa;
    padding: 1rem 2rem;
    border-radius: 30px;
}

.reports {
    font-family: var(--body-font);
}

.reports .badge {
    font-size: 14px;
    color: var(--payment-card-text-color);
}

.reports .title h1 {
    font-size: 50px;
    color: var(--payment-card-text-color);
}

.reports .desc p {
    color: var(--sales-text-color);
    font-size: 17px;
}

.reports .list li {
    margin: 1rem 0;
    font-size: 17px;
    color: var(--sales-text-color);
}

.reports .list li .img {
    margin-right: 0.5rem;
}

.mailchimp .title h1 {
    color: var(--payment-card-text-color);
    font-size: 40px;
    font-family: var(--body-font);
}

.mailchimp {
    margin: 5rem;
}

.mailchimp .desc p {
    color: var(--sales-text-color);
    font-size: 20px;
    font-family: var(--body-font);
}

.story .title h1 {
    font-size: 3.75rem;
}

.story .desc p {
    font-size: 27px;
    color: var(--payment-card-text-color);
}

.gain {
    padding: 5rem;
    background-color: var(--footer-bg-color);
}

.gain .button a {
    background-color: var(--button-light-blue-color);
    color: var(--background-color);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 17px;
}

.salesComment {
    background-color: var(--carousel-bg-color);
}

.salesComment .car1 {
    background: linear-gradient(19deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    font-family: var(--urbanist);
}

.salesComment .car1 .desc p {
    font-size: 26px;
    color: var(--background-color);
}

.salesComment .car1 .author {
    font-size: 18px;
    color: var(--background-color);
}

.salesComment .car1 .mission {
    font-size: 16px;
    color: var(--background-color);
    opacity: 0.6;
}

#solitions a {
    color: var(--background-color);
}

.solitions .title h1 {
    color: var(--background-color);
    font-family: var(--body-font);
    font-size: 76px;
}

.solitions .button a {
    background-color: var(--background-color);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 17px;
}

.solitions .button {
    margin-top: 3rem;
}

.services .badge p {
    color: var(--button-yellow-color);
    font-size: 14px;
    font-weight: 100;
}

.services .title h1 {
    color: var(--background-color);
    font-size: 3.75rem;
    font-family: var(--body-font);
}

.services #servicesCard p {
    color: var(--background-color);
    font-size: 22px;
    font-family: var(--body-font);
}

.services #servicesCard .button a {
    color: var(--button-yellow-color);
    padding: 0.7rem 2.5rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 900;
    border: 2px solid #ffffff14;
    transition: 0.5s;
}

.services #servicesCard .title p {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.services #servicesCard {
    padding: 2rem;
    border-right: 2px solid #ffffff14;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
    text-align: center;
}

.services #servicesCard .info p {
    font-size: 12px;
    font-weight: 100;
    color: transparent;
    transition: 0.5s;
}

.services #servicesCard:hover {
    background-color: #3137d2;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top: 4px solid #f8ff35;
    transition: 0.5s;
}

.services #servicesCard:hover .info p {
    color: #ffffff70;
    transition: 0.5s;
}

.services #servicesCard:hover .button a {
    background-color: var(--button-yellow-color);
    color: #1117a0;
    transition: 0.5s;
}

.security .badge p {
    color: var(--button-yellow-color);
    font-size: 14px;
    font-weight: 100;
}

.security .title h1 {
    color: var(--background-color);
    font-size: 3.75rem;
    font-family: var(--body-font);
}

.security .desc .text {
    font-size: 17px;
    font-family: var(--body-font);
    color: #ffffff70;
    margin-left: 1rem;
}

.security .desc {
    border-left: 2px solid #ffffff14;
}

.security ul li {
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
}

.security ul li .text {
    margin-left: 0.4rem;
    color: var(--background-color);
    font-family: var(--body-font);
}

.security .button {
    margin-top: 2rem;
}

.security .button a {
    color: #1117a0;
    background-color: var(--button-yellow-color);
    padding: 0.7rem 2.5rem;
    border-radius: 100px;
    font-size: 16px;
    font-family: var(--body-font);
    font-weight: 800;
}

.securityDesc .title h1 {
    font-size: 3rem;
    font-family: var(--montserrat);
}

.securityDesc .info {
    font-size: 20px;
    font-family: var(--inter-font);
    color: #3137d2;
}

.securityDesc .desc p {
    font-size: 30px;
    font-family: var(--inter-font);
}

.securityCard .title h1 {
    font-size: 3rem;
    font-weight: bold;
}

.securityCard .title h1 b {
    font-family: var(--dm);
}

.securityCard .desc p {
    font-size: 18px;
    font-family: var(--urbanist);
}

.securityCard .button a {
    color: var(--background-color);
    background-color: #3137d2;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 900;
}

.blog .tit h1 {
    font-size: 3.75rem;
}

.blog .img {
    width: 570px;
    height: 320px;
    background-color: #d0d0d0;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.blog .badge {
    color: #000;
    font-size: 14px;
    font-family: var(--body-font);
    margin: 1rem 0;
}

.blog .title h1 {
    font-size: 30px;
    font-family: var(--body-font);
}

.blog .desc p {
    font-size: 18px;
    font-family: var(--body-font);
    color: #00000070;
}

.blog .button a {
    color: #000;
    font-size: 15px;
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: 0.5s;
}

.blog .button a:hover {
    background-color: #1117a0;
    border-radius: 30px;
    color: var(--background-color);
    transition: 0.5s;
}

#sec li a {
    color: var(--background-color);
    transition: 0.5s;
}

#sec .bottom-links a {
    color: #fff;
}

#sec .title h1 {
    color: var(--background-color);
}

#sec .title {
    color: var(--background-color);
}

#sec li a:hover {
    color: #f4fa49;
    transition: 0.5s;
}

#sec .marquee li .text {
    margin-right: 1rem;
}

#sec .marquee li {
    color: var(--background-color);
    font-family: var(--body-font);
    font-size: 22px;
    background-color: #3137d2;
    display: flex;
    align-items: center;
    transition: 0.5s;
}

#sec .marquee li:hover {
    background-color: #f8ff35;
    color: #1117a0;
    transition: 0.5s;
}

.sticky-top {
    box-shadow: 1px 1px 5px #e8e8e8;
}

.secCard {
    background-color: #0000ff;
    /* Kartın arka plan rengi */
    border-radius: 50px;
    /* Yuvarlatılmış köşeler için sınır yarıçapı */
    color: white;
    /* Metin rengi */
    padding: 2rem;
    /* İç boşluk */
    width: 150px;
    /* Kart genişliği */
    height: 300px;
    /* Kart yüksekliği */
    display: flex;
    /* Flexbox modelini kullan */
    flex-direction: column;
    /* Öğeleri dikey olarak hizala */
    align-items: center;
    /* İçerikleri yatay ortada hizala */
    justify-content: center;
    /* İçerikleri dikey ortada hizala */
    font-size: 1.25rem;
    /* Metin boyutu */
    font-family: sans-serif;
    /* Metin fontu */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    /* Gölge efekti */
}

.vertical-text {
    writing-mode: vertical-lr;
    /* Metini dikey hale getir */
    text-orientation: upright;
    /* Metni düzgün dikey hizalama için */
}

y .toggle-switch {
    position: relative;
    display: inline-block;
    background-color: #6e00ff;
    /* Arka plan rengi */
    border-radius: 50px;
    /* Dairesel köşeler için */
    padding: 5px;
    /* İç boşluk */
}

.toggle-btn {
    background-color: transparent;
    border: none;
    color: white;
    /* Yazı rengi */
    font-size: 16px;
    /* Yazı boyutu */
    line-height: 1.5;
    /* Satır yüksekliği */
    border-radius: 50px;
    /* Dairesel köşeler için */
    padding: 10px 20px;
    /* İç boşluk */
}

.toggle-btn.active,
.toggle-btn:hover {
    background-color: #f8ff35;
    /* Aktif veya hover durumunda arka plan */
    color: #000;
    /* Aktif veya hover durumunda yazı rengi */
}

/* Odaklanıldığında stil düzenlemesi */
.toggle-btn:focus {
    outline: none;
}

.pricing .title h1 {
    font-size: 70px;
    color: var(--background-color);
}

.pricing .desc p {
    font-size: 17px;
    color: var(--background-color);
    font-family: var(--body-font);
}

.scroll {
    position: relative;
    top: -55px;
}

.priceTable p {
    color: #5f6168;
    font-size: 14px;
}

.priceTable .title h1 {
    font-size: 16px;
}

.priceTable .price {
    font-size: 50px;
}

.priceTable .free .button a {
    background-color: #202124;
    color: var(--background-color);
    padding: 0.7rem 4rem;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 900;
}

.priceTable .pro .button a {
    background-color: #6b14fa;
    color: var(--background-color);
    padding: 0.7rem 4rem;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 900;
}

.priceTable table tbody {
    font-size: 16px;
    color: #202124;
    font-family: var(--body-font);
}

.priceTable table tbody td,
th {
    padding: 1.5rem;
}

.priceTable tbody tr th {
    background-color: #f5f3f8;
}

.priceTable tbody tr .last {
    background-color: #f5f3f8;
}

.priceTable tbody tr {
    border-bottom: 1px solid #edebf0;
}

.priceTable span {
    vertical-align: super;
    font-size: 18px;
}

.priceTable small {
    font-size: 18px;
}

.plansTable .title h1 {
    font-size: 50px;
    font-family: var(--montserrat);
}

.plansTable .desc p {
    color: var(--dark-grey-text-color);
}

.plansTable table .title {
    font-size: 15px;
}

.plansTable table .tit {
    font-size: 22px;
    font-family: var(--body-font);
}

.plansTable table .grow a {
    background-color: #6b14fa;
    color: var(--background-color);
    padding: 0.7rem 4rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 900;
}

.plansTable table .basic a {
    background-color: #000;
    color: var(--background-color);
    padding: 0.7rem 4rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 900;
}

#plans {
    font-size: 17px;
    color: #202124;
}

#plans tr th,
td {
    padding: 2.5rem;
}

.accor .title h1 {
    font-size: 50px;
    font-family: var(--body-font);
}

.accor .desc p {
    font-size: 17px;
    font-family: var(--body-font);
    color: var(--dark-grey-text-color);
}

.accor .button a {
    background-color: #1879ff;
    color: var(--background-color);
    padding: 0.7rem 2rem;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 900;
}

.accor .accordion-button {
    font-size: 22px;
    color: #01103d;
}

.accor .accordion-body {
    font-size: 16px;
    color: var(--dark-grey-text-color);
}

.accor .accordion .accordion-button {
    padding: 3rem;
    border: 0;
}

.accor .accordion-item {
    border: 0;
    border-bottom: 1px solid #ebecf0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button .icon {
    margin-left: auto;
    /* İkonu sağa alır */
    transition: transform 0.2s ease-in-out;
    /* Animasyon efekti */
}

.accordion-button::after {
    color: #242424;
}

.noneIc {
    display: none;
}

.blockIc {
    display: block;
}

.shadow-boxx {
    border-radius: 20px;
    /* Yuvarlak köşeler */
    background-color: white;
    /* Beyaz arka plan rengi */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Yatay-offset, dikey-offset, bulanıklık yarıçapı, yayılma yarıçapı ve renk */
    margin: 20px;
    /* Dış boşluk */
    /* Diğer stil özellikleri */
}

.sliderPrice {
    padding: 5rem 0;
    background-color: var(--slider-price-color);
    background-image: url("/img/sliderPriceBgImage.svg");
}

.sliderPrice .top .left h1 {
    font-size: 3.75rem;
    color: var(--background-color);
    font-family: var(--body-font);
}

.sliderPrice .top .left .badge {
    font-size: 14px;
    color: var(--background-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 200;
}

.sliderPrice .top .right .button div {
    background-color: var(--background-color);
    padding: 1.3rem;
    margin: 0 0.5rem;
    border-radius: 50%;
}

.sliderPrice .sliderCard .title {
    font-size: 24px;
    font-family: var(--body-font);
    color: #000;
}

.sliderPrice .sliderCard .mission {
    color: var(--dark-grey-text-color);
}

.sliderPrice .sliderCard .desc p {
    color: var(--dark-grey-text-color);
    font-size: 20px;
    font-family: var(--body-font);
}

.sliderCard .sliderItem {
    background-color: var(--background-color);
    border-radius: 16px;
    padding: 2rem;
}

.sliderPrice .sliderCard {
    overflow: hidden;
    /* Hide the overflowed content */
}

.sliderPrice .row {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping of items */
    transition: transform 0.5s ease;
    /* Smooth transition for sliding effect */
    margin-left: 0;
    /* Reset margin left for the sliding effect */
}

.sliderPrice .sliderItem {
    flex: 0 0 auto;
    /* Prevent items from stretching or shrinking */
}

#salesSlider {
    background-color: var(--carousel-bg-color);
    background-image: none;
}

#salesSlider .sliderItem p {
    color: var(--background-color);
}

#salesSlider .sliderItem {
    background: linear-gradient(324deg, rgba(255, 255, 255, 0.1) 100%, rgba(255, 255, 255, 0.4) 0%);
}

#salesSlider .left .title {
    font-family: var(--urbanist);
    font-size: 3.75rem;
}

#salesSlider .title i {
    font-family: var(--dm);
    color: var(--background-color);
}

#salesSlider .bottom .name {
    font-size: 18px;
    color: var(--background-color);
}

#salesSlider .bottom .mission {
    font-size: 16px;
    color: var(--background-color);
    opacity: 0.6;
}

.softecInfo .badge {
    color: #6b14fa;
    font-size: 14px;
    font-family: var(--body-font);
}

.softecInfo .title h1 {
    font-size: 3.75rem;
    color: #080829;
}

.softecInfo .desc p {
    font-size: 17px;
    color: var(--dark-grey-text-color);
}

.softecInfo .descBottom p {
    color: var(--carousel-bg-color);
    font-size: 20px;
}

.softecInfo .softBottom .badge {
    color: #b2b2b8;
    font-size: 12px;
}

.softecInfo .softBottom .text {
    color: #080829;
    font-size: 44px;
}

.softecInfo .softBottom .desc {
    color: var(--dark-grey-text-color);
    font-size: 17px;
}

.services .col-md-4 {
    transition: 0.5s;
}

.services .col-md-4:hover {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.06);
    transition: 0.5s;
}

.services-row .services-row-items {
    margin-bottom: 1rem;
    min-height: 20rem;
}

.services-row .active {
    background-image: url(/img/servicesSettingBg.svg);
    background-repeat: no-repeat;
    padding: 3rem;
    background-size: cover;
    border-radius: 20px;
}

.services-row .active .desc h1,
.services-row .active .desc .badge,
.services-row .active .bottom .badge,
.services-row .active .services-item-description {
    color: #ffffff !important;
}

.accom ul li {
    margin: 0 1rem;
}

.accom ul li a {
    color: #5f6168;
    border: 1px solid rgba(32, 33, 36, 0.1);
    border-radius: 100px;
    padding: 0.4rem 1.5rem;
    transition: 0.5s ease;
}

.accom ul li:hover a {
    color: #fff;
    background-color: #0c65ff;
    transition: 0.5s ease;
}

.accom .accomCard:hover .title {
    color: #0c65ff;
    transition: 0.5s;
}

.accom .accomCard:hover {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.consulPro .back {
    width: 230px;
    height: 280px;
    border-radius: 20px;
    transform: rotate(-10deg);
    transition: 0.5s ease;
}

.consulPro .backOpa {
    width: 230px;
    height: 280px;
    transform: rotate(10deg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: 0.5s ease;
}

.consulPro .backOpa .texts .icCon,
.textCon {
    margin: 8rem 1rem;
}

.consulPro .consulProCard:hover .backOpa {
    transform: rotate(0deg);
    transition: 0.5s ease;
}

.consulPro .consulProCard {
    transform: scale(1);
    transition: 0.5s ease;
}

.consulPro .consulProCard:hover {
    transform: scale(1.1);
    transition: 0.5s ease;
}

.consulPro .consulProCard .text {
    margin-bottom: 0;
}

.consulPro .consulProCard:hover .back {
    transform: rotate(0deg);
    transition: 0.5s ease;
}

.consulPro .consulProCard .expl {
    opacity: 0;
    /* Start fully transparent */
    transform: translateX(-20px);
    /* Start 20px below its final position */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Animate both opacity and position */
}

/* State of the .expl element when the card is hovered over */
.consulPro .consulProCard:hover .expl {
    opacity: 1;
    /* Fade in to fully visible */
    transform: translateX(0px);
    /* Move to final position */
    /* No need to re-declare the transition property here unless you want different timing or easing */
}

.tools li {
    list-style-type: disc;
    color: #44464d;
    font-size: 15px;
    margin: 0.7rem 0;
}

.swCard {
    transform: scale(1);
    transition: 0.5s ease;
}

.swCard:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
}

.dropNav .links {
    margin: 0.5rem 0;
}

.dropNav .right .button a {
    color: #1879ff;
    border: 2px solid #1879ff;
    padding: 0.5rem 1.3rem;
    border-radius: 36px;
}

.dropNav .links .title {
    background-color: var(--background-color);
    transition: 0.5s;
}

.dropNav .links .title:hover {
    background-color: #dce8f8;
    transition: 0.5s;
}

.dropNav .links {
    font-family: sans-serif;
    font-weight: 600;
}

.dropNav .proMana .desc {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 500;
}

.dropNav .descAc {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 500;
}

.dropNav .leftDesc {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 500;
}

.iso .title h1 {
    background: linear-gradient(90deg, #9774ca, #4a2097, #5b0cf8, #451ea9, #25107c, #2100ff),
        linear-gradient(90deg,
            #b082f7 9.38%,
            #5c34a4 33.97%,
            #6c57f8 51.07%,
            #4a06fa 69.17%,
            #52477d 80.53%,
            #2100ff 101.75%),
        linear-gradient(90deg,
            #9774ca -3.2%,
            #4a2097 18.93%,
            #5b0cf8 43.06%,
            #451ea9 58.44%,
            #25107c 80.07%,
            #2100ff 102.2%),
        linear-gradient(90deg, #c099fb 7.23%, #9c6ff7 41.81%, #4a06fa 64.87%, #3202fb 80.07%, #2100ff 102.2%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.iso .desc p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    font-weight: 400;
}

.whatWill .button a {
    background-color: #2369ef;
    color: var(--background-color);
    padding: 0.7rem 2.1rem;
    border-radius: 100px;
    font-size: 1.063rem;
    font-weight: 900;
}

.whatWill .right {
    padding: 0;
    margin-top: 1rem;
}

.whatWill .img {
    margin: 0 1.5rem;
}

.whatWill1 .container {
    position: relative;
}

.whatWill1 .timeline-item {
    margin-bottom: 50px;
    /* Adjust as necessary to align with the timeline */
}

.whatWill1 .img-placeholder {
    margin: auto;
    /* Center the placeholder in the column */
}

.whatWill1 .line {
    width: 100%;
    /* This will stretch the line across the container */
}

.whatWill1 .marker {
    position: absolute;
}

.posts .accomCard .title b {
    color: #202124;
    transition: 0.5s;
}

.posts .accomCard:hover .title b {
    color: #600ee4;
    transition: 0.5s;
}

.posts .accomCard {
    box-shadow: none;
    transition: 0.5s;
    background-color: #fff;
}

.posts .accomCard:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s;
}

.blog .list li {
    color: #202124;
    font-size: 1.063rem;
    margin: 1rem 0;
}

.blog .list li img {
    margin-right: 0.5rem;
}

#sidebarCard:hover #sidebarTitle p {
    color: #600ee4;
    transition: 0.5s;
}

#sidebarCard {
    margin: 1rem 0;
}

#sidebarTitle p {
    color: #202124;
    transition: 0.5s;
}

.bod .cate .nmbr p {
    color: #5f6168;
    transition: 0.5s;
}

.bod .cate .texts p {
    color: #5f6168;
    transition: 0.5s;
}

.bod .cate:hover .texts p {
    color: #600ee4;
    transition: 0.5s;
}

.bod .cate:hover .nmbr p {
    color: #600ee4;
    transition: 0.5s;
}

.sec1 .title h1 {
    background: linear-gradient(90deg, #9774ca, #4a2097, #5b0cf8, #451ea9, #25107c, #2100ff),
        linear-gradient(90deg,
            #b082f7 9.38%,
            #5c34a4 33.97%,
            #6c57f8 51.07%,
            #4a06fa 69.17%,
            #52477d 80.53%,
            #2100ff 101.75%),
        linear-gradient(90deg,
            #9774ca -3.2%,
            #4a2097 18.93%,
            #5b0cf8 43.06%,
            #451ea9 58.44%,
            #25107c 80.07%,
            #2100ff 102.2%),
        linear-gradient(90deg, #c099fb 7.23%, #9c6ff7 41.81%, #4a06fa 64.87%, #3202fb 80.07%, #2100ff 102.2%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-media .accomCard .title b {
    color: #202124;
    transition: 0.5s;
}

.social-media .accomCard:hover .title b {
    color: #600ee4;
    transition: 0.5s;
}

.social-media .accomCard {
    box-shadow: none;
    transition: 0.5s;
    background-color: #fff;
}

.social-media .accomCard:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s;
}

.optimizeApp .title {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: start;
}

.optimizeApp .bot .title h1 {
    color: #1d396b;
    font-size: 1.25rem;
    font-family: var(--navbar-font);
    margin-left: 0.7rem;
}

.optimizeApp .bot p i {
    color: #9db1bc;
    font-size: 0.938rem;
}

.optimizeApp .bot p {
    margin-top: 0.5rem;
}

.hostings .title h1 {
    color: #1d396b;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.hostings .desc p {
    color: #9db1bc;
    font-size: 0.938rem;
}

.hostings .col-md-4 {
    margin: 1rem 0;
}

.appInf .col-md-3 {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.appInf .col-md-3:hover {
    box-shadow: 0px 19px 20px 0px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.activePlat {
    width: 30%;
}

.disPlat {
    width: 8.6%;
}

:root {
    --base-margin-left: -1rem;
    /* Başlangıç margin-left değeri */
}

/* .disPlat:nth-of-type(1) .verti p {
	margin-left: var(--base-margin-left) + 1.5rem;
} */

.disPlat:nth-of-type(2) .verti p {
    margin-left: calc(var(--base-margin-left) - 0.5rem);
}

.disPlat:nth-of-type(3) .verti p {
    margin-left: calc(var(--base-margin-left) - 1.5rem);
}

.disPlat:nth-of-type(4) .verti p {
    margin-left: calc(var(--base-margin-left) + 0.5rem);
}

.disPlat:nth-of-type(5) .verti p {
    margin-left: calc(var(--base-margin-left) - 2.5rem);
}

.activePlatTitle {
    margin-top: 2rem;
    color: #fff;
    font-size: 1.375rem;
    letter-spacing: 0px;
    margin-left: 0;
}

.disPlatTitle {
    margin-left: -1.3rem;
    position: absolute;
    margin-top: 4.5rem;
    transform: rotate(90deg);
    color: #fff;
    font-size: 1rem;
    mix-blend-mode: hard-light;
    opacity: 0.7;
    letter-spacing: 0px;
}

.activePlatDesc {
    display: block;
    color: #fff;
    font-size: 1.063rem;
    mix-blend-mode: hard-light;
    opacity: 0.7;
}

.disPlatDesc {
    display: none;
}

.activeNumber {
    color: #fff;
    font-size: 3.75rem;
}

.disNumber {
    color: #fff;
    font-size: 1.625rem;
}

#myVideo {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    z-index: -9;
}

#pro .icon img,
#optimization .icon img {
    width: 50px;
}

/* .imgs {
  background-image: url(/img/worldsvg.svg);
  background-repeat: no-repeat;
} */

.section-bottom p {
    font-size: 1.125rem;
}

.fullforce {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #8973FE 5.39%, #0152FF 38.38%, #1879FF 71.36%, #6121FF 104.35%, #6121FF 104.35%);
}

.fullforce .swiper-pagination-bullet-active {
    background: white;
}

.fullforce .card {
    /* min-height: 320px; */
    min-width: 280px;
    color: white;
    border: 1.5px solid;
    border-image-source: linear-gradient(111.2deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.16) 27.46%, rgba(255, 255, 255, 0.1) 55.43%, rgba(255, 255, 255, 0.8) 89.37%);
    background: linear-gradient(90deg, #8973FE 5.39%, #0152FF 38.38%, #1879FF 71.36%, #6121FF 104.35%, #6121FF 104.35%);
    box-shadow: 0px 20px 20px 0px #1C093D33;
}

.fullforce .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullforce .swiper-slide img {
    display: block;
    width: 50px;
    height: 100%;
    object-fit: cover;
}

.nav-segment {
    position: relative;
    background: rgba(110, 57, 200, 1);
    padding: .5rem;
    border-radius: 50rem;
}

.nav-segment:not(.nav-fill) {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.nav-segment .nav-link {
    color: #fff;
    font-size: .8125rem;
    padding: .75rem 2.5rem;
    border-radius: 50rem;
}

.nav-segment .nav-link:hover {
    color: #e8e8ff
}

.nav-segment .nav-link.active {
    color: #1e2022;
    background-color: #fff;
    box-shadow: 0 .1875rem .375rem 0 rgba(140, 152, 164, .25)
}

.nav-segment .nav-link.disabled {
    color: #bdc5d1
}

.nav-segment.nav-pills {
    border-radius: 50rem;

}

.nav-segment.nav-pills .nav-link {
    border-radius: 50rem;
}

.table-equal-width tr {
    border-radius: 5px;
}

.table-equal-width td {
    width: 50%;
    /* Adjust this value based on your requirements */
}

.table-equal-width td:first-child {
    background: rgba(245, 243, 248, 1);
}

.table-equal-width td:nth-child(2) {
    text-align: center;
}

.pricing .column-img-container {
    bottom: -5%;
    left: 60%;
    z-index: 22;
}

#primary-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#primary-nav a {
    color: #000;
}
#primary-nav a:hover {
    background: none !important;
}
.btn:first-child:active {
    background-color: #ffffff !important;
    border:none !important;
}


#resourcesDrop {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
}

.dropNav .row .col-md-5 {
    display: flex;
}

.resources-nav-list {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
}

.navRight {
    align-items: center;
}

.contact-sales-nav-label {
    color: #000;
}

.signup-nav-label {
    background-color: #0C65FF;
    color: #fff;
    padding: .4rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.login-nav-label {
    padding: .4rem 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background-color: var(--buttonligt-grey-color);
    font-size: 15px;
    color: var(--dark-blue-color);
}

.contact_sales {
    border-right: 1px solid rgba(1, 16, 61, 0.2);
    padding-right: 1.75rem;
}

.navbar_contact_sales-nav-label {
    color: #01103D !important;
}

.products-nav-label {
    font-size: 1.275rem !important;
}

.mega-menu-links-nav-label,
.mega_menu_medical-nav-label {
    color: #696969;
    font-size: 1.1rem;
    padding: 0px 5px;
    vertical-align: bottom;
    font-weight: 400;
}

.full-force {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 1.375rem;
}

.primary-nav-link {
    padding: 0;
}

.operation-feature {
    border-radius: 50px;
    padding: 3em;
    background: #e2ebff;
}

.operation-feature h1 {
    font-weight: 600;
}

.mega-menu-links-nav-link,
.mega_menu_medical-nav-link {
    width: 100%;
}

.navLinks .mega-menu-links-nav-item,
.navLinks .mega_menu_medical-nav-item {
    display: flex;
    justify-content: space-between;
    /* Space items evenly */
    align-items: center;
    /* Align items vertically in the center */
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
}

.mega-menu-links-nav-item::after {
    content: url("/img/arrowPurple.svg");
    margin-left: auto;
    /* Push the SVG to the end of the line */
    /* Adjust the size of the SVG */
    /* For example: */
    width: 20px;
    height: 20px;
}

.navLinks .mega-menu-links-nav-item:hover,
.navLinks .mega_menu_medical-nav-item:hover {
    background-color: #dce8f8;
    transition: 0.5s;
}

.mega-menu-links {
    border-radius: 8px;
    padding: .5rem;
    display: flex;
    justify-content: space-around;
}

.mega-menu-sales-sub-menus-nav-label,
.mega-menu-operation-sub-menus-nav-label,
.mega-menu-fullforce-sub-menus-nav-label {
    color: #01103D !important;
}

nav {
    background: #fff;
}

.dropdown button {
    padding: 0;
}

.navbar_contact_sales-nav-list {
    padding: 0;
}

.login-nav-list {
    padding: 0;
    margin-top: 1.5rem;
}

.primary-nav-list {
    margin: .8rem 0 !important;
}

.navbar_products-nav-item {
    margin-bottom: .5rem;
}

.dropNav .row .col-md-5,
.dropNav .row .col-md-3 {
    display: block !important;
}

.navbar_products-nav-item {
    margin: 0 !important;
}

/*.navRight{*/
/*    align-items: baseline!important;*/
/*}*/

.signup-nav-link {
    margin-right: 1rem;
}

#dropdownMenuButton {
    align-items: center;
    border: 0;
}

#dropdownMenu.show-dropdown {
    display: block !important;
}
.dropdownMenu {
        border: none;
        box-shadow: rgb(235, 232, 232) 1px 1px 5px;
        display: block;
        --darkreader-inline-border-top: none;
        --darkreader-inline-border-right: none;
        --darkreader-inline-border-bottom: none;
        --darkreader-inline-border-left: none;
        --darkreader-inline-boxshadow: #242729 1px 1px 5px;
        margin-left: -1rem;
}

@media screen and (max-width: 900px) {
    .dropNav .col-md-8 {
        display: none;
    }
    .mega-menu-mobile-links-nav-item {
        text-align: center;
        line-height: 4rem;
    }
    #menuitem_66 {
        padding-bottom: 2rem;
    }
    .mega-menu-mobile-links-nav-label {
        font-size: 22px;
        padding-left: 5px;
    }
    .signup-nav-link {
        margin-right: 0 !important;
    }
    #menuitem_58 {
        font-size: 27px;
        text-align: center;
        color: #000000 !important;
    }

    .primary-nav ul {
        padding-left: 0px !important;
    }

    .fixNav {
        height: 6vh !important;
    }

    .navRight {
        align-items: center !important;
    }

    #primary-nav {
        align-items: center !important;
    }

    .primary-nav-label,
    .navbar_resources-nav-label,
    .navbar_products-nav-label {
        font-size: 1.75rem;
    }

    .navbar_contact_sales-nav-label {
        font-size: 1.45rem;
    }

    #dropdownMenu {
        box-shadow: none !important;
    }
}

@media screen and (max-width:991px) {
    .operation-last-img {
        bottom: -65% !important;
    }

    .signup-nav-link {
        margin-right: 0;
    }

    .contact_sales {
        border-right: none;
        padding-right: 0;
    }

    .operation-img-bg {
        height: 38vh;
    }

    .primary-nav .dropdown-center {
        padding-left: 0;
    }

    .bg-image {
        position: relative;
        background-image: url("/storage/files/operation-footer-bg.png");
    }

    .bg-image .title h2 {
        font-size: 1.25rem;
    }

    .customer .starts>* {
        width: 20px;
    }

    .customer .container {
        padding: 0 !important;
    }

    .customer {
        position: absolute;
        top: 47%;
        left: 0;
        transform: translate(0, -47%);
        width: 100%;
        padding: 0 !important;
    }

    #automationBtn,
    #reportsBtn,
    #offersBtn {
        font-size: 2rem !important;
    }

    .newImg div {
        min-height: 25rem !important;
    }

    .worldMap {
        min-height: 35vh !important;
    }

    .pricing .column-img-container {
        bottom: 40%;
        left: 60%;
    }
}





/* Support Floating Button */
.ba-we-love-subscribers {
    width: 290px;
    height: 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0 0 10px 0;
    overflow: hidden;
    opacity: 0;
}

.ba-we-love-subscribers.open {
    height: 270px;
    opacity: 1;
}

.floating-support a {
    color: #ffffff !important;
    text-decoration: none;
}

.floating-support a:hover {
    color: #ffffff !important;
}

.floating-support a::after {
    color: #ffffff !important;
}

.floating-support-tab {
    padding: 10px 20px;
    background: #3c3c3c;
    width: 220px;
    text-align: center;
    border-radius: 50px;
    color: #fff;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    margin-bottom: 8px;
}

.floating-support svg {
    padding-top: 3px;
}

.whatsapp-support {
    background: #24af2d !important;
}

.ticket-support {
    background-color: #282466 !important;
}

.ba-we-love-subscribers.popup-ani {
    -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ba-we-love-subscribers h1 {
    font-size: 20px;
    color: #757575;
    padding: 25px 0;
    margin: 0;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;

}

.ba-we-love-subscribers .love {
    width: 20px;
    height: 20px;
    background-position: 35px 84px;
    display: inline-block;
    margin: 0 6px;
    background-size: 62px;
}

.ba-we-love-subscribers .ba-logo {
    width: 65px;
    height: 25px;
    background-position: 0px;
    margin: 0 auto;
    opacity: .5;
    cursor: pointer;
}

.ba-we-love-subscribers .ba-logo:hover {
    opacity: 1;
}

.logo-ani {
    transition: 0.5s linear;
    -webkit-transition: 0.5s linear;
}

.ba-we-love-subscribers input {
    font-size: 14px;
    padding: 12px 15px;
    border-radius: 15px;
    border: 0;
    outline: none;
    margin: 8px 0;
    width: 100%;
    box-sizing: border-box;
    line-height: normal;
    /*Bootstrap Overide*/
    font-family: sans-serif;
    /*Bootstrap Overide*/
}

.ba-we-love-subscribers form {
    padding: 5px 30px 0;
    margin-bottom: 15px;
}

.ba-we-love-subscribers input[name="email"] {
    background-color: #eee;
}

.ba-we-love-subscribers input[name="submit"] {
    background-color: #00aeef;
    cursor: pointer;
    color: #fff;
}

.ba-we-love-subscribers input[name="submit"]:hover {
    background-color: #26baf1;
}

.ba-we-love-subscribers-fab {
    width: 65px;
    height: 65px;
    background-color: #ef00ad;
    border-radius: 30px;
    float: right;
    box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
    z-index: 5;
    position: relative;
}

.ba-we-love-subscribers-fab .img-fab {
    height: 30px;
    width: 30px;
    margin: 15px;
    color: #ffffff;
}

.ba-we-love-subscribers-fab .wrap {
    transform: rotate(0deg);
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}

.ba-we-love-subscribers-fab .ani {
    transform: rotate(45deg);
    -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
    transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}

.ba-we-love-subscribers-fab .close {
    background-position: -2px 1px;
    transform: rotate(-45deg);
    float: none;
    /*Bootstrap Overide*/
    opacity: 1;
    /*Bootstrap Overide*/
}

.ba-we-love-subscribers-wrap {
    position: fixed;
    right: 25px;
    bottom: 2rem;
    z-index: 1000;
}

.ba-settings {
    position: absolute;
    top: -25px;
    right: 0px;
    padding: 10px 20px;
    background-color: #555;
    border-radius: 5px;
    color: #fff;
}

@media screen and (max-width: 650px) {
    .ba-we-love-subscribers-wrap {
        right: 25px;
        bottom: 1rem;
    }

    .social-nav-list {
        display: flex;
        justify-content: center;
    }
}

/* Support Floating Butto END */