* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 15px;
}
  
.form-group > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}
  
label {
    font-weight: bold;
    /* color: #333; */
    color: #00254F;
    margin-bottom: 0.5rem;
}
  
input, select, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
  
textarea {
    resize: none;
    height: 100px;
}



@media (min-width:992px) and (max-width:1200px) {
.contact-form {
    .form-group {
        display: block;
    }
}
}

@media (max-width:767px) {
.contact-form {
    .form-group {
        display: block;
    }
}
}
html, body {
    font-family: 'Lexend', sans-serif;
    background-color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.btn-form-submit {
    background-color: #EE4345;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0px 11.056px 18.427px 0px rgba(181, 30, 30, 0.60);
}

.btn-form-submit:hover {
    background-color: #FD1114;
}

.content-section {
    padding: 40px 20px;
    margin-top: -30px;
    background-image: url('./assets/Group 41371 (8).png');
    background-size: cover;
    background-position: bottom center;
    background-color: #002F5D;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    align-items: flex-start;
    gap: 63px;
}

.main-container {
    padding: 0px;
    z-index: 10;
    max-height: 100%;
    height: 80%;
}

.main-container img {
    width: 250px;
    margin-bottom: 64px;
}

.main-container h1 {
    max-width: 467px;
    color: #FFF;
    font-family: Lexend;
    font-size: 32px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.main-container h1 span {
    color: var(--Secondary---Yellow-O300, #FFAB00);
}

.main-text {
    max-width: 467px;
    display: flex;
    gap: 20px;
}

.main-text img {
    width: 26px;
    height: 26px;
    margin-bottom: 0px;
}

.main-text h2 {
    color: #FFF;
    font-family: Lexend;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 18px;
}

.main-text-mobile {
    display: none;
    gap: 5px;
}

.main-text-mobile p {
    color: #FFF;
    gap: 5px;
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 18px;
}

.main-container h3 {
    color: #C2C2C2;
    font-family: Lexend;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    margin-top: 52px;
    margin-bottom: 7px;
}

#svg {
    width: 18px;
    height: 28px;
}

.moving-images-container {
    width: 600px;
    overflow: hidden;
    mask: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.moving-images {
    display: flex;
    animation: 50s linear 0s infinite normal none running move-left;
}

.moving-images img {
    width: auto;
    height: auto;
    padding: 7px;
    margin: 0 20px;
}

@keyframes move-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-745.1%);
    }
}

.side-container {
    padding: 0px;
    /* max-width: 589px; */
    max-width: 547px;
    z-index: 10;
}

.cta-content{
    background-color: #F9F9F9;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 16px 0px rgba(51, 58, 81, 0.20);
}

