/*======================================
	Contact CSS
========================================*/
.contact-section {
    position: relative;
    z-index: 3;
    padding-top: 130px;
}
.contact-section .contact-item-wrapper .contact-item {
    display: flex;
    border: 1px solid var(--gray-4);
    border-radius: 10px;
    background: var(--white);
    margin-bottom: 30px;
    padding: 20px 30px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item:hover {
    box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-section .contact-item-wrapper .contact-item {
        padding: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section .contact-item-wrapper .contact-item {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .contact-section .contact-item-wrapper .contact-item {
        flex-direction: column;
    }
}
.contact-section .contact-item-wrapper .contact-item .contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.contact-section .contact-item-wrapper .contact-item .contact-content {
    margin-left: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-section .contact-item-wrapper .contact-item .contact-content {
        margin-left: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-section .contact-item-wrapper .contact-item .contact-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .contact-section .contact-item-wrapper .contact-item .contact-content {
        margin-left: 0px;
        margin-top: 20px;
    }
}
.contact-section .contact-item-wrapper .contact-item .contact-content h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-wrapper {
    padding: 50px 40px;
    background: var(--white);
    border: 1px solid var(--gray-4);
    margin-left: 0px;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.contact-form-wrapper:hover {
    box-shadow: var(--shadow-4);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .contact-form-wrapper {
        margin-left: 30px;
    }
}
.contact-form-wrapper .section-title {
    margin-bottom: 30px;
}
.contact-form-wrapper .section-title span {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}
.contact-form-wrapper .section-title h2 {
    margin-bottom: 10px;
}
.contact-form-wrapper .section-title p {
    color: var(--dark-3);
}
.contact-form-wrapper .contact-form input,
.contact-form-wrapper .contact-form textarea {
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--gray-4);
    margin-bottom: 25px;
    width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
    .contact-form-wrapper .contact-form input,
    .contact-form-wrapper .contact-form textarea {
        padding: 12px 25px;
    }
}
.contact-form-wrapper .contact-form input:focus,
.contact-form-wrapper .contact-form textarea:focus {
    border-color: var(--primary);
}
.contact-form-wrapper .contact-form textarea {
    border-radius: 18px;
}

.map-section {
    background-color: var(--white);
    margin-top: 50px;
    padding-bottom: 100px;
}
.map-section .map-container {
    background-color: var(--white);
    box-shadow: var(--shadow-4);
    padding: 20px;
    border-radius: 7px;
}

/* ===== Buttons Css ===== */
.call-action-one .call-action-content .call-action-btn .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.call-action-one .call-action-content .call-action-btn .active.primary-btn, .call-action-one .call-action-content .call-action-btn .primary-btn:hover, .call-action-one .call-action-content .call-action-btn .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.call-action-one .call-action-content .call-action-btn .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}

/*===== call action one =====*/
.call-action-one {
    background-color: var(--light-2);
    padding-top: 50px;
    padding-bottom: 100px;
    margin-bottom: 100px;
}
.call-action-one .call-action-content .call-action-text {
    margin-top: 50px;
}
.call-action-one .call-action-content .call-action-text .action-title {
    font-weight: 600;
    color: var(--black);
}
.call-action-one .call-action-content .call-action-text .text-lg {
    color: var(--dark-3);
    margin-top: 16px;
}
.call-action-one .call-action-content .call-action-btn {
    margin-top: 50px;
}

/* ===== Buttons Css ===== */
.error-text .button .primary-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-2);
}
.error-text .button .active.primary-btn, .error-text .button .primary-btn:hover, .error-text .button .primary-btn:focus {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-4);
}
.error-text .button .deactive.primary-btn {
    background: var(--gray-4);
    color: var(--dark-3);
    pointer-events: none;
}


/*===========================
  features css
===========================*/
.features-five {
    background-color: var(--light-2);
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 100px;
}
.features-five .section-title {
    padding-bottom: 10px;
}
.features-five .section-title .title {
    font-size: 44px;
    font-weight: 600;
    color: var(--black);
    line-height: 55px;
}
@media (max-width: 767px) {
    .features-five .section-title .title {
        font-size: 30px;
        line-height: 35px;
    }
}

.features-style-five {
    position: relative;
    padding: 0 20px;
    margin-top: 40px;
}
.features-style-five::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 4px;
    top: 0;
    left: 0;
    background: var(--primary);
}
.features-style-five .features-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--black);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .features-style-five .features-title {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .features-style-five .features-title {
        font-size: 20px;
    }
}
.features-style-five .text {
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-3);
    margin-top: 16px;
}
