.get-in-touch {
    width: 100%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;

    & h1 {
        text-align: center;
        width: 50%;
        margin: auto auto 10px auto;  
        font-size: 50px;      
    }
    & p {
        text-align: center;
        width: 60%;
        margin: 20px auto 0px auto;  
        font-size: 18px; 
    }
    & .get-in-touch-bar {
        width: 100px;
    }
    @media screen and (max-width: 1000px) {
        & h1 {
            margin: 0;
            width: 85%;
        }
   
    }
}
.reach-us-section {
    width: 100%;
    margin-top: 60px;
    
    & h2 {
        width: 100%;
        text-align: center;
        font-size: 28px;
    }
    & .react-us-section-cards {
        margin-top: 40px;
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        gap: 100px;

        @media screen and (max-width: 740px) {
            grid-template-columns: auto;
            grid-template-rows: auto;

        }
    }

    & .react-us-card{
        text-align: center;
        border-radius: 21px;
        padding: 20px;
        display: flex;
        color: white;
        flex-direction: column;
        & p {
            text-align: center;
            line-height: 1.5;
            margin-top: 40px;
            font-size: 18px;
            @media screen and (max-width: 850px) { 
                margin: 15px 0;
            }
        }    
        & h2{
            margin: 0;
            text-align: center;
        }

    }

    & .react-us-section-card-1 {
        background-color: #8757D4;
        box-shadow: 0px 0px 17.2px 0px #8757D4;
    }

    & .react-us-section-card-2 {
        background-color: #FF8D8D;
        box-shadow: 0px 0px 17.2px 0px #FF8D8D;
    }
    & .react-us-section-card-3 {
        background-color: #395C61;
        box-shadow: 0px 0px 17.2px 0px #395C61;
    }
    & .react-us-section-card-4 {
        background-color: #4D9DE0;
        box-shadow: 0px 0px 17.2px 0px #4D9DE0;
    }
}
.collaboration-paternship {
    width: 100%;
    background-color: #F2F2F2;
    border-radius: 21px;
    padding: 20px;
    & h2 {
        text-align: center;
        font-size: 28px;
    }
    & p {
        text-align: center;
        font-size: 18px;
        max-width: 800px;
        margin: auto;
        line-height: 45px;
    }
}
.potential-client {
    width: 100%;

    & p {
        text-align: center;
        max-width: 750px;
        font-size: 18px;
        margin: auto;
        line-height: 30px;
    }
}
.form-container {
    width: 100%;
    background-color: #F0BA3E;
    color: white;
    border-radius: 10px;
    padding: 40px 60px 20px 60px;
    box-shadow: 0px 0px 17.2px 0px #F0BA3E;
    
    & h1 {
        text-align: center;
    }

    @media screen and (max-width: 760px) {
        padding: 40px 25px 20px 25px;
    }
}
.row {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    & textarea {
        width: 100%;
        height: 250px;
        resize: none;
    }
    & .btn {
        margin: auto;
        width: 175px;
    }
    @media screen and (max-width: 600px) {
        display:flex;
        flex-direction: column;
    }

}
.column {
    flex: 1;
    margin-right: 10px;
    width: 100%;
}
.column:last-child {
    margin-right: 0;
}
.input-container, textarea {
    height: 35px;
    background-color: white;
    display:flex;
    align-items:center;
    padding: 0px 20px; 
    border-radius: 10px;
    transition: .2s;

    & input{
        position: relative;
        width: 100%;
        border: none;
        outline:none;
      }
}
textarea {
    padding-top: 10px;
    border: none;
    outline: none;
}
.input-container:focus-within{
    border: 1px solid #FB944A
}
.paper-plane-up {
    position: absolute;
    height:40%;
    top: 15%;
    right: -20%;

    @media screen and (max-width: 1360px) {
        height: 35%;
        right: -13%;
    }

    @media screen and (max-width: 1260px) {
        height: 30%;
        right: -10%;
    }

    @media screen and (max-width: 1060px) {
     display: none;
    }
}
.paper-plane-up-mobile {
    display: none;
    @media screen and (max-width: 1060px) {
        display: block;
        height: 10%;
        position: absolute;
        right: -5%;
        top: 15%;
    }
    @media screen and (max-width: 1230px) {
        right: 0;
    }
}
.paper-plane-down {
    position: absolute;
    height: 25%;
    left: -25%;
    bottom: 90px;
    @media screen and (max-width: 1480px) {
        left: -20%;
    }
    @media screen and (max-width: 1360px) {
        height: 20%;
        left: -13%;
    }
    @media screen and (max-width: 1260px) {
        display: none;
    }
}
.paper-plane-down-mobile {
    display: none;
    @media screen and (max-width: 1260px) {
        position: absolute;
        display: block;
        left: -4%;
        bottom: 20%;
    }
    @media screen and (max-width: 600px) {
        bottom: 23%;
        height: 8%;
    }
    @media screen and (max-width: 530px) {
        bottom: 25%;
    }
}