:root {
    --color-base-green: #02676C;
    --color-linear-green: #32B098;
    --color-base-orange: #FF7733;
    --color-light-gray: #F9FAFB;
    --color-active-gray: #f1f1f1;
    --color-bg-gray: #F8F9F9;
    --color-vector-gray: #e4e4e4;
    --color-black: #24282B;
    --color-black-feature: #08080C;
    --color-black-text: #475467;
    --color-black-border: #101828;
}

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

body {
    margin: 0;
    padding: 0;
    /*overflow-x: hidden;*/
    font-family: 'Inter', sans-serif;
    color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font-weight: 400;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

img {
    min-height: 100%;
    min-width: 100%;
    width: 100%;
    height: 100%;
}

ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

button {
    border: 0;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}
::selection {
    background-color: var(--color-black-text);
    color: white;
}
.container {
    margin: auto;
}
.orangeButton {
    transition: all 0.3s ease;
}
.orangeButton:hover {
    background-color: rgb(237, 83, 0);
}
.orangeButton:active {
    background-color: rgb(212, 67, 0);
}
.outlineButton {
    transition: background-color 0.3s ease;
}
.outlineButton:hover {
    background-color: var(--color-light-gray);
}
.outlineButton:active {
    background-color: var(--color-active-gray);
}
.navbarButton {
    width: fit-content;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    color: white;
    font-weight: 600;
    padding: 8px 12px;
    background-color: var(--color-base-orange);
    border-radius: 0.5rem;
}
.navbarLogo {
    width: 160px;
    height: auto;
}
.hideScrollbar {
    scrollbar-width: none;
}
/*Header start*/
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
    transition: all 0.3s ease;
}
.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.navContainer {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
}
.headerPart {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    padding: 48px 0;
    border-radius: 32px;
    background: url("../assets/vector_grate.svg"),
            linear-gradient(180deg, #02676C 0%, #32B098 100%),
            no-repeat;
    background-size: cover;
    text-align: center;
    align-items: center;
}
.headerPart h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    color: white;
}
.headerPart p {
    font-size: 18px;
    color: white;
    line-height: 28px;
    opacity: 0.8;
    margin-top: 32px;
    padding: 0 10px;
}

.headerButton {
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    color: white;
    font-weight: 600;
    padding: 12px 18px;
    background-color: var(--color-base-orange);
    border-radius: 0.5rem;
    margin-top: 32px;
}
.partnersContainer {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
.partnersContainer h5 {
    font-size: 20px;
    line-height: 30px;
    color: white;
    font-weight: 500;
}
.partnersListBox {
    overflow: hidden;
    white-space: nowrap;
    margin-top: 32px;
    display: flex;
}
@keyframes partner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.partnersList {
    flex: none;
    display: flex;
    animation: 10s partner infinite linear;
}
.partner {
    flex: none;
    width: auto;
    height: 32px;
    margin: 0 20px;
}
.partner img {
    object-fit: contain;
}
.leftVector {
    top: 370px;
    left: 92px;
    font-size: 90px;
}
.rightVector {
    top: 313px;
    right: 37px;
    font-size: 142px;
}
.leftVector, .rightVector {
    position: absolute;
    display: none;
    color: var(--color-base-orange);
}

/*Key features*/
.keyFeatures {
    margin-top: 60px;
}
.keyFeatureContainer {
    background-color: var(--color-bg-gray);
    border-radius: 24px 24px 40px 40px;
    padding-top: 80px;
}
.textContainer {
    padding: 0 10px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-black-feature);
}
.sectionTitle {
    font-size: 28px;
    font-weight: 500;
}
.textContainer p {
    font-size: 18px;
    text-align: center;
    line-height: 32px;
    margin-top: 32px;
}
.featuresUlContainer {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 32px;
}
.featuresUl {
    padding-left: 20px
}
.featureLi {
    list-style-type: disc;
    line-height: 24px;
}
.featureLi span {
    font-weight: 500;
}
.featureImageContainer {
    margin-top: 32px;
    border-radius: 40px;
    height: 444px;
}
.featureImageContainer img {
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
}