.cta-content h2 {
    max-width: 100%;
    color: var(--Base-B300, #002F5D);
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 0px 0px 32px;
    font-family: Lexend;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.16px;
}

.cta-content label {
    color: #252525;
    font-size: 14px;
    font-weight: 300;
    line-height: 160%; 
    margin-bottom: 4px;
}

.cta-content label span {
    color: var(--Secondary---Red-R300, #EE4345);
}

.form-group {
    display: flex; 
    gap: 13px; 
    width: 100%;
}

.form-input {
    width: 100%;
}

.form-group input, .form-group textarea {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    font-family: Lexend;
    font-size: 14px;
    padding: 10px;
    margin: 0px 0;
    margin-bottom: 14px;
    border: 1px solid var(--Base-B50, #E6EAEF);
    border-radius: 4px;
}

.form-group textarea {
    overflow: hidden;
    resize: none;
    height: 103.181px;
}

input::placeholder, textarea::placeholder  {
    color: #C3C3C3;
    font-size: 14px;
    font-weight: 300;
    line-height: 160%; 
}

.form-group input:focus,
.form-group textarea:focus {
    color: #4A4A4A;
    border: 1px solid var(--Base-B300, #002F5D);
    outline: none;
    background-color: white;
}

.cta-content form button {
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 14px;
}

.custom-select select {
    display: none;
}

.select-display {
    color: #C3C3C3;
    background-color: #FFF;
    border: 1.109px solid var(--Neutral-G50, #E9E9E9);
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-display.selected {
    color: var(--Neutral-G200, #4A4A4A);
}

.select-display-error {
    border: 1.109px solid var(--Neutral-G50, #EE4345);
    background-color: #FFF;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option {
    padding: 10px;
    cursor: pointer;
}

.option-list {
    color: var(--Neutral-G200, #4A4A4A);
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
}

.option-list::-webkit-scrollbar {
    width: 8px;
}

.option-list::-webkit-scrollbar-thumb {
    background: #E6E6E6;
    border-radius: 24px;
}

.option-list::-webkit-scrollbar-track {
    background: transparent;
}

.option:hover {
    background: #E6EAEF;
    border-radius: 4px;
    overflow-y: auto;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox input {
    display: none;
}

.checkbox label {
    display: flex;
    position: relative;
    padding-left: 0px;
    cursor: pointer;
    margin-top: 5px;
}

.checkbox span {
    color: #252525;
    font-size: 14px;
    font-weight: 300;
    line-height: 160%;
    cursor: pointer; 
    margin-bottom: 4px;
}

.checkbox span a {
    color: var(--Confirm-B400, #106AA7);
    transition: color 0.3s;
}

.checkbox label::before {
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid var(--Neutral-G75, #D0D0D0);
    border-radius: 2px;
    background-color: white;
}

.checkbox label:hover:before {
    border-color: #4A4A4A;
}

.checkbox input:checked + label:before {
    background-color: #002F5D;
    border-color: #002F5D;
}

.checkbox input:checked + label::after {
    content: '✔';
    font-size: 12px;
    width: 12px;
    height: 12px;
    color: #FFF;
    margin-top: -3px;
    margin-left: -12px;
}

.checkbox input:checked {
    color: #002F5D;
}

.error-message {
    display: none;
    color: #EE4345;
    font-size: 12px;
    font-family: Lexend;
    margin-top: -14px;
    margin-bottom: 5px;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error textarea {
    border: 1px solid #F0462B;
}

.button-cta {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    background-color: #ff4f5e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 34px;
    margin-top: 24px;
    cursor: pointer;
}

.button-cta:hover {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    background-color: #FD1114;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 34px;
    cursor: pointer;
}


@media (max-width: 1585px) {
    .whatsapp-float{
        height: auto;
        width: auto;
        border-radius: 36px;
        padding: 0px 10px 0px 10px;
    }
}

@media (max-width: 1310px) { 
    .main-container img {
        width: 200px;
        margin-top: 32px;
    }

    .wrapper {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .main-text {
        max-width: 100%;
        display: none;
    }

    .main-text img {
        display: none;
    }

    .main-text-mobile {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .main-text-mobile p {
        font-size: 20px;
    }

    .main-container h1 {
        max-width: 100%;
    }

    .main-container h3 {
        display: none;
    }

    .moving-images-container {
        display: none;
    }

    .side-container {
        max-width: 100%;
    }

    .btn-form-submit {
        padding: 8px 16px;
        font-size: 14px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 36px;
        max-width: 100%;
    }

    .cta-content label, .checkbox span {
        font-size: 18px;
    }
    
    .cta-content form input, .cta-content form select {
        font-size: 18px;
    }

    .checkbox input:checked + label:after {
        margin-top: -7px;
    }
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 100%;
    }

    .main-text {
        max-width: 100%;
    }

    .main-container img {
        width: 200px;
    }

    .main-text h2 {
        display: none;
    }

    .main-text-mobile {
        display: flex;
    }

    .main-container h1 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .main-text h2 {
        font-size: 26px;
        font-weight: 500;
    }

    .main-text p {
        font-size: 20px;
        font-weight: 300;
    }

    .side-container {
        max-width: 100%;
        width: 90%;
    }

    .cta-content {
        max-width: 100%;
        margin-top: -50px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content label, .checkbox span {
        font-size: 14px;
    }
    
    .cta-content form input, .cta-content form select {
        font-size: 14px;
    }

    #svg-up, #svg-down, #svg-upsolution, #svg-downsolution {
        width: 14px;
        height: 14px;
    }

    .checkbox input:checked + label:after {
        margin-top: -4px;
    }
}

@media (max-width: 480px) {
    .btn-form-submit {
        padding: 6px 12px;
        font-size: 12px;
    }

    .main-container img {
        width: 200px;
        margin-bottom: 32px;
    }

    .main-container h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: normal;
        margin-bottom: 24px;
    }

    .main-text-mobile p {
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        line-height: 140%;
        margin-bottom: 14px;
    }

    #svg {
        width: 13px;
        height: 19px;
    }

    .cta-content {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 18px;
    }

    .cta-content label, .checkbox span {
        font-size: 12px;
    }

    .cta-content form input {
        font-size: 10px;
    }

    input::placeholder, textarea::placeholder  {
        font-size: 12px; 
    }

    .checkbox input:checked + label:after {
        margin-top: -2px;
    }

    .select-display, .option-list {
        font-size: 12px;
    }

    .form-group {
        flex-direction: column;
        /* align-items: center; */
        gap: 0px;
    }

    .whatsapp-popup {
        display: none !important;
    }

    .whatsapp-float{
        height: auto;
        width: auto;
        border-radius: 36px;
        padding: 0px;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float label {
        display: none;
    }
}

@media (max-width: 360px) {
    .content-section {
        background-image: url('./assets/mobile.png');
    }
}