@font-face { 
    font-family: metropolis-regular; 
    src: url(../fonts/Metropolis-Regular.otf);
}

@font-face { 
    font-family: metropolis-light; 
    src: url(../fonts/Metropolis-Light.otf);
}

@font-face { 
    font-family: metropolis-bold; 
    src: url(../fonts/Metropolis-Bold.otf);
}

@font-face { 
    font-family: metropolis-bolder; 
    src: url(../fonts/Metropolis-Black.otf);
}

@font-face { 
    font-family: metropolis-semibold; 
    src: url(../fonts/Metropolis-SemiBold.otf);
}

:root {
    --white: #fff;
    --themeColor:#05D7A1;
    --themeLighttext:#C2C3C7;
    --themeDark: #020318;
    --seperator: #F6F6F6;
    --secondaryBackground:#F6F6FC;
    --darkTitle:#333446;
    --bgodd:#fafafb;
    --bgeven:#ededf3;
    --themegray:#9999A5;
    --lightText:#9595a1;
}

html {
    font-size: 16px;
}

body {
    font-family: metropolis-regular;
    background-color: var(--secondaryBackground);
}

.page-wrapper {
    padding: 0 40px;    
}

.page-header {
    position: relative;
}

.floating-banner {
    width: 100%;
    position: absolute;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 10px;
}

.menu-list {
    display: flex;
    align-items: center;
}

.menu-item {
    color: var(--white);
    padding: 0 10px;
    margin: 0 15px;
    font-size: .9rem;
    position: relative;
    transition: all .2s linear;
    cursor: pointer;
}

.menu-item:hover,
.menu-item.active-menu-link {
    color:#f1f1f1;
    background: url(../images/menu-vector.svg);
    background-position: top right;
    background-repeat: no-repeat;
    text-decoration: none;
    transition: all .2s linear;
}

.menu-item:active,
.menu-item:focus {
    background: none;
}

.menu-action-btn {
    color: var(--white);
    padding: 7px 16px;
    border:1px solid;
    border-color: var(--themeColor);
    border-radius: 40px;
    font-size: 1rem;
    transition: all .2s linear;
    min-width: 120px;
    text-align: center;
}

.menu-action-btn-dark {
    margin-left: 15px;
    background-color: var(--themeColor);
    color: var(--white);
}

.menu-action-btn:hover {
    text-decoration: none;
    background-color: var(--themeColor);
    color: var(--white);
    transition: all .2s linear;
}

.menu-action-btn-dark:hover {
    background-color: transparent;
}

.banner-text {
    padding-top: 200px;
    max-width: 50%;
}

.banner-title {
    font-size: 2.5rem;
}

.text-font-semi-bold {
    font-family: metropolis-semibold;
}

.text-font-light {
    font-family: metropolis-light;
}

.color-white {
    color: var(--white) !important;
}

.body-text-sm {
    font-size: 1rem;
    line-height: 2.1rem;
    font-family: metropolis-light;
}

.body-text-xs {
    font-size: .8rem;
    line-height: 1.4rem;
    font-family: metropolis-light;
}

.body-text-light {
    color:var(--themeLighttext);
}

.btn-theme {
    border-radius: 12px;
    padding: 8px 18px;
    font-size: .9rem;
}

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

.text-sm-large {
    font-size: 1.7rem;
    font-family: metropolis-semibold;
}

.full-page {
    background-color: var(--themeDark);
}

.adv-title {
    font-size: .8rem;
    margin-bottom: 0;
}

.adv-item {
    display: flex;
    align-items: center;
    background:linear-gradient(181.83deg, rgba(57, 191, 167, 0.1) 1.59%, rgba(57, 191, 167, 0) 109.83%);
    border-radius: 16px;
    padding: 10px 16px;
}

.adv-item img {
    width: 50px;
}

.interesting-section {
    text-align: center;
    padding-top:70px;
}

.small-seperator {
    width: 50px;
    height: 5px;
    border-radius: 20px;
    background-color: var(--seperator);
    opacity: .7;
    margin: 10px auto 40px auto;
}

