/*import section*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/*default section*/

body {
    margin: 0;
    padding: 0;
}

/*menu section*/

.show {
    transform: translateX(0px) !important;
    transition: all 0.5s;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    gap: 30px;
    z-index: 11;
    right: 0;
    height: 100%;
    width: 200px;
    background-color: #00B6F0;
    transform: translateX(200px);
    transition: all 0.5s;
}

.menu button {
    display: inline-flex;
    height: 52px;
    font-size: 19px;
    padding: 20px 36px;
    align-items: center;
    border-radius: 85px;
    background-color: #fff;
    border: 2px solid #00B6F0;
    cursor: pointer;
}

.menu li {
    list-style-type: none;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #20262A;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.5s
}

.menu li:hover {
    transform: translateX(15px);
    transition: all 0.5s;
}

.menu ul {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

/*overlay section*/

.overlay {
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.overlayend {
    transition: all 1s;
    opacity: 0;
    z-index: -1;
}

/*navbar*/

.menu-svg {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    right: 0;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
}

.navbar img {
    height: 50px;
    width: 50px;
}

.li-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.li-div ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.li-div ul li {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    color: #20262A;
    text-decoration: none;
    list-style-type: none;
    cursor: pointer;
    font-weight: 500;
}

.navbar button {
    display: inline-flex;
    height: 52px;
    font-size: 19px;
    padding: 20px 36px;
    align-items: center;
    border-radius: 85px;
    background-color: #fff;
    border: 2px solid #00B6F0;
    cursor: pointer;
}

/*home section*/

.st-home {
    padding: 130px;
    background: linear-gradient(180deg, #fff, #00ffe146, #00ffe146, #FFF);
    position: relative;
}

.st-home-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.st-home-div h3 {
    max-width: 800px;
}

.st-home h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 72px;
    color: #112D57;
    text-align: center;
    line-height: 0;
}

.st-home h3 {
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    color: #292929;
}

.st-home-button-div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.st-home-button-div-1 {
    display: flex;
    padding: 20px 36px;
    align-items: center;
    border-radius: 85px;
    background: #00B6F0;
    color: var(--light-text, #FFF);
    font-family: Roboto;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    z-index: 1;
}

.st-home-button-div-2 {
    display: flex;
    padding: 20px 36px;
    align-items: center;
    border-radius: 85px;
    background: #FFF;
    color: #20262A;
    font-family: Roboto;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    z-index: 1;
}

.st-home-svg-1 {
    position: absolute;
    left: -10px;
    top: 30vh;
}

.st-home-svg-2 {
    position: absolute;
    right: 0;
    top: 40vh;
}

.st-home-window {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.st-home-window img {
    width: 1121px;
}

/*download section*/

.st-download {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.st-download-button {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.st-download-button div {
    display: flex;
    justify-content: center;
    gap: 15px;
    display: flex;
    padding: 20px 40px;
    align-items: center;
    border-radius: 85px;
    background: #00B6F0;
    cursor: pointer;
}

.st-download h1 {
    color: #20262A;
    text-align: center;
    font-family: Roboto;
    font-size: 56px;
    font-weight: 700;
    line-height: 0;
}

.st-download h3 {
    color: var(--second-text, #5C5C5C);
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-weight: 400;
    width: 50vw;
}

.st-download a {
    color: #FFF;
    font-family: Roboto;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

/*about section*/

.st-about {
    margin: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    position: relative;
}

.st-about-text {
    width: 40vw;
}

.st-about-text h1 {
    color: var(--first-text, #20262A);
    font-family: Roboto;
    font-size: 36px;
    font-weight: 700;
}

.st-about-text h3 {
    color: var(--second-text, #3d3d3d);
    font-family: Roboto;
    font-size: 24px;
    font-weight: 300;
}

.st-about-text a {
    color: #00B6F0;
    font-family: Roboto;
    font-size: 19px;
    font-weight: 400;
    text-decoration: none;
}

.st-about-img {
    max-width: 40vw;
}

.st-about-svg {
    position: absolute;
    right: 0;
    z-index: -1;
}

/*footer*/

footer {
    margin-top: 150px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.footer-logo svg {
    cursor: pointer;
}

footer h2 {
    color: var(--first-text, #20262A);
    font-family: Roboto;
    font-size: 23px;
    font-weight: 700;
}

/*resposive section*/

@media screen and (min-width: 1800px) {
    .st-home-svg-1 {
        position: absolute;
        left: -10px;
        top: 30vh;
        height: 1200;
        width: 646px;
    }
    
    .st-home-svg-2 {
        position: absolute;
        right: 0;
        top: 40vh;
        width: 524px;
    }

    .st-home-window {
        scale: 1.1;
    }
}

@media screen and (max-width: 1434px) {
    .st-home-svg-1 {
        position: absolute;
        left: -10px;
        top: 30vh;
        width: 246px;
    }
    
    .st-home-svg-2 {
        position: absolute;
        right: 0;
        top: 40vh;
        width: 324px;
    }
}

@media screen and (max-width: 1200px) {
    .st-about {
        flex-direction: column;
        gap: 20px;
    }

    .st-about-img img {
        width: 40vw;
    }

    .st-home-window {
        scale: 0.8;
    }

    .st-home-svg-1 {
        top: 50vh;
    }

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

@media screen and (max-width: 1000px) {
    .st-home-window {
        scale: 0.6;
        margin-top: -50px;
    }
    .st-home-svg-1 {
        width: 146px;
    }
    .st-home-svg-2 {
        width: 224px;
    }
    .st-home-div h1 {
        font-size: 50px;
    }

    .st-home-div h3 {
        font-size: 18px;
    }

    .st-home-button-div-1 {
        padding: 15px 30px;
        font-size: 15px;
    }

    .st-home-button-div-2 {
        padding: 15px 30px;
        font-size: 15px;
    }

    .st-home {
        padding-bottom: 0;
    }

    .st-download h1 {
        font-size: 35px;
    }

    .st-download h3 {
        font-size: 20px;
        width: 90vw;
    }

    .st-download a {
        padding: 15px 30px;
    }

    .st-about-img img {
        display: none;
    }

    .st-about-svg {
        opacity: 0.7;
        z-index: -1;
    }

    .st-about h3 {
        font-size: 20px;
    }

    .st-about-text {
        width: 80vw;
    }

    footer h2 {
        font-size: 21px;
    }
}

@media screen and (max-width: 700px) {
    .st-home {
        padding-right: 0;
        padding-left: 0;
    }

    .st-home-window {
        scale: 0.5;
    }
}

@media screen and (max-width: 685px) {
    .st-home-window {
        scale: 0.4;
        margin-top: -100px;
    }
    .st-home-svg-1 {
        width: 146px;
    }
    .st-home-svg-2 {
        width: 200px;
    }
}

@media screen and (max-width: 500px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        justify-content: space-between;
        margin-right: 20px;
    }

    .navbar img {
        margin-left: 20px;
    }

    .st-about-text a {
        display: inline-flex;
        height: 52px;
        font-size: 19px;
        padding: 10px 20px;
        align-items: center;
        border-radius: 85px;
        background-color: #00a2d8;
        color: #FFF;
        cursor: pointer;
    }

    .menu-svg {
        display: unset !important;
        cursor: pointer;
    }

    .st-home-window {
        scale: 0.3;
    }

    .navbar button {
        display: none;
    }

    .li-div {
        display: none;
    }

    footer h2 {
        text-align: center;
    }
    
    .st-download-button div {
        padding: 5px 20px;
    }

    .st-download-button {
        flex-direction: column;
    }
    
}

@media screen and (max-width: 340px) {
    .st-home-window {
        scale: 0.25;
    }

    .st-home-button-div-1 {
        padding: 10px 20px;
    }

    .st-home-button-div-2 {
        padding: 10px 20px;
    }

    .st-home-svg-1 {
        top: auto;
        width: 100px;
    }

    .st-home-svg-2 {
        top: auto;
        width: 100px;
    }
}