.contact-section .form-inner {
    max-width: 460px;
}

.contact-section .form-inner .form-group {
    position: relative;
    padding: 0px 10px;
    margin-bottom: 15px;
}

.contact-section .form-inner .form-group textarea {
    height: 140px;
    resize: none;
    display: block;
}

.contact-section .image img {
    max-width: none;
    float: left;
    z-index: 1;
    position: relative;
}

.contact-section {
    background: var(--secondary-color);
    position: relative;
}

.contact-section .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.contact-section .left-col {
    position: relative;
}

.contact-section .shape-2 {
    position: absolute;
    top: 40px;
    left: 600px;
    right: 600px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    -webkit-animation: pulse 6s infinite linear;
    animation: pulse 6s infinite linear;
}

.contact-section .right-col {
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    padding-left: 20px;
}



/* 
Inner page
contact-us-page
*/

.contact-section.two {
    background: var(--white-color);
}

.contact-section.two .default-form input[type='text'], .contact-section.two .default-form input[type='email'], .contact-section.two .default-form input[type='tel'], .contact-section.two .default-form input[type='password'], .contact-section.two .default-form textarea {
    background: rgba(156, 156, 156, 0.10);
    color: #666;
    padding: 18px 25px;
    border: none;
}

.contact-section.two .form-inner {
    max-width: 565px;
}

.contact-section.two .form-inner .form-group {
    margin-bottom: 20px;
}

.contact-section.two .form-inner .form-group:nth-child(4) {
    margin-bottom: 40px;
}

.contact-section.two .icon-1 {
    font-size: 50px;
    padding: 25px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    margin-right: 30px;
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
}

.contact-section.two .icon-box:hover .icon-1 {
    background: var(--theme-color);
}

.contact-section.two .icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.contact-section.two .info-text h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.contact-section.two .info-text p,
.contact-section.two .info-text ul li {
    font-size: 12px;
    line-height: 22px;
}

.contact-section.two .info-text ul li:hover {
   color: var(--theme-color);
}




@media only screen and (max-width: 991px){

    .contact-section .left-col {
        padding: 40px 0;
    }
} 

@media only screen and (max-width: 767px){

    .contact-section .right-col {
        display: none;
    }
    .contact-section .form-inner {
        max-width: 100%;
    }
} 


.map-section {
    height: 550px;
  }
  .map-section iframe {
    height: 100%;
    width: 100%;
    border: none;
  }