.iteresting-icon-grid {
    padding: 70px 250px;
}

.section-title {
    font-size: 2rem;
    font-family: metropolis-semibold;
}


.color-theme {
    color: var(--themeColor) !important;
}

.btn-theme-secondary {
    background-color: transparent;
}

.btn-theme-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-theme-dark {
    color: var(--themeDark);
    border-color: var(--themeDark);
}

.robo-wrapper {
    padding: 0 200px;
}

.strategy-section {
    padding: 50px 0;
}

.grid-graph-svg {
    width: 100%;
}

.small-section-title {
    font-size: 1rem;
    font-family: metropolis-semibold;
    color: var(--lightText);
    opacity: .4;
}

.theme-small-seperator {
    height: 4px;
    border-radius: 20px;
    width: 30px;
    background-color: var(--themeColor);
    margin: 10px 0;
    display: block
}

.text-bold {
    font-family: metropolis-semibold;
}

.text-bolder {
    font-family: metropolis-bolder;
}

.step-box-title {
    font-size: 1.5rem;
    font-family: metropolis-light;
}

.step-count {
    font-size: 4rem;
    opacity: .6;
}

.step-count-wrapper {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.floating-svg {
    position: absolute;
    left: -35px;
    width: 120px;
    opacity: .3;
}

.body-text-gray {
    color: var(--darkTitle);
    opacity: .4;
}

.box-link {
    text-decoration: underline;
}

.text-semi-bold {
    font-family: metropolis-semibold;
}

.floating-form-wrapper {
    position: relative;
    background: radial-gradient(50% 50% at 50% 50%, #143642 0%, #020318 100%);
    backdrop-filter: blur(6px);
    border-radius: 24px;
}

.floating-form-floating-icon {
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
}

.form-graphic-wrapper {
    max-width: 100px;
    margin: auto
}

.form-box {
    background-color: var(--white);
    box-shadow: 4px 48px 44px rgba(0, 0, 0, 0.12);
    border-radius: 24px;
    padding: 50px 34px;
    position: absolute;
    width: 85%;
    top: -75px;
}

.theme-form-label {
    color: var(--themeDark);
    font-size: .9rem;
    font-family: metropolis-semibold;
}

.theme-form-control {
    background-color: rgba(194, 195, 199, 0.14);
    font-size: .8rem;
    border-color: transparent;
    padding: 18px;
}

textarea {
    resize: none;
}

.btn-theme-dark-primary {
    width: 100%;
    background-color: var(--themeColor);
    color: var(--white);
    padding: 15px;
}

.position-relative {
    position: relative;
}

.gradient-section-content {
    padding-top: 110px;
    padding-bottom: 110px;
}

.contact-section-content {
    padding-top: 70px;
    padding-bottom: 70px;
}

.floating-form-wrapper {
    margin-top: 80px;
    margin-bottom: 150px;
}

.page-footer {
    background-color: var(--themeDark);
    background-image: url(../images/logo-light.svg);
    /* background-size: 00px; */
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-top: 40px;
    padding-bottom: 10px;
}

.footer-link-heading {
    font-family: metropolis-semibold;
    font-size: 1.2rem;
    margin-bottom: 13px;
    color: var(--white);
}

.footer-link {
    display: block;
    font-size: .9rem;
    line-height: 2.1rem;
    font-family: metropolis-light;
    margin-bottom: 5px;
    color: var(--white);
    opacity: .6;
    transition: all .2s linear;
}

.footer-link:hover {
    color: var(--themeColor);
    text-decoration: none;
}

.footer-devider {
    padding:80px 20px 0px 20px;
}

/* pricing-page */
.page-top-gradient {
    background: radial-gradient(50% 91.45% at 50% 91.45%, #143642 0%, #020318 100%);
    backdrop-filter: blur(6px);
}

.grid-banner-text {
    padding-top: 200;
    padding-bottom: 70px;
}

.ml-minus-30 {
    margin-left: -80px;
    margin-right: 80px;
}

.mr-minus-30 {
    margin-right: -80px;
    margin-left: 80px;
}

.right-floating-grid {
    padding-top: 100px;
    padding-left: 80px;
}

.custom-padding-bottom-100 {
    padding-bottom: 100px;
}

.surprise-fee-wrapper {
    padding: 0px 0 120px 0;
    text-align: center;
}

.no-surprise-img-small {
    max-width: 80px;
    margin: auto;
}

.floating-grid-text {
    font-size: 1rem;
    font-family: metropolis-semibold;
}

.floating-grid-item {
    display: flex;
    padding: 15px 40px 10px 30px;
    justify-content: space-between;
}

.floating-grid-item:nth-child(odd){
    background-color: var(--bgodd);
}

.floating-grid-item:nth-child(even) {
    background-color: var(--bgeven);
}

.floating-grid {
    border: 1px solid #DDDDE2;
    border-radius: 10px;
    overflow: hidden;
}

.color-gray {
    color: var(--themegray);
}

.floating-grid-wrapper {
    margin-top: -70px !important;
    width: 60%;
    margin: auto;
    position: relative;
}

.floating-grid-wrapper:after {
    content: '';
    height: 50px;
    width: 84%;
    position: absolute;
    bottom: 0px;
    left: 50%;
    box-shadow: 0 20px 20px 20px #afafafa6;
    border-radius: 50%;
    z-index: -1;
    transform: translateX(-50%);
}

.floating-banner-icon {
    position: absolute;
    top:150px;
}

.mission-vission-img {
    /* max-width: 70%; */
    position: relative;
}

.mission-vission-img img {
    border-radius: 30px;
    box-shadow: 1px 1px 30px 0px #dadada;
}

.mission-vission-img:before {
    position: absolute;
    content: '';
    right: 0px;
    top: -60px;
    border-radius: 20px;
    background-color: var(--themeColor);
    opacity: .1;
    width: 90%;
    height: 100%;
    z-index: -1;
}

.vision-mission-wrapper {
    padding-top: 180px;
    padding-bottom: 80px;
}

.theme-capsule-box {
    padding: 15px 30px;
    border-radius: 30px;
    background: #294551;
    display: flex;
    align-items: center;
}

.theme-capsule-box a {
    display: flex;
    align-items: center;
}

.theme-capsule-box a span {
    color: var(--white);
    font-size: .9rem;
    margin-left: 10px;
}

.footer-devider-icon {
    height: 4px;
    background: rgb(255,255,255);
    background: radial-gradient(circle, rgba(255,255,255,.4) 0%, rgba(2,0,36,0.18110994397759106) 100%);
    opacity: .6;
    border-radius: 50%;
    width: 70%;
    margin: auto;
}

.menu-list-mobile {
    display: none;
}

.advantage-grid {
    display: flex;
}

.custom-col {
    padding: 0 20px;
    margin: 10px 0;
}

.show-only-on-mobile {
    display: none;
}

.menu-hamburger-icon {
    display: none;
}

body {
    overflow-x: hidden !important;
}

.floating-scroll-indicator {
    position: absolute;
    right: 30px;
    bottom: 40%;
}

.margin-y-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mobile-menu-item-list {
    display: none;
}

.page-top-banner {
    background: url(../assets/bg-1.svg);
    background-size: cover;
}

.director-quote-img {
    text-align: center;
}

.director-quote-img svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
}

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

.bt-fill {
    background-color: var(--themeColor);
    color: var(--white);
    border: 1px solid;
    border-color: var(--themeColor);
}

.theme-btn {
    min-width: 120px;
}
/* responsive */

@media screen and (max-width:768px) {
    .floating-scroll-indicator {
        display: none;
    }

    .menu-hamburger-icon {
        display: block;
    }

    .show-only-on-mobile {
        display: block;
    }

    .show-only-on-mobile svg {
        width: 100%;
    }

    html {
        font-size: 15px;
    }
    
    .menu-list-wrapper {
        display: none;
    }

    .page-header {
        align-items: flex-start;
    }

    .menu-list-mobile {
        max-width: 375px;
        margin-left: auto;
        position: absolute;
        z-index: 1000;
        right: 10px;
        top: 10px;
        left: 10px;
        padding: 30px 20px 10px 20px;
        background: linear-gradient(90.25deg, #FFFFFF 11.32%, #DEDEE8 95.07%);
        border: 1px solid #DDE0EB;
        box-shadow: 0px 16px 12px rgba(0, 0, 0, 0.23);
        backdrop-filter: blur(4px);
        /* Note: backdrop-filter has minimal browser support */
        transition: all .3s linear;
        border-radius: 16px;
    }

    #closeMenu {
        display: none;
    }

    .mobile-menu-item-list {
        display: flex;
        padding-right: 45px;
        flex-direction: column;
    }

    .menu-item:hover,
    .menu-item.active-menu-link {
        transition: none;
    }

    .mobile-menu-item-list a {
        display: inline-block;
        font-family: metropolis-semibold;
        color: var(--themeDark) !important;
        padding: 10px 0;
        margin: 0;
        position: relative;
    }

    /* .mobile-seperator-line {
        display: block;
        height: .7px;
        padding: 7p 0;
        background: rgb(2,0,36);
        background: linear-gradient(52deg, rgba(2,0,36,0.11388305322128855) 0%, rgba(204,204,204,0.6180847338935574) 100%);
        width: 100%;
        border-radius: 50%;
    } */

    .menu-item.active-menu-link {
        background-position: 100% 5%;
        width: fit-content;
        padding-right: 10px;
    }

    .iteresting-icon-grid {
        padding: 20px;
        margin-bottom: 0 !important;
    }

    .robo-wrapper {
        padding: 20px;
    }

    .banner-text {
        padding: 80px 20px 20px 20px !important;
        max-width: 100%;
    }

    .footer-devider-icon {
        width: 80%;
    }

    .menu-welcome-text {
        color: var(--themeLighttext);
        font-size: 2rem;
        margin-bottom:20px;
    }

    .menu-hamburger-icon {
        position: absolute;
        right: 13px;
        top: 13px;
        z-index: 10001;
    }

    a.active-btn {
        color: var(--themeColor) !important;
        border: none !important;
    }

    a.active-btn::after {
        content: none ;
    }

    .page-top-banner {
        min-height: auto;
        background:var(--themeDark);
    }

    .advantage-grid {
        flex-direction: row !important;
        overflow: auto;
        flex-wrap: nowrap;
        width: 100%;
    }

    .advantage-grid .col {
        width: 90% !important;
    }

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

    .adv-item {
        display: inline-flex;
        width: 190px;
    }

    .custom-col {
        padding-right: 0;
    }

    .adv-title {
        margin-left: 15px;
        font-size: 1rem;
    }

    .iteresting-item:first-child,
    .iteresting-item:nth-child(2),
    .iteresting-item:nth-child(4),
    .iteresting-item:nth-child(5) {
        display: none !important;
    }

    .center-iteresting-item svg{
        width: 180px;
    }

    .iteresting-icon-grid {
        padding-left: 0;
        padding-right: 0;
    }

    .page-wrapper {
        padding-left:20px;
        padding-right:20px;
    }

    .interesting-section {
        padding-top: 70px;
    }

    .robo-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .shape-section-wrapper {
        display: none;
    }

    .reverse-on-mobile {
        flex-direction: column-reverse !important;
        text-align: center;
    }

    .grid-graph-svg {
        height: 300px;
    }

    .mobile-padding-0 {
        padding: 0 !important;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .strategy-section .section-title span,
    .vision-mission-wrapper .section-title span{
        display: inline-block !important;
    }

    .work-steps-container {
        text-align: center;
    }

    .step-count-wrapper {
        justify-content: center;
    }

    .floating-svg {
        left: 50%;
        transform: translateX(-50%) !important;
        opacity: .6 !important;
    }

    .hide-on-mobile {
        display: none;
    }

    .work-step-item {
        margin-bottom: 50px;
    }

    .theme-small-seperator {
        margin: auto;
    }

    .floating-form-wrapper {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .floating-form-floating-icon {
        position: absolute;
        top: -23px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .gradient-section-content {
        text-align: center;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 80px;
    }

    .form-graphic-wrapper{
        max-width: 80px;
    }

    .gradient-section-content {
        padding-bottom: 20px;
    }

    .form-box {
        position: static !important;
        border-radius: 0 0 24px 24px !important;
        width: 100%;
    }

    .page-footer {
        padding-top: 270px;
        padding-bottom: 30px;
        margin-top: -200px;
        position: relative;
        z-index: 0;
    }

    .main-content-container {
        position: relative;
        z-index: 1;
    }

    .page-footer .logo-wrapper {
        text-align: center;
    }

    .page-footer p {
        text-align: center;
    }

    .social-icon-list {
        justify-content: center;
        margin: 20px 0;
    }

    .footer-devider {
        padding-top: 30px;
    }

    .grid-banner-text {
        padding-top: 30px;
        padding-bottom: 130px;
        text-align: center;
    }

    .floating-banner-icon {
        top: 0px;
        text-align: center;
    }

    .floating-banner-icon svg {
        width: 80%;
        height: 80%;
    }

    .mission-vission-img {
        max-width: 90%;
    }

    .mission-vission-img:before {
        right: -20px;
        top: -20px;
    }

    .contact-section-content {
        padding-left: 30px;
        padding-right: 30px !important;
    }

    .contact-section-content p,
    .contact-section-content .section-title {
        text-align: center;
    }

    /* pricing page */
    .grid-banner-text {
        padding: 30px 0;
    }

    .right-floating-grid {
        padding: 0;
    }

    .ml-minus-30,
    .mr-minus-30 {
        margin: 0 !important;
    }
    
    /* .floating-banner-icon {
        position: static;
    } */

    .floating-banner-box svg {
        width: 100%;
        padding: 10px;
        height: 100%;
    }

    .floating-banner-box-3 {
        margin: 0 !important;
    }

    .floating-grid-wrapper {
        width: 90%;
    }

    .no-floating-footer {
        margin-top: 0px !important;
        padding-top: 30px !important;
    }

    .right-floating-grid {
        display: flex;
    }

    .vision-mission-wrapper {
        padding-bottom: 30px;
        padding-top: 150px;
    }

    .mobile-overflow-x-hidden {
        overflow-x: hidden;
    }

    .director-name {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    .director-name span {
        margin-left: 5px;
        margin-top: 0 !important;
    }

    .md-d-block {
        display: block;
    }

    .mobile-floating-icon-wrapper {
        padding-bottom: 150px;
    }
}

@-webkit-keyframes rotate-right {
    from { 
        transform: translateY(20px);
      }
      to {
        transform: translateY(-20px);
      }
  }
  
@keyframes rotate-right {
    from { 
        transform: translateY(20px);
      }
      to {
        transform: translateY(-20px);
      }
}

.light-animation {
  -webkit-animation: rotate-right .9s linear 0s infinite;
  -webkit-animation-direction: alternate-reverse;
}

@media screen and (min-width:320px) and (max-width:575px) {
    html {
        font-size: 12px;
    }
}

@media screen and (max-width:767px) {
    .right-floating-grid {
        flex-wrap: wrap;
    }

    .mobile-menu-item-list a {
        font-size: 1.2rem;
    }
}

@media screen and (min-width:769px) and (max-width:1024px) {
    .floating-banner-box {
        margin: 10px !important;
    }

    .right-floating-grid {
        padding-left: 0 !important;
    }
}

.floating-banner {
    display: none;
}

@media screen and (min-width:769px) {
    .page-top-banner {
        /* background-image: url(../images/envesnt-banner.svg); */
        /* background-position: center;
        background-size: cover; */
        min-height: 100vh;
        position: relative;
        /* overflow: hidden; */
    }

    .floating-banner {
        display: block;
    }
}
