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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "rubikreg";
    src: url("Rubik-Regular.ttf")
}

:root {
    --primary-color: #33CBCB;
    --primary-text: #139B9B;
    --primary-link-color: #33CBCB;
    --primary-color-dark: #000000;
    --secondary-color: #FF7648;
    --secondary-link-color: #e8420b;
    --default-background-color: #F2F2F2;
    --paper-background-color: #C2EFEF;
    --cm-paper-bg: #ffff;
    --primary-text-color: #5F6368;
    --secondary-text-color: #000000;
    --regular-font: "rubikreg";
}

body {
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: var(--default-background-color);
    font-family: 'rubikreg', 'rubiklight', Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

.main-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}

.main-navbar {
    position: fixed;
    top: 0;
    background-color: transparent;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1000;
    /*     background-color: var(--paper-background-color);
    box-shadow: 0 1px 10px var(--primary-color); */
}

.main-navbar.scrolled {
    background-color: var(--paper-background-color);
    box-shadow: 0 1px 10px var(--primary-color);
}

.nav {
    display: flex;
    flex-direction: row;
    width: 95%;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.btn-log-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.open-btn-cont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 8rem;
}

.orange-btn {
    color: white;
    font-weight: bold;
    background-color: var(--secondary-color);
    box-shadow: 1px 2px 5px #00000046;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    font-family: var(--regular-font);
    border-radius: 20px;
    min-width: 8rem;
}

.orange-btn:hover {
    background-color: var(--secondary-link-color);
    cursor: pointer;
}


.blue-btn {
    color: white;
    font-weight: bold;
    font-size: 16px;
    background-color: var(--primary-color);
    box-shadow: 1px 2px 5px #00000046;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    font-family: var(--regular-font);
    border-radius: 20px;
}

.blue-btn:hover {
    background-color: var(--primary-link-color);
    cursor: pointer;
}

.px20 {
    width: 20px;
    height: auto;
}

.logcont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.reg-font {
    font-family: var(--regular-font);
    font-weight: bolder;
}

.no-decor-blue {
    text-decoration: none;
    color: var(--primary-text);
}

.no-decor-blue:hover {
    color: var(--primary-link-color);
}

.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.logo65 {
    width: 65px;
    height: auto;
}

.img-title-cont {
    margin-top: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 250px;
}

.title-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.title {
    font-weight: bold;
    font-size: 35px;
    line-height: 1.5;
}

.title-small {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
}

.box-cont {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 95%;
    padding: 10px;
    gap: 20px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--paper-background-color);
    padding: 20px;
    border-radius: 0 20px 0 20px;
    width: 23%;
    border: 4px solid var(--primary-color);
    text-align: center;
    animation: fadeIn 2s ease-in-out;
}

.box-title {
    color: var(--primary-text);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    text-wrap: nowrap;
}