/*reviews*/
.reviews {
    margin-top: 60px;

}
.reviewsContainer {
    text-align: center;
}
.embla {
    margin-top: 32px;
}
.reviewCard {
    background-color: var(--color-bg-gray);
    border-radius: 12px;
    padding: 32px 24px;
    width: 100%;
    max-width: 300px;
}
.reviewAvatarBox {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex: none;
}
.reviewerInfo {
    display: flex;
    align-items: start;
}
.reviewerNameContainer {
    display: flex;
    flex-direction: column;
    margin-left: 16px;
}
.reviewerNameContainer h5 {
    font-size: 18px;
    line-height: 32px;
    color: var(--color-black-feature);
}
.reviewerNameContainer h6 {
    color: #656565;
    margin-top: 8px;
    font-size: 16px;
}
.reviewAvatarBox img {
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.reviewText {
    color: var(--color-black-feature);
    margin-top: 16px;
    line-height: 24px;
}
.reviewsMd {
    display: none;
    margin-top: 40px;
}

/*price*/
.pricing {
    margin-top: 60px;
}
.pricingText {
    margin-top: 24px;
    font-size: 18px;
    line-height: 32px;
    color: var(--color-black-text);
}
.pricingCardContainer {
    margin-top: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.pricingTier {
    border-radius: 16px;
    border: 1px solid rgba(36, 40, 43, 0.12);
    padding: 40px 20px 20px 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.mainTitle {
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
}
.mainText {
    font-size: 15px;
    line-height: 28px;
    color: var(--color-black-text);
}
.pricingCardText {
    margin-top: 12px;
}
.pricingCardFee {
    margin-top: 16px;
}
.pricePart {
    color: #98A6BA;
}
.adsButton {
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    color: white;
    font-weight: 600;
    padding: 12px 18px;
    background-color: var(--color-base-orange);
    border-radius: 0.5rem;
    margin-top: 24px;
    line-height: 24px;
}
.underButtonText {
    color: var(--color-black-text);
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-top: 12px;
}
.checkItems {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.checkItem {
    display: flex;
    align-items: center;
}
.checkIcon {
    flex: none;
    margin-bottom: auto;
}
.checkItemText {
    margin-left: 12px;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-black-text);
}
.pricingCard2 {
    display: flex;
    flex-direction: column;
    height: fit-content;
}
.pricingCardOutlineBtn {
    border: 1px solid rgba(36, 40, 43, 0.12);
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    padding: 12px 18px;
    width: 100%;
    max-width: 254px;
    margin-top: 32px;
    border-radius: 8px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-black);
    white-space: nowrap;
}
.priceSelectContainer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}
.priceSelect {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin: -8px -12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}
.rotateSelectIcon {
    transform: rotate(180deg);
}
.priceSelect:hover {
    background-color: var(--color-bg-gray);
}
.selectText {
    color: var(--color-black-text);
    line-height: 32px;
}
.selectIcon {
    transition: all 0.2s;
    margin-left: 10px;
    font-size: 12px;
    color: var(--color-black-text);
}
.priceSelectBody {
    display: none;
    position: absolute;
    bottom: -132px;
    left: -50px;
    background-color: white;
    box-shadow: 0 48px 29px 0 #24282B0D;
    border-radius: 16px;
    border: 1px solid #E4E7EC;
    width: 300px;
    z-index: 100;
}
.priceSelectBody .optionContainer:nth-of-type(1) {
    padding: 24px 24px 8px 24px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.priceSelectBody .optionContainer:nth-of-type(2) {
    padding: 8px 24px 24px 24px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.priceSelectBody hr {
    border-top: 1px solid #E4E7EC;
    margin: 0 24px;
}
.optionContainer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
    transition: all .3s ease;
}
.optionContainer:hover {
    background-color: var(--color-bg-gray);
}
.optionContainer:active {
    background-color: var(--color-active-gray);
}
.optionText div:nth-child(1) {
    font-size: 18px;
    color: var(--color-black);
}
.optionText div:nth-child(2) {
    color: var(--color-black-text);
    margin-top: 4px;
}
.hiddenOption {
    display: none;
}

/*FAQ*/
.faq {
    background-color: var(--color-bg-gray);
    margin-top: 60px;
    padding: 60px 0;
    overflow: hidden;
}
.featureTitle {
    margin-right: auto;
}
.faqColumnContainer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}
.faqUl {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.faqHr {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(36, 40, 43, 0.12);
}
.faqContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.faqContainer .active {
    display: block;
}
.faqText .active {
    max-height: 500px;
    transition: all 0.3s ease-in;
}
.faqQuestion {
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 16px;
}
.faqAnswer {
    color: var(--color-black-text);
    line-height: 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    white-space: pre-line;
}
.plusIcon, .minusIcon {
    flex: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    display: none;
    margin-top: 2px;
    margin-left: 24px;
}
.faqContainer .active {
    display: block;
}
.contactUsText {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-black-text);
    margin-top: 20px;
    display: none;
}
.contactUsText a {
    color: #0F66DE;
    text-decoration: underline;
}
.innerContainer {
    position: relative;
    display: flex;
    flex-direction: column;

}
.questionMark {
    position: absolute;
    left: 76px;
    top: 207px;
    font-size: 374px;
    user-select: none;
    display: none;
    color: var(--color-vector-gray);
}
.faqVectorShape {
    position: absolute;
    left: 452px;
    top: 156px;
    user-select: none;
    color: var(--color-vector-gray);
    font-size: 116px;
    display: none;
}

/*Contact*/
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #02676C 0%, #32B098 100%);
    position: relative;
}
.contactUpperContainer {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.demonstrationImgBox {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
}
.demonstrationImgBox img {
    object-fit: cover;
    border-radius: 24px;
    transform: scale(1.2);
}
.contactInfoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contactInfoContainer h5 {
    color: white;
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
}
.contactInfoContainer p {
    color: white;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-top: 20px;
}
.contactButtons {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;

}
.contactButton {
    border-radius: 8px;
    border: 1px solid rgba(36, 40, 43, 0.12);
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    padding: 12px 18px;
    width: 100%;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: white;
}
.contactButton:hover {
    background-color: #e4e8ea;
}
.contactIcon {
    width: 20px;
    height: 20px;
}
.contactText {
    font-size: 15px;
    line-height: 24px;
    margin-left: 8px;
    font-weight: 600;
    color: var(--color-black);
}
.agreement {
    font-size: 15px;
    color: white;
    line-height: 24px;
    margin-top: 32px;
    text-align: center;
}
.agreement a {
    color: white;
    text-decoration: underline;
}
.consultationSection {
    position: absolute;
    top: 40%;
}

/*footer*/
.footer {
    padding: 40px;
    display: flex;
    justify-content: center;
}
.footerText {
    color: var(--color-black-text);
    font-size: 12px;
}