/*==================================================
CONTACT METHOD
==================================================*/

.contact-method{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1000px;
    margin:0 auto 60px;
}

.contact-method-card{
    padding:35px 25px;
    border-radius:20px;
    background:var(--white);
    text-align:center;
}

.contact-method-card i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:80px;
    height:80px;
    margin-bottom:18px;
    border-radius:50%;
    font-size:40px;
    color:var(--green);
    transition:.3s;
}

.contact-method-card a:hover i{
    transform:translateY(-3px);
}

.contact-method-card h3{
    margin-bottom:15px;
    font-size:18px;
    font-weight:500;
}

.contact-method-card p{
    margin-bottom:12px;
    font-size:15px;
    line-height:1.8;
}

.contact-method-card a{
    font-size:22px;
    font-weight:700;
}

.contact-method-card span{
    font-size:13px;
    line-height:1.7;
}


/*==================================================
CONTACT FORM
==================================================*/

.contact-form{
    max-width:900px;
    margin:0 auto;
    padding:50px;
    border-radius:20px;
    background:var(--white);
}

.contact-form h2{
    margin-bottom:15px;
    text-align:center;
    font-size:26px;
    font-weight:400;
}

.form-lead{
    margin-bottom:35px;
    text-align:center;
    font-size:15px;
    line-height:1.8;
}

.required{
    display:inline-block;
    margin-left:8px;
    padding:2px 8px;
    border-radius:20px;
    background:#333;
    color:#fff;
    font-size:11px;
    line-height:1.5;
    vertical-align:middle;
}

.form-table{
    width:100%;
    border-collapse:collapse;
}

.form-table th{
    width:30%;
    padding:18px 20px;
    border-bottom:1px solid #ddd;
    text-align:left;
    font-weight:500;
}

.form-table td{
    padding:18px 20px;
    border-bottom:1px solid #ddd;
}

.form-table input,
.form-table textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-size:16px;
    box-sizing:border-box;
}

.form-table textarea{
    min-height:200px;
    resize:vertical;
}

.form-button{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.form-button input{
    min-width:180px;
    height:52px;
    border:0;
    border-radius:40px;
    background:var(--green);
    color:var(--text);
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.form-button input:hover{
    opacity:.8;
    transform:translateY(-3px);
}


/*==================================================
TABLET
==================================================*/

@media(max-width:900px){

.contact-method{
    grid-template-columns:repeat(2,1fr);
}

.contact-form{
    padding:40px;
}

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:600px){

.contact-method{
    grid-template-columns:1fr;
    gap:15px;
    margin-bottom:35px;
}

.contact-method-card{
    padding:25px 20px;
}

.contact-method-card i{
    width:70px;
    height:70px;
    margin-bottom:12px;
    font-size:34px;
}

.contact-method-card h3{
    margin-bottom:10px;
    font-size:16px;
}

.contact-method-card p{
    margin-bottom:10px;
    font-size:14px;
}

.contact-method-card a{
    font-size:20px;
}

.contact-method-card span{
    font-size:13px;
}

.contact-form{
    padding:30px 20px;
}

.contact-form h2{
    font-size:22px;
}

.form-lead{
    margin-bottom:25px;
    font-size:14px;
}

.form-table th,
.form-table td{
    display:block;
    width:100%;
    padding:8px 0;
    border:0;
}

.form-table th{
    padding-top:18px;
    padding-bottom:6px;
}

.form-table input,
.form-table textarea{
    padding:14px;
    font-size:16px;
}

.form-table textarea{
    min-height:160px;
}

.form-button{
    flex-direction:column;
    gap:15px;
    margin-top:30px;
}

.form-button input{
    width:100%;
    height:50px;
}

}

/*==================================================
CONTACT FORM
==================================================*/

.contact-form{
    max-width:900px;
    margin:0 auto;
    padding:50px;
    border-radius:20px;
    background:var(--white);
}

.contact-form h2{
    margin-bottom:15px;
    text-align:center;
    font-size:26px;
    font-weight:400;
}

.form-lead{
    margin-bottom:35px;
    text-align:center;
    font-size:15px;
    line-height:1.8;
}

.required{
    display:inline-block;
    margin-left:8px;
    padding:2px 8px;
    border-radius:20px;
    background:#333;
    color:#fff;
    font-size:11px;
    line-height:1.5;
    vertical-align:middle;
}

.form-table{
    width:100%;
    border-collapse:collapse;
}

.form-table th{
    width:30%;
    padding:18px 20px;
    border-bottom:1px solid #ddd;
    text-align:left;
    font-weight:500;
}

.form-table td{
    padding:18px 20px;
    border-bottom:1px solid #ddd;
}

.form-table input,
.form-table textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    font-size:16px;
    box-sizing:border-box;
}

.form-table textarea{
    min-height:200px;
    resize:vertical;
}

.form-button{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.form-button input{
    min-width:180px;
    height:52px;
    border:0;
    border-radius:40px;
    background:var(--green);
    color:var(--text);
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.form-button input:hover{
    opacity:.8;
    transform:translateY(-3px);
}

/*==================================================
TABLET
==================================================*/

@media(max-width:900px){

.contact-form{
    padding:40px;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:600px){

.contact-form{
    padding:30px 20px;
}

.contact-form h2{
    font-size:22px;
}

.form-lead{
    margin-bottom:25px;
    font-size:14px;
}

.form-table th,
.form-table td{
    display:block;
    width:100%;
    padding:8px 0;
    border:0;
}

.form-table th{
    padding-top:18px;
    padding-bottom:6px;
}

.form-table input,
.form-table textarea{
    padding:14px;
    font-size:16px;
}

.form-table textarea{
    min-height:160px;
}

.form-button{
    flex-direction:column;
    gap:15px;
    margin-top:30px;
}

.form-button input{
    width:100%;
    height:50px;
}

}