.box-body {
    color: var(--primary-text-color);
    font-weight: bold;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.mt7 {
    margin-top: 7px;
}

.mt5 {
    margin-top: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.j-a-center {
    justify-content: center;
    align-items: center;
}

.j-a-end {
    justify-content: flex-end;
    align-items: center;
}

.j-a-start {
    justify-content: flex-start;
    align-items: center;
}

.border-r-50 {
    border-radius: 50%;
}

.gap-2 {
    gap: 2rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-05 {
    gap: 0.5rem;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.width {
    width: 80%;
}

.blue {
    color: var(--primary-color);
}

.black {
    color: var(--secondary-text-color);
}

.gray {
    color: var(--primary-text-color);
}

.orange {
    color: var(--secondary-color);
}

.show-xs {
    display: none;
}



.step-cmnt-cont {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.stepper-cont {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.stepper {
    --size: 3rem;
    --spacing: 0.5rem;
    padding-left: 0;
}

.stepper-item {
    position: relative;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

.stepper-item:before {
    margin-top: 10px;
    --size: 3rem;
    content: "";
    position: relative;
    z-index: 1;
    flex: 0 0 var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.stepper-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 0;
    transform: translateX(-1.5rem);
    width: 2px;
    background-color: #e0e0e0;
}

.hide-lg {
    display: none;
}

.divider {
    width: 100%;
    border-top: 1px solid rgba(247, 245, 245, 0.26)
}

.text-align-center {
    text-align: center;
}

li {
    line-height: 1.7;
}

.tip {
    margin-top: 15px;
    border: 2px solid var(--primary-color);
    background-color: var(--paper-background-color);
    border-radius: 15px;
    padding: 15px;
}

.cmnt-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
    gap: 15px;
    margin-top: 2rem;
}

.each-cmnt {
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    background-color: var(--cm-paper-bg);
    border-radius: 20px;
    box-shadow: 0 4px 4px #0000004c;
    padding: 20px;
}

.prof {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.cmnt-title {
    color: var(--primary-color);
    font-weight: bold;
}

.cmnt-body {
    text-align: right;
    color: var(--primary-text-color);
    font-size: 14px;
}

.improvement-cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 70%;
    gap: 1rem;
    margin-top: 2rem;
}

.white-paper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    width: 50%;
    height: 200px;
    gap: 2rem;
    padding: 10px;
    animation: fadeIn 1s ease-in-out;
    transform-origin: center;
    transition: transform 0.3s ease, background-color 0.3s ease; 
}

.white-paper:hover {

    animation: enlargeAndChangeColor 0.3s forwards; /* Apply the combined animation */

}

.white-paper-img {
    width: 60px;
    height: auto;
}

.writing-icon {
    width: 50px;
    height: auto;
}

.white-paper h4 {
    margin: 0;
    padding: 0;
}

.hover-text {
    color: #5F6368;
    text-align: right;
    line-height: 25px;
    font-weight: bold;
    position: absolute;
    top: 100px;
    right: 20px;
    margin-left: 10px;
}

.cyan-paper {
    background-color: var(--paper-background-color);
    border-radius: 50px;
    border: 5px solid var(--primary-color);

    height: 250px;
    position: relative;
    padding: 10px;
}

/* Keyframes for the enlarge and color change animation */
@keyframes enlargeAndChangeColor {
    0% {
        transform: scale(1) rotate(0deg); /* Initial size */
        background-color: white; /* Initial color: Blue */
    }
    25% {
        transform: scale(1.01) rotate(1deg); /* Final size */
        background-color: var(--paper-background-color); /* Final color: Red */
    }
    75% {
        transform: scale(1) rotate(-1deg); /* Final size */
        background-color: var(--paper-background-color); /* Final color: Red */
    }
    100% {
        transform: scale(1) rotate(0deg); /* Final size */
        background-color: var(--paper-background-color); /* Final color: Red */
    }
}


.title-img-cont {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    position: absolute;
    top: 25px;
    right: 20px;
}

.title-p {
    margin: 0;
}


.fox2-cont {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.fox2 {
    width: 300px;
    height: auto;
}

.why-cont {
    width: 100%;
    background-color: var(--paper-background-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 60px;
}

.why-main {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
}

.why-title {
    color: var(--secondary-text-color);
    font-weight: bold;
    font-size: 22px;
}

.be2cont {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.why-body-cont1 {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: flex-end;
    justify-content: center;
}

.each-why-cont {
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
}

.why-icon {
    width: 40px;
    height: auto;
}

.because {
    color: var(--primary-text);
    font-size: 18px;
    font-weight: bold;
}

.detail {
    color: var(--primary-text-color);
    font-weight: bold;
    font-size: 15px;
    text-align: right;
}

.logo-text-cont {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    width: 92%;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.textlogo {
    color: var(--secondary-color);
    font-size: 30px;
    font-weight: bolder;
}

.logobig {
    width: 80px;
    height: auto;
}

.about-cont {
    display: flex;
    flex-direction: row;
    width: 95%;
    justify-content: space-between;
    align-items: center;
}

.contacts-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.contacts {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.contact-style {
    color: var(--primary-text);
    font-size: 14px;
    font-weight: bolder;
}

.contacticon {
    width: 40px;
    height: auto;
}

.about-text {
    text-align: right;
    color: var(--primary-text-color);
    font-weight: bold;
    font-size: 14px;
    line-height: 1.6;
}

footer {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: bold;
    text-wrap: nowrap;
    padding: 10px;
}

hr {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

.header-pic {
    width: 100%;
    height: auto;
}

.about-text-cont {
    display: flex;
    width: 60%;
}

.no-decor {
    text-decoration: none;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px var(--primary-text);
    }

    50% {
        box-shadow: 0 0 25px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 10px var(--primary-text);
    }
}

.blue-btn {
    background-color: var(--primary-color);
    margin-top: 10px;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.1s ease;
    animation: glow 1.5s infinite alternate;
}

.blue-btn:hover {
    background-color: var(--primary-text);
}


/* SLIDER PART-------------START */
.mb-0 {
    margin-bottom: 0;
}

.slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 2rem;
    position: relative;
}

.slides {
    display: flex;
    flex-direction: row;
    width: 100%;
    animation: slide-animation 15s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 10px;
    padding-bottom: 0;
}

.phone-mock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}



@keyframes slide-animation {
    0% {
        transform: translateX(0%);
    }

    20% {
        transform: translateX(0%);
    }

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

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

    50% {
        transform: translateX(-200%);
    }

    70% {
        transform: translateX(-200%);
    }

    75% {
        transform: translateX(-300%);
    }

    95% {
        transform: translateX(-300%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* SLIDER PART-------------END */

.show-lg {
    display: flex;
}

.full-width {
    width: 100%;
}

/*Mobile Size*/
@media only screen and (max-width: 600px) {
    .show-lg {
        display: none;
    }

    .show-xs {
        display: flex;
    }

    .hide-xs {
        display: none;
    }

    .full-width-xs {
        width: 100%;
    }

    .about-cont {
        flex-direction: column;
        gap: 20px
    }

    .title-cont {
        text-align: center;
    }

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

    .reg-font {
        font-size: 12px;
    }

    .links {
        gap: 10px;
    }

    .btn-log-cont {
        gap: 10px;
    }

    .logo65 {
        width: 40px;
        height: auto;
    }

    .orange-btn {
        gap: 5px;
        font-size: 12px;
        padding: 10px 15px;
    }

    .px20 {
        width: 15px;
        height: auto;
    }

    .title {
        font-size: 23px;
    }

    .img-title-cont {
        flex-direction: column;
        gap: 20px;
    }

    .width {
        width: 100%;
    }

    .box-cont {
        margin-top: 25px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .box {
        width: 95%;
    }

    .box-title {
        font-size: 16px;
        text-wrap: wrap;
        line-height: 1.44;
    }

    .box-body {
        font-size: 14px;
    }

    .cmnt-cont {
        width: 95%;
        align-items: center;
    }

    .cmnt-body {
        line-height: 1.33;
    }

    .step-cmnt-cont {
        flex-direction: column;
    }

    .improvement-cont {
        width: 95%;
        flex-direction: row;
        flex-wrap: wrap; /* Ensure items can wrap to the next line */
        justify-content: space-evenly; /* Distribute items evenly */
    }

    .white-paper {
        width: 60%;
        animation: glow 1.5s infinite alternate;
    }

    .cyan-paper {
        width: 70%;
        height: 210px;
    }

    .title-img-cont {
        right: 10px;
        top: 10px;
        gap: 5px;
    }

    .title-p {
        font-size: 14px;
        font-weight: bold;
    }

    .hover-text {
        font-size: 12px;
        font-weight: bold;
        top: 80px;
    }

    .stepper {
        padding: 0;
    }

    .stepper-cont {
        width: 65%;
    }

    .fox2-cont {
        width: 70%;
        justify-content: flex-end;
    }

    .fox2 {
        width: 200px;
        height: auto;
    }

    .why-title {
        font-size: 20px;
    }

    .because {
        font-size: 16px;
        text-align: right;
    }

    .detail {
        font-size: 14px;
        line-height: 1.33;
    }

    .why-cont {
        padding: 20px;
    }

    .each-why-cont {
        justify-content: flex-end;
    }

    .why-icon {
        width: 30px;
    }

    .be2cont {
        flex-direction: column;
        gap: 0;
    }

    .each-why-cont {
        width: 100%;
    }

    .why-body-cont1 {
        width: 100%;
    }

    .logobig {
        width: 60px;
    }

    .contacts-cont {
        width: 100%;
    }

    .contacts {
        width: 92%;
    }

    .logo-text-cont {
        gap: 10px;
        width: 92%;
    }

    .textlogo {
        font-size: 25px;
    }

    .about-text-cont {
        width: 92%;
    }

}


/*Tablet Size*/
@media only screen and (min-width: 600px) and (max-width: 1200px) {
    .btn-log-cont {
        gap: 15px;
    }

    .hide-xs {
        display: none;
    }

    .show-xs {
        display: flex;
    }

    .orange-btn {
        font-size: 15px;
        gap: 5px;
    }

    .step-cmnt-cont {
        gap: 20px;
    }

    .img-title-cont {
        gap: 0;
        width: 90%;
    }

    .title {
        font-size: 25px;
        text-align: right;
        line-height: 1.5;
        text-wrap: nowrap;
    }

    .img-cont {
        width: 45%;
    }

    .step-cmnt-cont {
        flex-direction: column;
    }

    .improvement-cont {
        width: 95%;
        flex-direction: row;
        flex-wrap: nowrap; /* Ensure items can wrap to the next line */
        justify-content: space-between; /* Distribute items evenly */
        gap: 1rem;
    }

    .white-paper {
        width: 25%;
    }

    .cyan-paper {
        width: 27%;
        height: 240px;
    }

    .title-img-cont {
        right: 10px;
        top: 10px;
        gap: 5px;
    }

    .title-p {
        font-size: 16px;
        font-weight: bold;
    }

    .hover-text {
        font-size: 14px;
        font-weight: bold;
        top: 70px;
    }

    .box-cont {
        margin-top: 25px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .box {
        width: 48%;
    }

    .box-title {
        font-size: 15px;
    }

    .why-cont {
        padding: 20px 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .hide-xl {
        display: none;
    }
}
