.banner-component {
    padding: 115px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.banner-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.banner-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content {
    width: 100%;
    max-width: 735px;
    position: relative;
    z-index: 2;
}
.banner-content h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 600;
    color: #00CEB5;
    margin-bottom: 18px;
}
.banner-content h2 {
    color: #fff;
}
.banner-content p {
    margin-bottom: 20px;
}
.banner-content p,
.banner-content ul li {
    color: #fff;
}
@media (max-width: 1200px) {
    .banner-component {
        padding: 90px 0;
    }
    .banner-content h1 {
        font-size: 40px;
    }
}
@media (max-width: 992px) {
    .banner-component {
        padding: 60px 0;
    }
}
@media (max-width: 767px) {
    .banner-component {
        padding: 40px 0;
    }
}

.two-column {
    background: #EEEEEE;
}
.two-column + .two-column {
    padding-top: 0;
}
.two-column .container {
    display: flex;
    gap: 30px;
}
.two-column.right-position .container {
    flex-direction: row-reverse;
}
.two-column .image {
    width: 100%;
    max-width: 542px;
}
.two-column .image img { 
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover; 
}
.two-column .content {
    width: 100%;
    max-width: calc(100% - 575px);
}
@media (max-width: 1200px) {
    .two-column .image {
        max-width: 450px;
    }
    .two-column .content {
        max-width: calc(100% - 450px);
    }
}
@media (max-width: 992px) {
    .two-column .image {
        max-width: 350px;
    }
    .two-column .content {
        max-width: calc(100% - 350px);
    }
}
@media (max-width: 767px) {
    .two-column .container {
        flex-direction: column !important;
        gap: 25px;
    }    
    .two-column .image {
        margin: 0 auto;
    }
    .two-column .content {
        max-width: 100%;
    }
}
.business-solutions .content-wrapper {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
}
.business-solutions .btn {
    text-transform: uppercase;
}
.business-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 90px;
}
.business-list .item  {
    width: 33.33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 13px;
    margin: 13px 0;

}
.business-list .item + .item {
    border-left: 1px solid #666666;
}
.business-list .item .number {
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    color: #00CEB5;
}
.business-list .item p {
    margin: 11px 0 0 0;
}
.business-list .item img {
    width: 100%;
    max-width: 218px;
}
@media (max-width: 1200px) {
    .business-list {
        padding-top: 70px;
    }
}
@media (max-width: 767px) {
    .business-list {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .business-list .item  {
        width: 100%;
        padding: 0;
    }
    .business-list .item + .item {
        border-top: 1px solid #666666;
        border-left: none;
        padding-top: 26px;
    }
}
.flexible-component .service-component {
    padding-bottom: 60px;
}
.service-component .content-wrapper {
    width: 100%;
    max-width: 970px;
    margin: 0 auto;
    text-align: center;
}
.service-component .content-wrapper p:last-child {
    margin-bottom: 0;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    padding-top: 40px;
}
.service-list .item  {
    width: calc(33.33% - 26px);
    padding: 30px 20px;
    border: 1px solid #666666;
}
.service-list .item p {
    margin: 0;
}
.service-list .item img {
    width: 218px;
}
@media (max-width: 992px) {
    .flexible-component .service-component {
        padding-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .service-list .item{
        width: calc(50% - 26px);
    }
}
@media (max-width: 567px) {
    .service-list .item{
        width: 100%;
    }
}
.flexible-component .work-step-component {
    padding-top: 60px;
}
.work-step-component h2 {
    margin: 0;
    text-align: center;
}
.step-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 40px;
}
.step-list .item  {
    width: calc(25% - 30px);
    text-align: center;
}
.step-list .number {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 100%;
    background: #00CEB5;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.step-list p {
    margin: 0;
}
@media (max-width: 992px) {
    .step-list {
        gap: 20px;
    }
    .step-list .item {
        width: calc(25% - 20px);
    }
    .step-list .number {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .step-list .item {
        width: calc(33.33% - 20px);
    }
}
@media (max-width: 640px) {
    .step-list .item {
        width: calc(50% - 20px);
    }
}
@media (max-width: 480px) {
    .step-list .item {
        width: 100%;
    }
}
.testimonial-component {
    padding: 115px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.testimonial-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.testimonial-image picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.testimonial-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-slider {
    width: 100%;
    max-width: 82.5%;
    margin: 110px auto 0;
    padding: 0 105px;
}
.testimonial-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.testimonial-content h2 {
    color: #fff;
    margin: 0;
}
.testimonial-content p {
    font-size: 17px;
    line-height: 30px;
    color: #fff;
    margin-bottom: 20px;
}
.testimonial-content h3 {
    font-size: 17px;
    color: #fff;
    text-transform: capitalize;
    margin: 20px 0 0 0;
}
.testimonial-content .btn {
    text-transform: uppercase;
    margin-top: 80px;
}

/* Slick Arrow */
.testimonial-slider .slick-prev, 
.testimonial-slider .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 65px;
    height: 65px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background-color: transparent;
}
.testimonial-slider .slick-prev:before, 
.testimonial-slider .slick-next:before {
    display: none;
}
.testimonial-slider .slick-prev {
    left: 0;
    background-image: url('../../images/t_prev.png');
}
.testimonial-slider .slick-next {
    right: 0;
    background-image: url('../../images/t_next.png');
}
.testimonial-slider .slick-prev:hover {
    background-image: url('../../images/t_prev_h.png');
}

.testimonial-slider .slick-next:hover {
    background-image: url('../../images/t_next_h.png');
}
.testimonial-slider .slick-dots {
    bottom: 0;
}
.testimonial-slider .slick-dots li {
    padding: 0;
}
.testimonial-slider .slick-dots li:before {
    display: none;
}
.testimonial-slider .slick-dots li button {
    background: #00ceb5;
}
.testimonial-slider li.slick-active button {
    background: #2A4E69;
}
@media (max-width: 1600px) {
    .testimonial-component .container {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .testimonial-component {
        padding: 90px 0;
    }
    .testimonial-slider {
        margin: 70px auto 0;
    }
    .testimonial-content .btn {
        margin-top: 45px;
    }
}
@media (max-width: 992px) {
    .testimonial-component {
        padding: 60px 0;
    }
    .testimonial-slider {
        max-width: 100%;
        margin: 60px auto 0;
    }
}
@media (max-width: 767px) {
    .testimonial-component {
        padding: 40px 0;
    }
    .testimonial-slider {
        margin: 40px auto 0;
        padding: 0 0 50px 0;
    }
}
.faq-component h2 {
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
}
.faq-component .faq-list {
    width: 80%;
    margin: 0 auto;
}
.faq-list .faq-item + .faq-item {
    margin-top: 10px;
}
.faq-list .faq-item .heading {
    position: relative;
    background: #EEEEEE;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    padding: 17px 45px;
    cursor: pointer;
}
.faq-list .faq-item .heading:before,
.faq-list .faq-item .heading:after {
    content: '';
    display: block;
    position: absolute;
    background: #000;
    z-index: 2;
    transition: 0.5s ease all;
}
.faq-list .faq-item .heading:before {
    width: 12px;
    height: 2px;
    top: 23px;
    left: 20px;
}
.faq-list .faq-item .heading:after {
    width: 2px;
    height: 12px;
    top: 18px;
    left: 25px;
}
.faq-list .faq-item.current .heading:after {
    opacity: 0;
    visibility: hidden;
}
.faq-list .faq-item .content {
    padding: 14px 30px 30px 30px;
}
.faq-item .content p {
    margin: 0;
}
@media (max-width: 992px) {
    .faq-component h2 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .faq-component h2 {
        font-size: 25px;
    }
    .faq-component .faq-list {
        width: 100%;
    }
}

.form-component {
    background-color: #EEEEEE;
}
.form-component h2 {
    margin-bottom: 25px;
    text-align: center;
}
.contact-form-wrap {
    background: #fff;
    width: 100%;
    max-width: 555px;
    margin: 0 auto;
    box-shadow: none;
}
.form-component .ginput_container_name label {
    display: none !important;
}
.form-component .gform_footer {
    text-align: center;
    padding-bottom: 0;
}
.form-component .gform_button {
    margin: 0 !important;
}
.form-component .gform_fields li {padding: 0;}
.form-component .gform_fields li:before {display: none;}
.form-component .gform_validation_errors { display: none; }
.form-component .gform_body .validation_message { font-size: 13px; line-height: 1; font-weight: 400; padding: 6px 0 0 0 !important; }

.form-component .contact-form-wrap .gform_footer input[type="submit"] {
    width: auto;
}
.quote-component {
    background: #2A4E69;
    padding: 45px 0;
}
.quote-component h2 {
    font-size: 34px;
    line-height: 45px;
    margin: 0;
    color: #fff;
}
.quote-component p {
    font-size: 15px;
    margin: 20px 0 0 0;
    color: #fff;
}
.quote-component .btn {
    padding: 20px 35px;
}
.quote-icon img {
    width: 100%;
    max-width: 124px;
}
.quote-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}
.quote-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .quote-wrapper {
        gap: 30px;
        align-items: flex-start;
    }
    .quote-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 567px) {
    .quote-wrapper {
        gap: 30px;
        align-items: flex-start;
        flex-direction: column;
    }
    .quote-icon img {
        max-width: 70px;
    }
}
