﻿
.get-in-touch-section {
    width: 100%;
    height: 100%;
    padding: 30px 0;
    color: white;
    text-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .get-in-touch-section .container {
        border-radius: 20px;
        padding: 40px;
    }

    .get-in-touch-section .left-side {
        flex: 1;
        padding: 25px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

        .get-in-touch-section .left-side .ellipse-4 {
            position: absolute;
            top: 5%;
            width: 50px;
            height: 50px;
            left: 5%;
            z-index: -1;
        }

        .get-in-touch-section .left-side .ellipse-5 {
            position: absolute;
            bottom: -10%;
            width: 96px;
            height: 96px;
            right: 0%;
            z-index: -1;
        }

    .get-in-touch-section .section-frame {
        padding: 20px;
    }

    .get-in-touch-section .section-title {
        font-size: 2.5rem;
        margin-top: 20px;
    }

    .get-in-touch-section .section-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
        color: rgba(158, 158, 158, 1);
    }

    .get-in-touch-section .form-control {
        margin-bottom: 20px;
        background: rgba(24, 24, 28, 1);
        color: white;
        border: none;
        border-radius: 0;
        height: 50px;
    }

        .get-in-touch-section .form-control::placeholder {
            color: rgba(158, 158, 158, 1);
        }

        .get-in-touch-section .form-control:focus {
            box-shadow: none;
            border: 1px solid #03A3B8;
            background: rgba(24, 24, 28, 1);
            color: white;
        }

    .get-in-touch-section textarea.form-control {
        height: 150px;
        resize: none;
    }

    .get-in-touch-section .get-in-touch-btn {
        background: linear-gradient(92.51deg, #088FA0 0.48%, #1A4547 100%);
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
        font-size: 1rem;
        margin-top: 15px;
    }

@media (max-width: 576px) {

   .get-in-touch-section .container {
        padding: 10px;
    }
}