/*********************
START: WAYS COMMUNICATION
*********************/
.WaysCommunication h2 {
	max-width: 900px;
    margin-inline: auto;
}

.WaysCommunication ul {
    display: flex;
    justify-content: space-between;
    margin-block-start: 2.5rem;
}

.WaysCommunication ul li {
    padding: 1.25rem;
    position: relative;
    margin: 12px;
    flex-basis: calc(25% - 24px);
    border-radius: var(--border-radius-20);
    background: linear-gradient(to bottom, rgba(188, 205, 102, 0.1) 0%, rgba(188, 205, 102, 0.15) 50%, rgba(188, 205, 102, 0.1) 100%);
}

.WaysCommunication ul li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: var(--border-radius-20);
}

.WaysCommunication ul li:nth-child(n)::before {
    background-image: url("../img/suitability-bg-1.png");
}

.WaysCommunication ul li:nth-child(2n)::before {
    background-image: url("../img/suitability-bg-2.png");
}

.WaysCommunication ul li:nth-child(3n)::before {
    background-image: url("../img/suitability-bg-3.png");
}

.WaysCommunication ul li:nth-child(4n)::before {
    background-image: url("../img/suitability-bg-4.png");
}

.WaysCommunication ul li .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 330px;
    height: 100%;
    padding: 2rem 2.75rem;
    border: 1px solid #DADCD1;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: var(--border-radius-20);
    box-shadow: -2px 4px 10px 10px rgba(116, 116, 116, 0.1);
}

.WaysCommunication ul li .inner h4 {
    font-weight: 700;
    line-height: var(--line-height140);

}

.WaysCommunication ul li .inner p {
    margin-block: 1.5rem;
    font-weight: 400;
    font-family: var(--font-family-Morabba);
    line-height: var(--line-height140);
}

/*********************
END: WAYS COMMUNICATION
*********************/



/*********************
START: CONTACT
*********************/
.contact--content {
    padding: 3.75rem 2.5rem;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-20);
}

.contact--content h2{
	margin-block-end: 3.75rem;
}

.contact--inner {
    display: flex;
    justify-content: space-between;
}

.contact--form {
    width: 55%;
}

.contact--form form {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1rem;
	row-gap: 1rem;
}

.contact--form form p:nth-child(1),
.contact--form form p:nth-child(2),
.contact--form form p:nth-child(3),
.contact--form form p:nth-child(4),
.contact--form form p:nth-child(5){
	width: 48.5% ;
}

.contact--form form p:nth-child(6){
	width: 100%;
}

.contact--form form input[type="email"],
.contact--form form input[type="tel"],
.contact--form form input[type="text"]{
	width: 100%;
}

.contact--form form input[type="submit"]{
	border-radius: var(--border-radius-60);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
	color: var(--text-color-2);
	background-color: var(--green-color-2);
    border: 1px solid var(--green-color-2);
	font-weight:700;
	
}

.contact--text {
    width: 40%;
    position: relative;
    padding-block-start: 250px;
}

.contact--text::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    max-width: 480px;
    opacity: 0.4;
    filter: brightness(0.5);
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/icons/vector-logo-2.svg");
}

.contact--text h3 {
    font-weight: 700;
    font-family: var(--font-family-Morabba);
    line-height: var(--line-height150);

}

.contact--text p {
    font-weight: 400;
	text-align: justify;
    margin-block: 0.75rem 1.5rem;
    line-height: var(--line-height150);
}

.contact--text ul.social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 0.75rem;
}

/*********************
END: CONTACT
*********************/
/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
    .WaysCommunication ul li h4 {
        font-size: var(--text-lg);
    }

    .contact--text h3 {
        font-size: 28px;
    }

    .contact--text p {
        font-size: var(--text-xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    .WaysCommunication ul li h4 {
        font-size: var(--text-base);
    }

    .contact--text h3 {
        font-size: var(--text-2xl);
    }


    .contact--text p {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1319px) {

    .WaysCommunication ul li .inner {
        padding: 2rem;
    }

    .contact--text h3 {
        font-size: var(--text-2xl);
    }

    .contact--text p {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1200px) {
    .WaysCommunication ul {
        flex-wrap: wrap;
    }

    .WaysCommunication ul li {
        flex-basis: calc(50% - 24px);
    }

    .WaysCommunication ul li .inner {
        min-height: 300px;
    }
	
	.contact--form form p:nth-child(1), 
	.contact--form form p:nth-child(2),
	.contact--form form p:nth-child(3), 
	.contact--form form p:nth-child(4),
	.contact--form form p:nth-child(5) {
		width: 48%;
	}
}


@media screen and (max-width: 992px) {
    .WaysCommunication ul li {
        margin: 8px;
        flex-basis: calc(50% - 16px);
    }

    .WaysCommunication ul li .inner {
        padding: 2rem 1.5rem;
    }

    .contact--text h3 {
        font-size: var(--text-xl);
    }

    .contact--text p {
        font-size: var(--text-base);
    }
	
	.contact--content{
   		 padding: 2.5rem;
	}
	
	.contact--form form p:nth-child(1), 
	.contact--form form p:nth-child(2),
	.contact--form form p:nth-child(3), 
	.contact--form form p:nth-child(4),
	.contact--form form p:nth-child(5) {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
    .contact--inner {
        flex-direction: column;
    }

    .contact--form,
    .contact--text {
        width: 100%;
    }

    .contact--form {
        margin-block-end: 2rem;
    }
}

@media screen and (max-width: 576px) {

    .WaysCommunication ul li {
        margin: 8px;
        flex-basis: calc(100% - 16px);
    }

    .contact--text {
        padding-block-start: 0;
    }

    .contact--text h3 {
        font-size: var(--text-lg);
    }

    .contact--text::before {
        content: unset;
    }
}

@media screen and (max-width: 425px) {
    .contact--text ul.social {
        justify-content: center;
    }
}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/