:root {
    --text-dark: #000;
    --text-light: #fff;
    --text-grey: #adbdcc;
    --body-font: "Roboto", sans-serif;
    --heading-font: "Anek Telugu", sans-serif;
    --h1-size: 94px;
    --h1-height: 108px;
    --h2-size: 50px;
    --h2-height: 75px;
    --h3-size: 40px;
    --h4-size: 32px;
    --h5-size: 28px;
    --h6-size: 22px;
    --subtitle-size: 17px;
    --subtitle-height: 26px;
    --p-size: 18px;
    --p-height: 26px;
    --secondary-text-size: 14px;
    --secondary-text-height: 18px;
    --button-size: 16px;

    /* width in % */
    --width-te: 10%;
    --width-tw: 20%;
    --width-th: 30%;
    --width-ft: 40%;
    --width-fv: 50%;
    --width-sx: 60%;
    --width-sv: 70%;
    --width-et: 80%;
    --width-ne: 90%;
    --width-hd: 100%;

    /* width in rem */
    --width-one: 1rem;
    --width-two: 2rem;
    --width-three: 3rem;
    --width-four: 4rem;
    --width-five: 5rem;
    --width-six: 6rem;
    --width-seven: 7rem;
    --width-eight: 8rem;
    --width-nine: 9rem;
    --width-ten: 10rem;

    /* SPACING */
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;

    --purple-1: #6962f7;
    --purple-2: #7000ff;
    --blue-1: #0000FF;
    --blue-2: #00d4ff;
    --mediumBlue-1: #0000CD;
    --royalBlue: #4169E1;
    --primary-accent: #0a2540;
    --btn-hover-color: #6d7a88;
    --bg-white: #fff;
    --bg-light: #f7f9fc;
}

