/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
    font-size:14px;
    line-height:1.5;
}

/*=========================================
CONTAINER
=========================================*/

.container{
    width:1180px;
    margin:0 auto;
}

.contact-section{
    padding:30px 0 40px;
}

/*=========================================
HEADING
=========================================*/

.section-title{
    text-align:center;
    margin-bottom:25px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.section-title p{
    font-size:13px;
    color:#666;
}

/*=========================================
SUCCESS
=========================================*/

.success-box{
    background:#eaf8ea;
    color:#2f7d32;
    border:1px solid #c6e6c8;
    padding:12px 18px;
    margin-bottom:20px;
}

/*=========================================
MAIN GRID
=========================================*/

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
}

.contact-left{
    width:66%;
}

.contact-right{
    width:34%;
}

/*=========================================
FORM
=========================================*/

form{
    width:100%;
}

.form-row{
    display:flex;
    gap:15px;
    margin-bottom:12px;
}

.form-group{
    width:50%;
}

.form-group.full{
    width:100%;
}

label{
    display:block;
    font-size:13px;
    font-weight:600;
    margin-bottom:5px;
    color:#2F7D1F;
}

label span{
    color:#d60000;
}

input,
select,
textarea{

    width:100%;

    height:38px;

    border:1px solid #9d9d9d;

    padding:0 12px;

    font-size:13px;

    outline:none;

    background:#fff;

    transition:.25s;

}

textarea{

    height:120px;

    padding:12px;

    resize:none;

}

input:focus,
select:focus,
textarea:focus{

    border-color:#0083c7;

}

/*=========================================
BUTTON
=========================================*/

.submit-btn{

    text-align:right;

    margin-top:12px;

}

.submit-btn button{

    background:#d62020;

    color:#fff;

    border:none;

    padding:8px 28px;

    font-size:13px;

    cursor:pointer;

    transition:.3s;

}

.submit-btn button:hover{

    background:#b91414;

}

/*=========================================
GOOGLE MAP
=========================================*/

.map-box{

    width:100%;

    border:1px solid #d6d6d6;

    margin-bottom:18px;

}

.map-box iframe{

    width:100%;

    height:220px;

    border:none;

    display:block;

}

/*=========================================
COMPANY INFO
=========================================*/

.company-box{

    padding-top:8px;

}

.company-logo{

    width:175px;

    margin-bottom:10px;

}

.company-address{

    color:#444;

    font-size:14px;

    line-height:24px;

    margin-bottom:18px;

}

.company-phone{

    color:#2F7D1F;

    font-size:22px;

    font-weight:600;

}

.company-phone i{

    margin-right:8px;

}
/*=========================================
BOTTOM INFORMATION SECTION
=========================================*/

.contact-bottom{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-top:45px;
    padding-top:25px;
    border-top:1px solid #e6e6e6;
}

.bottom-left{
    width:65%;
}

.bottom-right{
    width:35%;
}

/*=========================================
INFORMATION BLOCKS
=========================================*/

.info-block{
    margin-bottom:32px;
}

.info-block:last-child{
    margin-bottom:0;
}

.info-block h3{
    font-size:22px;
    font-weight:600;
    color:#2F7D1F;
    margin-bottom:12px;
}

.info-block p{
    color:#666;
    font-size:14px;
    line-height:26px;
}

.info-block a{
    color:#2F7D1F;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.info-block a:hover{
    color:#d62020;
    text-decoration:underline;
}

/*=========================================
SOCIAL ICONS
=========================================*/

.social-icons{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:18px;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid #dcdcdc;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#666;
    text-decoration:none;
    transition:.3s;
    background:#fff;
}

.social-icons a i{
    font-size:16px;
}

.social-icons a:hover{
    background:#2F7D1F;
    color:#fff;
    border-color:#2F7D1F;
    transform:translateY(-2px);
}

/*=========================================
WORKING HOURS
=========================================*/

.working-hours{
    width:100%;
}

.working-hours h3{
    font-size:22px;
    font-weight:600;
    margin-bottom:18px;
    color:#2F7D1F;
}

.working-hours table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
}

.working-hours table tr{
    border-bottom:1px solid #e5e5e5;
}

.working-hours table tr:last-child{
    border-bottom:none;
}

