.section3{background-color: white;
	width: 100%;
	height: 100%;
}

.section3-top-blank{
	width: 100%;
	height: 70px;
}

  .contact-form {
            width: 85%;
            margin: auto;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap:20px;
            line-height:75px;
        }

        .form-group .form-control {
            flex: 1;
            min-width: calc(50% - 20px);
        }

        .form-control {
            position: relative;
            margin-bottom: 20px;
        }

        .form-control input,
        .form-control textarea {
            width: 100%;
            padding: 10px;
            border: none;
            border-bottom: 2px solid #7f7f7f;
            outline: none;
            transition: border-bottom 0.3s;
        }

        .form-control input:focus,
        .form-control textarea:focus {
            border-bottom: 2px solid #081467;
        }

        .form-control input:focus::after,
        .form-control textarea:focus::after {
            width: 100%;
        }

        .form-control input::after,
        .form-control textarea::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #007BFF;
            transition: width 0.3s;
        }

        textarea {
            resize: vertical;
            height: 100px;
        }

        button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #081467;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 50%;
            height: 50px;
            margin-top: 3%;
            margin-left: 25%;
            font-weight: 600;
            font-size: 17px;
        }

        button:hover {
            background-color: #0056b3;
        }
        .form-top-blank{
        	width: 100%;
        	height: 10px;
        }
        .form-end-blank{
        	width: 100%;
        	height: 40px;
        }
        @media (max-width: 600px) {

        }

.section3-end-blank{
    width: 100%;
    height: 50px;
}