body{
    font-family: var(--body-font);
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--bg-light);
}
h1{
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h1-size);
    margin: 0;
    width: 100%;
    letter-spacing: -1px;
}
h2{
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: var(--h2-size);
    margin: 0;
    width: 100%;
}
h3{
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h3-size);
    margin: 0;
    width: 100%;
}
h4{
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: var(--h4-size);
    margin: 0;
    width: 100%;
}
h5{
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: var(--h5-size);
    margin: 0;
    width: 100%;
}
h6{
    font-family: var(--heading-font);
    font-weight: 550;
    font-size: var(--h6-size);
    margin: 0;
    width: 100%;
}
p{
    font-size: var(--p-size);
    line-height: var(--p-height);
    font-weight: 400;
    margin: var(--spacing-md) 0;
}
/* - - - - - - - - - - - - - */
.grouping_all{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    width: 100%;
    height: 80vh;
}
.grouping{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background: linear-gradient(-25deg, #ee7752, #e73c7e, #23a6d5, #23d5ab,  #4cd523,  #e2f109);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    width: 100%;
    height: 45vh;
    transform: skewY(-10deg);
}
@keyframes gradient {
    0% {
        background-position: 0% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 100%;
    }
}

.grouping_section{
    background: linear-gradient(-25deg, #ee7752, #e73c7e, #23a6d5, #23d5ab,  #4cd523,  #e2f109);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    width: 100%;
    height: 10vh;
    transform: skewY(10deg);
}
@keyframes gradient {
    0% {
        background-position: 0% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 100%;
    }
}


/* - - - - - - - - - - - - - */
/* Navigation bar styles */
nav{
    width: var(--width-sx);
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-self: center;
}
.logo{
    align-self: center;
}
.logo img{
    width: var(--spacing-xl);
}
.nav-links{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 60%;
    align-self: center;
}
.nav-links ul{
    width: 100%;
    display: flex;
    gap: 1.2rem;
    justify-content: left;
    align-items: center;
    cursor: pointer;
}
.nav-links ul li{
    list-style: none;
    cursor: pointer;
}
.nav-links ul li a{
    color: white;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}
.nav-links ul li a:hover{
    text-decoration: underline;
    cursor: pointer;
}
.sign-button{
    align-self: center;
    text-align: right;
    border-radius: 20px;
}
.grouping_all .grouping .grouping_section .sign-button button{
    width: var(--width-five);
    height: 32px;
    border-radius: 20px;
    border: none;
    color: var(--bg-white);
    font-weight: bold;
    background-color: rgba(216, 14, 14, 0.199);
    cursor: pointer;
}
.sign-button button:hover{
    cursor: pointer;
}
/* Navigation bar styles */

main{
    transform: skewY(10deg);
    box-sizing: border-box;
    width: var(--width-sx);
    height: 90vh;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-self: center;
    margin-top: -60px;
}
main .section1{
    width: var(--width-fv);
    align-content: center;
}
.section1 h1{
    font-size: 60px;
    line-height: 65px;
}
.section1 p{
    font-size: 12px;
    font-weight: bold;
    width: var(--width-et);
    line-height: 20px;
}
.section1 .select{
    display: flex;
}
.section1 .select .start,
.section1 .select .sales:hover{
    cursor: pointer;
}
.section1 .select .start{
    color: var(--bg-light);
    font-weight: bold;
    font-size: 13px;
    border-radius: 20px;
    border: none;
    width: var(--width-seven);
    background-color: var(--primary-accent);
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
}
.section1 .select .sales{
    border: none;
    color: var(--purple-2);
    font-weight: bold;
    font-size: 13px;
    width: var(--width-eight);
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    background-color: rgba(255, 255, 255, 0);
}
main .section2{
    width: var(--width-fv);
    justify-items: right;
    align-items: center;
    align-content: center;
}
.section2 .cover{
    margin: 8px;
    background-image: url(./assets/hero-phone.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 25px;
    width: 60%;
    height: 27rem;
}
.logos{
    /* margin-top: -150px; */
    width: var(--width-fv);
    height: 18vh;
    justify-content: center;
    justify-self: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 10px;
    gap: 20px;
}
.logos .one{
    width: 100%;
    background-image: url(./assets/instacart.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .two{
    width: 100%;
    background-image: url(./assets/salesforce.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .three{
    width: 100%;
    background-image: url(./assets/amazon.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .four{
    width: 100%;
    background-image: url(./assets/slack.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .five{
    width: 100%;
    background-image: url(./assets/shopify.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .six{
    width: 100%;
    background-image: url(./assets/google.png);
    background-repeat: no-repeat;
    background-size: contain;
}.logos .seven{
    width: 100%;
    background-image: url(./assets/lyft.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.logos .eight{
    width: 100%;
    background-image: url(./assets/zoom.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.session{
    box-sizing: border-box;
    width: var(--width-sx);
    height: 40vh;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0;
    margin: 40px 0 0 0;
}
.session h6{
    font-size: 12px;
}
.session h2{
    width: var(--width-fv);
    font-size: 26px;
    font-weight: bold;
    line-height: 35px;
}
.session .texts{
    color: black;
    font-weight: bold;
    border: none;
    display: flex;
    gap: 18px;
}
.session .texts span{
    color: var(--royalBlue);
}
.session h6{
    color: var(--royalBlue);
}
.session .texts .paragraph1{
    width: 50%;
}
.session .texts .paragraph1{
    font-size: 13px;
}
.session .texts .paragraph2{
    width: 50%;
}
.session .texts .paragraph2{
    font-size: 13.3px;
}
.session .start-now .start{
    color: var(--bg-light);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-seven);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    background-color: var(--royalBlue);
    cursor: pointer;
}
.columns{
    width: var(--width-sx);
    height: 115vh;
    display: flex;
    justify-self: center;
    align-self: center;
    margin: 30px 0 0 0;
}
.columns .column1{
    width: var(--width-ft);
}
.columns .column1 .bank-card{
    width: 100%;
    height: 30vh;
}
.columns .column1 .bank-card img{
    width: 88%;
    height: 25vh;
    margin-top: 18px;
}
.columns .column1 .mobile-pay{
    width: 100%;
    height: 85vh;
}
.columns .column1 .mobile-pay img{
    width: 90%;
    height: 80vh;
    margin-top: 18px;
}
.columns .column2{
    width: 60%;
    height: 115vh;
}
.columns .column2 .invoice{
    width: 100%;
    height: 54vh;
    padding: 0;
}
.columns .column2 .invoice img{
    width: 98%;
    height: 50vh;
    margin-top: 14px;
    box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.452);
    border-radius: 20px;
}
.columns .column2 .chart{
    width: 100%;
    height: 60vh;
}
.columns .column2 .chart img{
    width: 98%;
    height: 50vh;
    margin-top: 40px;
    box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.479);
    border-radius: 20px;
}
.design{
    background-color: var(--primary-accent);
    transform: skewY(-8deg);
    width: 100%;
    height: 130vh;
    align-content: center;
}
.design1{
    transform: skewY(8deg);
    width: var(--width-sx);
    height: 77vh;
    justify-self: center;
    align-self: center;
    margin: 30px 0 0 0;
    display: flex;
    gap: 10px;
}
.design .APIs{
    width: 50%;
    line-height: 40px;
}
.design .APIs-best h6{
    font-size: 12px;
    color: var(--blue-2);
}
.design .APIs-best h2{
    font-size: 30px;
    font-weight: bold;
    color: var(--bg-light);
}
.design .APIs-best .texts h5{
    color: var(--bg-light);
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
}
.design .APIs-best .start-now .start{
    color: var(--primary-accent);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-seven);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    background-color: var(--blue-2);
    cursor: pointer;
    margin-top: 20px;
}
.design .APIs-best .start-now .start img{
   width: 20px;
   height: 20px;
}
.design .APIs .tools{
    margin-top: 20px;
    width: 100%;
    height: 35vh;
    display: flex;
}
.design .APIs .tools .tool1{
    width: 50%;
    height: 35vh;
    line-height: 25px;
}
.design .APIs .tools .tool1 img{
    width: 42px;
    height: 40px;
}
.design .APIs .tools .tool1 h5{
    color: white;
    font-size: 20px;
}
.design .APIs .tools .tool1 p{
    color: rgb(187, 187, 187);
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
}
.design .APIs .tools .tool1 .see-libraries{
    color: var(--blue-2);
    font-weight: bold;
    font-size: 13px;
    border: none;
    width: var(--width-ten);
    height: 4vh;
    display: flex;
    justify-content: left;
    justify-items: left;
    align-items: center;
    background-color: #00000007;
    cursor: pointer;
    margin-top: 20px;
}
.design .APIs .tools .tool1 .see-libraries img{
    width: 25px;
    height: 40px;
}

.design .APIs .tools .tool2{
    width: 50%;
    height: 35vh;
    line-height: 25px;
}
.design .APIs .tools .tool2 img{
    width: 42px;
    height: 40px;
}
.design .APIs .tools .tool2 h5{
    color: white;
    font-size: 20px;
}
.design .APIs .tools .tool2 p{
    color: rgb(187, 187, 187);
    font-size: 12px;
    font-weight: bold;
    line-height: 22px;
}
.design .APIs .tools .tool2 .see-libraries{
    color: var(--blue-2);
    font-weight: bold;
    font-size: 13px;
    border: none;
    width: var(--width-ten);
    height: 4vh;
    display: flex;
    justify-content: left;
    justify-items: left;
    align-items: center;
    background-color: #00000007;
    cursor: pointer;
    margin-top: 20px;
}
.design .APIs .tools .tool2 .see-libraries img{
    width: 25px;
    height: 40px;
}
.design .APIs .tools .tool2{
    width: 50%;
    height: 35vh;
}
.design .codes{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.design .codes .code1{
    border-radius: 10px;
    background: url(./assets/api-code.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 85%;
    height: 35vh;
}
.design .codes .code2{
    border-radius: 10px;
    background: url(./assets/terminal-code.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 85%;
    height: 35vh;
}
.swipe{
    margin-top: -100px;
    background-color: var(--bg-light);
    transform: skewY(-8deg);
    width: 100%;
    height: 85vh;
    justify-items: center;
    align-content: center;
}
.swipe .tech{
    transform: skewY(8deg);
    width: var(--width-sx);
    height: 40vh;
}
.swipe .tech h6{
    margin-bottom: 30px;
    font-size: 15px;
    color: var(--blue-1);
}
.swipe .tech h3{
    margin-top: 15px;
    font-size: 30px;
    font-weight: bold;
}
.swipe .tech .finance{
    margin-top: 35px;
    display: flex;
    gap: 20px;
    width: 100%;
    height: 25vh;
}
.swipe .tech .finance article{
    width: 25%;
    height:25vh;
}
.swipe .tech .finance article h5{
    font-size: 16px;
}
.swipe .tech .finance article p{
    font-size: 10.2px;
    line-height: 14px;
}
.swipe .tech .finance article .logo img{
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: 6vh;
}
.swipe .tech .finance article .logo1 img{
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: 6vh;
}
.swipe .tech .finance article .logo2 img{
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: 6vh;
}
.swipe .tech .finance article .logo3 img{
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: 6vh;
}
.global{
    margin-top: -120px;
    background-color: var(--primary-accent);
    width: 100%;
    height: 120vh;
    justify-items: right;
    align-content: center;
}
.global .graphic-png{
    width: 100%;
    height: 75vh;
    justify-items: center;
}
.global .graphic-png img{
    opacity: 0.5; /* 50% transparent */
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 75vh;   
    margin-left: 38em;
}
.scale{
    justify-items: left;
    align-content: center;
    position: relative;
    bottom: 540px;
    width:  60%;
    height: 90vh;
    z-index: 1;
}
.scale h6{
    margin-top: -10em;
    width: 8em;
    font-size: 15px;
    color: var(--royalBlue);
    margin-bottom: 16px;
}
.scale h3{
    color: white;
    width: 10em;
    font-size: 30px;
    font-weight: bold;
}
.scale p{
    color: white;
    font-size: 12px;
    width: 31em;
    line-height: 20px;
}
.scale span{
    color: var(--royalBlue);
}
.scale section{
    margin-bottom: -250px;
    width: 100%;
    height: 80px;
    display: flex;
}
.scale .article{
    width: 180px;
    height: 80px;
}
section .article .twenty-five{
    display: flex;
    gap: 2px;
    width: 180px;
    height: 30px;
    margin-bottom: 15px;
}
section .article .twenty-five div{
    background-color: var(--royalBlue);
    width: 2px;
    height: 30px;
}
section .article .twenty-five h3{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
}
section .article{
    color: var(--bg-light);
    font-size: 11px;
}
.virtual{
    color: var(--purple-2);
    width: 100%;
    height: 60vh;
    justify-self: center;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-self: center;
    align-content: center;
    
}
.virtual .virtuals-sessions{
    display: flex;
    width: 60%;
    height: 60vh;
    align-items: center;
    align-self: center;
    gap: 40px;
}
.virtuals{
    width: 50%;
    height: 40vh;
    font-family: var(--heading-font);
}
.virtual h2{
    margin-top: 20px;
    text-align: left;
    width: 8em;
    font-size: 18px;
    color: var(--purple-2);
    margin-bottom: 10px;
}
.virtual h3{
    text-align: left;
    color: black;
    width: 14em;
    font-size: 24px;
    font-weight: bold;
}
.virtual p{
    text-align: left;
    color: black;
    font-size: 15px;
    width: 27em;
    line-height: 20px;
}
.virtual .virtuals-sessions .virtuals .start{
    background-color: var(--purple-2);
    color: var(--bg-light);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-seven);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}
.virtual .virtuals-sessions .virtuals .start img{
   width: 20px;
   height: 20px;
}
.sessions{
    border-radius: 20px;
    border: solid rgba(185, 185, 185, 0.507);
    background: linear-gradient(-8deg, #faf8f8, #f1f1f1 55%, #020074 55%, rgb(29, 0, 109), #0321a7 90%);
    width: 40%;
    height: 40vh;
}
.sessions .session1{
    width: 100%;
    height: 15vh;
    text-align: center;
    align-content: center;
}
.sessions .session1 img{
    width: 50%;
    height: 5vh;
}
.sessions .session2{
    width: 100%;
    height: 11vh;
}
.sessions .session2 .photo1{
    background-image: url(./assets/avatar1.png);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 45px;
    margin-left: 40px;
    width: 55px;
    height: 55px;
}
.sessions .session2 .photo2{
    background-image: url(./assets/avatar2.png);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 45px;
    margin-top: -55px;
    margin-left: 80px;
    width: 55px;
    height: 55px;
}
.sessions .session3{
    width: 90%;
    height: 10vh;
    line-height: 10px;
    margin-left: 20px;
}
.sessions .session3 h3{
    font-size: 15px;
}
.sessions .session3 p{
    width: 60%;
    font-size: 13px;
    font-weight: bold;
    line-height: 15px;
}
.expose-swipe{
    background-color: white;
    width: 100%;
    height: 50vh;
    justify-items: center;
    align-content: center;
}
.expose-swipe section{
    justify-content: center;
    justify-items: center;
    justify-items: center;
    align-items: center;
    align-self: center;
    width: 60%;
    height: 50vh;
    display: flex;
    gap: 20px;
}
.expose-swipe section .left-swipe{
    width: 50%;
    height: 30vh;
}
.expose-swipe section .left-swipe h4{
    font-size: 24px;
    color: black;
    font-weight: bold;
}
.expose-swipe section span{
    color: var(--royalBlue);
}
.expose-swipe section .left-swipe p{
    font-size: 14px;
}
.expose-swipe section .start{
    background-color: var(--purple-2);
    color: var(--bg-light);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-seven);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    margin-top: 20px;
}
.expose-swipe section .start img{
   width: 20px;
   height: 20px;
}
.expose-swipe section .right-swipe{
    width: 50%;
    height: 30vh;
    display: flex;
    gap: 15px;
}
.expose-swipe section .right-swipe .pay-swipe{
    width: 50%;
}
.expose-swipe section .right-swipe .pay-swipe .check-swipe{
    background-image: url(./assets/shield-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 44px;
}
.expose-swipe section .right-swipe .pay-swipe h4{
    margin-top: 5px;
    font-size: 16px;
    width: 85%;
    line-height: 20px;
    color: black;
}
.expose-swipe section .right-swipe .pay-swipe p{
    font-size: 11px;
    width: 100%;
    margin-top: 5px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.685);
}
.expose-swipe section .right-swipe .pay-swipe .pricing-details{
    background-color: rgba(0, 0, 0, 0);
    color: var(--purple-2);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-eight);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    margin-top: -10px;
}
.expose-swipe section .right-swipe .pay-swipe .pricing-details img{
   width: 20px;
   height: 20px;
}
.expose-swipe section .right-swipe .api-swipe{
    width: 50%;
}
.expose-swipe section .right-swipe .api-swipe .chart-swipe{
    background-image: url(./assets/bars-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 44px;
}
.expose-swipe section .right-swipe .api-swipe h4{
    margin-top: 5px;
    font-size: 16px;
    width: 85%;
    line-height: 20px;
    color: black;
}
.expose-swipe section .right-swipe .api-swipe p{
    font-size: 11px;
    width: 100%;
    margin-top: 5px;
    line-height: 16px;
    color: rgba(0, 0, 0, 0.685);
}
.expose-swipe section .right-swipe .api-swipe .api-details{
    background-color: rgba(0, 0, 0, 0);
    color: var(--purple-2);
    font-weight: bold;
    font-size: 13px;
    border: none;
    border-radius: 20px;
    width: var(--width-eight);
    height: 4vh;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-items: center;
    cursor: pointer;
    margin-top: -10px;
}
.expose-swipe section .right-swipe .api-swipe .api-details img{
   width: 20px;
   height: 20px;
}
.waiting{
    background-color: white;
    width: 100%;
    height: 50vh;
    justify-items: center;
    align-content: center;
}
.waiting .main{
    width: 60%;
    height: 50vh;
    display: flex;
    gap: 40px;
}
.waiting .main .waiting_one{
    justify-content: space-between;
    width: 50%;
    display: flex;
}
.waiting .main .waiting_one .swipes{
    width: 50%;
    height: 25vh;
    align-content: center;
}
.waiting .main .waiting_one .swipes .swipes_one{
    width: 50%;
    height: 40px;
    background-image: url(./assets/logo-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.waiting .main .waiting_one .swipes .swipes_two{
    background-color: rgba(0, 0, 0, 0);
    color: black;
    font-size: 13px;
    height: 6vh;
    display: flex;
    gap: 5px;
    justify-items: center;
    align-items: center;
    cursor: pointer;
}
.waiting .main .waiting_one .swipes .swipes_two img{
   width: 20px;
   height: 20px;
}
.waiting .main .waiting_one .swipes .swipes_three{
    background-color: rgba(0, 0, 0, 0);
    color: black;
    font-size: 13px;
    height: 4vh;
    display: flex;
    gap: 5px;
    justify-items: center;
    align-items: center;
    cursor: pointer;
}
.waiting .main .waiting_one .swipes .swipes_three img{
   width: 20px;
   height: 20px;
}
.waiting .main .waiting_one .products{
    width: 40%;
}
.waiting .main .waiting_one .products h3{
    font-size: 20px;
}
.waiting .main .waiting_one .products ul{
    margin: 0;
    padding: 0;
    align-content: center;
    list-style: none;
    height: 40vh;
}
.waiting .main .waiting_one .products ul li{
    color: black;
    height: 5vh;
    list-style: none;
    width: 100%;
}
.waiting .main .waiting_two{
    width: 50%;
    display: flex;
}
.waiting .main .waiting_two .use_cases{
    width: 50%;
}
.waiting .main .waiting_two .use_cases h3{
    font-size: 20px;
}
.waiting .main .waiting_two .use_cases ul{
    margin: 0;
    padding: 0;
    align-content: center;
    list-style: none;
    height: 40vh;
}
.waiting .main .waiting_two .use_cases ul li{
    color: black;
    height: 5vh;
    list-style: none;
    width: 100%;
}
.waiting .main .waiting_two .resources{
    width: 50%;
}
.waiting .main .waiting_two .resources h3{
    font-size: 20px;
}
.waiting .main .waiting_two .resources ul{
    margin: 0;
    padding: 0;
    align-content: center;
    list-style: none;
    height: 40vh;
}
.waiting .main .waiting_two .resources ul li{
    color: black;
    height: 5vh;
    list-style: none;
    width: 100%;
}
.waiting .main .waiting_two .use_cases h3{
    font-size: 20px;
}
.waiting .main .waiting_two .use_cases ul{
    margin: 0;
    padding: 0;        
    align-content: center;
    list-style: none;
    height: 40vh;
}
.waiting .main .waiting_two ul li{
    color: black;
    height: 5vh;
    list-style: none;
    width: 100%;
}