.working-hours table td{
    padding:12px 16px;
    font-size:14px;
    color:#555;
}

.working-hours table td:first-child{
    width:45%;
    font-weight:600;
    color:#333;
}

.working-hours table td:last-child{
    text-align:right;
}

/*=========================================
OPTIONAL CARD STYLE
=========================================*/

.company-box,
.working-hours{
    background:#fff;
}

.info-block:not(:last-child){
    padding-bottom:18px;
    border-bottom:1px solid #f0f0f0;
}

/*=========================================
LINK HOVER
=========================================*/

a{
    transition:all .3s ease;
}

/*=========================================
SMALL IMPROVEMENTS
=========================================*/

input::placeholder,
textarea::placeholder{
    color:#999;
}

select{
    cursor:pointer;
}

button{
    cursor:pointer;
}

iframe{
    display:block;
}

/*=========================================
TABLE HOVER
=========================================*/

.working-hours table tr:hover{
    background:#fafafa;
}

/*=========================================
ICON SPACING
=========================================*/

.company-phone i{
    color:#2F7D1F;
}

.info-block h3::after{
    content:"";
    display:block;
    width:45px;
    height:2px;
    background:#d62020;
    margin-top:8px;
}
/*=====================================================
PIXEL PERFECT FINISHING
======================================================*/

img{
    max-width:100%;
    display:block;
}

button,
input,
select,
textarea{
    font-family:inherit;
}

input,
select{
    border-radius:0;
}

textarea{
    border-radius:0;
}

button{
    border-radius:0;
}

.contact-section{
    background:#ffffff;
}

.contact-wrapper,
.contact-bottom{
    animation:fadeIn .5s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================================
1200px
=========================================*/

@media only screen and (max-width:1200px){

.container{

    width:95%;

}

}

/*=========================================
992px
=========================================*/

@media only screen and (max-width:992px){

.contact-wrapper{

    flex-direction:column;

}

.contact-left{

    width:100%;

}

.contact-right{

    width:100%;

}

.contact-bottom{

    flex-direction:column;

}

.bottom-left{

    width:100%;

}

.bottom-right{

    width:100%;

}

.company-box{

    margin-top:25px;

}

.map-box iframe{

    height:320px;

}

}

/*=========================================
768px
=========================================*/

@media only screen and (max-width:768px){

.section-title h2{

    font-size:28px;

}

.section-title p{

    font-size:14px;

    line-height:24px;

}

.form-row{

    flex-direction:column;

    gap:0;

}

.form-group{

    width:100%;

}

.submit-btn{

    text-align:left;

}

.submit-btn button{

    width:180px;

}

.company-logo{

    width:160px;

}

.company-phone{

    font-size:20px;

}

.info-block{

    margin-bottom:25px;

}

.info-block h3{

    font-size:20px;

}

.working-hours h3{

    font-size:20px;

}

.social-icons{

    flex-wrap:wrap;

}

}

/*=========================================
576px
=========================================*/

@media only screen and (max-width:576px){

.contact-section{

    padding:30px 0;

}

.section-title{

    margin-bottom:25px;

}

.section-title h2{

    font-size:26px;

}

.section-title p{

    font-size:13px;

}

input,
select{

    height:45px;

    font-size:14px;

}

textarea{

    height:140px;

}

.submit-btn button{

    width:100%;

    height:46px;

    font-size:15px;

}

.map-box iframe{

    height:260px;

}

.company-address{

    font-size:14px;

    line-height:24px;

}

.company-phone{

    font-size:18px;

}

.social-icons{

    justify-content:flex-start;

}

.social-icons a{

    width:40px;

    height:40px;

}

.working-hours table td{

    padding:10px;

    font-size:13px;

}

}

/*=========================================
400px
=========================================*/

@media only screen and (max-width:400px){

.section-title h2{

    font-size:22px;

}

.company-logo{

    width:140px;

}

.company-phone{

    font-size:16px;

}

.info-block h3{

    font-size:18px;

}

.working-hours h3{

    font-size:18px;

}

}

/*=========================================
UTILITY CLASSES
=========================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.d-flex{

    display:flex;

}

.justify-between{

    justify-content:space-between;

}

.align-center{

    align-items:center;

}

.w-100{

    width:100%;

}

.shadow{

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.radius{

    border-radius:4px;

}
