﻿

:root {
    --color-dark: #171717;
    --color-aqua: #35B9E0;
    --text-white: #FFFFFF;
    --color-light: #858585;
    --color-dark-gray: #1F1F1F;
}

.contact-section-text{
    background:var(--color-aqua);
    text-align:center;
    color:var(--text-white);
    padding:100px 60px;  
}
.section-content h2 {
    font-size: 40px;
    font-weight: 400;
    font-family: Sofia Sans Condensed;
}
.section-content p{
    font-size:18px;
    font-weight:300;
    font-family:'Poppins';
}
.download-section h2,
.contact-section h2 {
    font-size: 40px;
    font-weight: 400;
    font-family: Sofia Sans Condensed;
    color: var(--text-white);
}
.download-section p {
    color: rgb(255 255 255 / 92%);
    max-width: 1000px;
    margin: 10px auto 30px;
    font-weight: 400;
    font-family: Poppins;
    font-size: 21px;
    line-height: 100%;
    text-align: center;
}

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-play-btn,
.apple-play-btn {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 7px 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

    .google-play-btn:active,
    .apple-play-btn:active {
        transform: scale(0.97);
    }

.play-icon,
.appstore-icon {
    width: 35px;
    height: 43px;
    margin-right: 8px;
}

.text-container-download-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.get-it-on {
    width: 65px;
    margin-bottom: 3px;
}

.download-on {
    width: 130px;
    margin-left: 5px;
}

.google-play-text,
.apple-play-text {
    height: 30px;
    margin-top: 5px;
}


.contact-form {
    background-color: var(--color-dark-gray);
    padding: 30px;
    border-radius: 10px;
    width: 45%;
    color: var(--text-white);
}

.contact-info {
    width: 55%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
    gap: 20px;
}

    .form-group label {
        width: 100%;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        background-color: #272627;
        color: var(--text-white);
        border: 1px solid #272627;
        padding: 15px;
        border-radius: 5px;
        width: 100%;
        font-size: 14px;
        margin-top: 5px;
    }

        .form-group input:focus:focus-visible,
        .form-group textarea:focus:focus-visible {
            outline-offset: -100px;
        }

    .form-group textarea {
        height: 100px;
        resize: none;
    }



.submit-btn {
    background-color: var(--color-aqua);
    color: var(--text-white);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
}

.contact-container {
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-details p {
    color: var(--text-white);
}

.form-input-handler {
    width: 100%;
}

.contact-icons {
    margin-top: 30px;
}

    .contact-icons p {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin-top: 10px;
    }

.form-submit {
    display: flex;
    justify-content: end;
}

.download-container {
    background-color: var(--color-aqua);
    padding: 70px;
}

.download-heading {
    font-size: 40px;
    font-family: Sofia Sans Condensed;
    font-weight: 300;
    text-align: center;
    color:var(--text-white)
}

.download-title {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Poppins';
    margin-bottom: 18px;
    text-align:center;
    color:var(--text-white)
}
@media screen and (max-width: 768px) {

    .contact-list {
        display: none;
    }

    .contact-form {
        width: 100%;
        margin-top: 10px;
    }

    .contact-info {
        width: 100%;
    }

    .submit-btn {
        margin-top: 15px;
    }

    .contact-icons {
        display: none;
    }
    .download-container{
        border-radius:0px;
        padding:30px;
    }
    .contact-section-text {
        padding: 30px;
    }
    .checkbox-wrapper-46 .cbx span:last-child {
        font-size: 14px;
    }
}