
/*CONTACT*/
.contact {
  display: flex;
  justify-content: center;
	flex-direction: column;
	align-items: center;
}

.contact-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
	gap: 50px;
}

    a {
        color: #687931;
        margin-left: 6px;
    }

    .left {
        max-width: 1200px;
		margin-top: 100px;
    }

    .left h1 {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .left p {
        font-size: 18px;
        line-height: 1.6;
        color: #1D1D1D;
    }

    .right {
        flex: 1;
        background-color: #BBD07870;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
		width: 1200px;
		margin-bottom: 100px;
    }

  

.btn-contact{
	display: flex !important;
	justify-content: center !important;
}

@media (max-width: 768px) {
	.right{
		width: 100%;
	}
	
	.contact-form{
		padding: 20px;
	}
}