/* Custom CSS for Dormatic Child Theme */

:root {
    --main-bg-color: #f36827;
}


.gdc-step-issue .gdc-step-buttons .gdc-next-btn, .gdc-next-btn{
  display: block;
}
.feature-block-one .icon svg {
    fill: white;
    width: 60px;
    height: 60px;
}

/* подсветка поля */
#popupForm .popup-error {
    border-color: #e53935 !important;
    outline: none;
}
.wpsr-review-template .wpsr-reviewer-name-url .wpsr-reviewer-name {
    font-size: 22px !important;
}

.wpsr-review-template .wpsr-review-content p {
    font-size: 16px !important;
}
.mobile-menu .contact-info span {
    position: relative;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.main-footer .widget-title>span {
    display: block;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    font-weight: 500;
}

/* текст ошибки под полем */
#popupForm .popup-error-text {
    color: #e53935;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
}

#popupForm .popup-field {
    margin-bottom: 14px;
    /* чтобы был отступ между полями */
}

#popupForm .popup-error {
    border-color: #e53935 !important;
    outline: none;
}

#popupForm .popup-error-text {
    color: #e53935;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
}

.feature-block-one .inner-box .icon-box .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta-section p {
    display: inline-block;
    font-size: 22px;
    line-height: 32px;
    color: white;
}

.box-typograthi ol {
    list-style: none;
    counter-reset: item;
    padding-left: 0;
    margin: 24px 0;
}

.box-typograthi ol li {
    counter-increment: item;
    position: relative;
    padding-left: 52px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #22242a;
}

.box-typograthi ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f6a90c;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.box-typograthi ul {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.box-typograthi ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #22242a;
}

.box-typograthi ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: #22242a;
    color: #f6a90c;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-section img {
    width: 100%;
}

.main-menu {
    margin-right: 14vw;
}

.service-block-one .inner-box .lower-content .text .lower-content-title {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

.auto-container.auto-container-fix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.auto-container.auto-container-fix .slider-form {
    position: relative;
    z-index: 9;
}

.work-block-one .inner-box .work-block-one-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 13px;
}

/* === WRAPPER === */
.slider-form {
    max-width: 480px;
    margin: 0 auto;
    padding: 50px;
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-form .dormatic-form {
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* === LABELS === */
.slider-form .dormatic-form label {
    font-size: 15px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 6px;
    display: block;
}

/* === INPUTS & TEXTAREA === */
.slider-form .dormatic-form input.wpcf7-form-control,
.slider-form .dormatic-form textarea.wpcf7-form-control {
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #dcdcdc;
    padding: 13px 15px;
    font-size: 16px;
    border-radius: 5px;
    transition: 0.25s;
    font-family: inherit;
    color: #222;
}

.slider-form .dormatic-form textarea.wpcf7-form-control {
    min-height: 110px;
    resize: vertical;
}

/* === FOCUS === */
.slider-form .dormatic-form input.wpcf7-form-control:focus,
.slider-form .dormatic-form textarea.wpcf7-form-control:focus {
    background: #ffffff;
    border-color: var(--main-bg-color);
    box-shadow: 0 0 0 3px rgba(245, 102, 0, 0.20);
    outline: none;
}

/* === SPACING === */
.slider-form .dormatic-form p {
    margin-bottom: 18px;
}

.slider-form .dormatic-form .desc {
    margin-bottom: 8px;
}

/* === SUBMIT BUTTON === */
.slider-form .submit-wrap input[type="submit"] {
    width: 100%;
    background: #f56600;
    color: #fff;
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 15px rgba(245, 102, 0, 0.35);
}

.slider-form .submit-wrap input[type="submit"]:hover {
    background: var(--main-bg-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 102, 0, 0.45);
}

.slider-form .submit-wrap input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* === CF7 MESSAGES === */
.slider-form .wpcf7-response-output {
    margin-top: 10px;
    border-radius: 5px;
    padding: 10px 15px;
}

.slider-form .wpcf7-not-valid-tip {
    font-size: 13px;
    margin-top: 5px;
    color: var(--main-bg-color);
}


.single-service .service-details {
    padding: 0 0px 100px 0px;
}

.feature-section {
    padding: 0px 0px 110px 0px;
}

.testimonial-readmore {
    background: none;
    border: none;
    color: var(--main-bg-color);
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    padding: 0;
}

.testimonial-readmore:hover {
    text-decoration: underline;
}

.owl-item .testimonial-block-one .inner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-block-one .inner-box .author-box .autor-name {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.owl-item .testimonial-block-one .text {
    flex-grow: 1;
}

.scroll-top,
.theme-btn-one {
    background-color: var(--main-bg-color) !important;
}

.gdc-zip-btn.theme-btn-one {
    padding: 17px 5px;
}

.header-top .phone-box p a {
    color: var(--main-bg-color) !important;
}

.testimonial-section {

    padding: 0px 0px 100px 0px !important;
}

.works-section {
    padding: 0 0px 105px 0px;
}


.auto-container {
    max-width: 1440px !important;
}


/* Главный контейнер */
.gdc-hero-zip {
    max-width: 540px;
    margin-left: auto;
    color: #fff;
    text-align: center;
}

/* Заголовок */
.gdc-hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 22px;
    color: #fff;
}

/* Форма ZIP */
.gdc-zip-form {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: none;
}

/* Левая часть (input + ?) */
.gdc-zip-input-wrap {
    position: relative;
    flex: 1;
}

/* Инпут ZIP */
.gdc-zip-input-wrap input {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0 45px 0 18px;
    font-size: 17px;
}

/* Знак вопроса */
.gdc-help {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    color: #555;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: 600;
}

/* Кнопка */
.gdc-zip-btn {
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 0 28px;
    height: 55px;
    border-radius: 0 8px 8px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.gdc-zip-btn:hover {
    background: #e64a19;
}

/* Бейджи */
.gdc-badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gdc-badges img {
    height: 34px;
    object-fit: contain;
}


/* Контейнер ? */
.gdc-help {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #eee;
    color: #555;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
}

/* Tooltip */
.gdc-help .gdc-tooltip {
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #4c4c4c;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    width: 220px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform-origin: bottom center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    visibility: hidden;
}

/* Стрелочка */
.gdc-help .gdc-tooltip::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #4c4c4c;
}

/* Показ при hover */
.gdc-help:hover .gdc-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}


/* Общий контейнер */
#gdc-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    font-family: inherit;
}

/* Затемнение */
.gdc-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
}

/* Белая коробка */
.gdc-modal-box {
    position: relative;
    background: #ffffff;
    width: 90%;
    max-width: 620px;
    border-radius: 10px;
    padding: 30px;
    z-index: 2;
    animation: gdc-fade-in 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Контент */
.gdc-modal-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Кнопка закрытия */
.gdc-modal-close {
    position: absolute;
    right: 15px;
    top: 12px;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #222;
    line-height: 1;
}

@keyframes gdc-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.gdc-step {
    padding: 0;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.gdc-step-title {
    position: relative;
    font-family: 'Barlow', sans-serif;
    color: #222222;
    margin: 0px;
    transition: all 500ms ease;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.gdc-door-types {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gdc-option {
    background: #ffffff;
    padding: 20px 18px;
    border-radius: 10px;
    width: 120px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
    text-align: center;
}

.gdc-option img {
    width: 50px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.gdc-option span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.gdc-option:hover {
    border-color: #ff7146;
}

.gdc-option.active {
    border-color: #ff7146;
    background: #fff5f2;
}

#gdc-step-1-next {
    background: #ff7146;
    border: none;
    padding: 12px 35px;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

#gdc-step-1-next:hover {
    opacity: 0.85;
}


.gdc-radio-list {
    background: #fff;
    border-radius: 10px;
    padding: 20px 0;
}

.gdc-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.gdc-radio-option+.gdc-radio-option {
    border-top: 1px solid #eee;
}

.gdc-radio-option input {
    display: none;
}

.gdc-radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.gdc-radio-option input:checked+.gdc-radio-circle {
    border-color: #ff7146;
}

.gdc-radio-option input:checked+.gdc-radio-circle::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff7146;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
}

.gdc-step-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gdc-back-btn {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
}

.gdc-back-btn:hover {
    text-decoration: underline;
}

.gdc-step-buttons .gdc-next-btn,
.gdc-next-btn {
    background: #ff7146;
    border: none;
    padding: 12px 35px;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    display: none;
    cursor: pointer;
}

.gdc-step-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    background: #f8f8f8;
    border-radius: 0 0 10px 10px;
}


/* FIX: Radio block overlaps the buttons on steps 3–4 */
.gdc-step .gdc-radio-list {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    background: #fff !important;
    position: relative;
    z-index: 5;
}

/* Force buttons ABOVE everything */
.gdc-step-buttons {
    position: relative;
    z-index: 10 !important;
    background: #fff !important;
}

/* Fix weird theme inheritance */
.gdc-step-buttons .gdc-next-btn,
.gdc-step-buttons .gdc-back-btn {
    position: relative;
    z-index: 20;
}


.gdc-final-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gdc-final-row {
    display: flex;
    gap: 20px;
}

.gdc-final-col {
    flex: 1;
}

.gdc-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.gdc-step-subtitle {
    text-align: center;
    font-size: 20px;
    color: #0096a2;
    margin-bottom: 5px;
}

.gdc-step-desc {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.gdc-submit-btn {
    background: #ff7146;
    padding: 14px 40px;
    border-radius: 8px;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
        margin-bottom: 20px;
        margin-top: 20px;
}

.banner-section .owl-dots {
    display: none;
}

.chooseus-block-one .inner-box .icon-box .icon-shape:before,
.chooseus-block-one .inner-box .icon-box .icon-shape:after,
.chooseus-block-one .inner-box .icon-box .icon-shape:after {
    background-color: transparent !important;
}

.main-header .logo-box .logo {
    max-width: 260px !important;
}

.main-header .sticky-header {
    background: rgba(39, 39, 39, 0.88);
}

.main-header .fa-search {
    color: white;
}

.main-header .sticky-header .logo-box .logo img,
header .auto-container {
    max-width: 1440px !important;
}

.banner-section.style-three .content-box .btn-box {
    border: none !important;
}

.header-lower .clearfix::after {
    display: none;
}

.sticky-header .outer-box,
.header-lower .outer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .faq-wrapper {
    row-gap: 30px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.base-theme .main-header {
    background-color: rgba(39, 39, 39, 0.88);
}

.main-header.fixed-header .main-menu .navigation>li>a {
    color: white;
}


.main-header .main-menu .navigation>li>a {
    color: rgb(255, 253, 253);
}

.main-header.style-two .header-lower .main-menu .navigation>li>a:before {
    background-color: #f36827 !important;
}

footer.main-footer {
    background: rgba(39, 39, 39, 0.88);
}

.pull-right {
    float: right;
}

.cta-section .btn-box a.call {
    color: #6de5f2;
    border: 1px dashed #f36827;
}

.cta-section a.call {
    position: relative;
    display: inline-block;
    padding: 20px 20px 18px 68px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-right: 15px;
}

.cta-section .btn-box a.call i {
    position: absolute;
    left: 9px;
    top: -6px;
    font-size: 80px;
    color: #fff;
}

.cta-section {
    position: relative;
    padding: 50px 0px;
    background-color: #20445a;
}

.cta-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center;
    background-size: cover;
    animation: slide 100s linear infinite;
    -webkit-animation: slide 100s linear infinite;
}

.cta-section .inner-box .text h2 {
    display: block;
    font-size: 32px;
    line-height: 39px;
    color: #fff;
    font-weight: 600;
}

.cta-section .btn-box a.call {
    position: relative;
    display: inline-block;
    padding: 20px 20px 18px 68px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-right: 15px;
}

.cta-section .btn-box a.call i.icon-mob {
    position: absolute;
    left: 9px;
    top: -6px;
    font-size: 80px;
    color: #fff;
}

.cta-section .btn-box a {
    position: relative;
    float: left;
}

.cta-section .btn-box a.theme-btn-one {
    padding: 22px 37px;
}

.cta-section .btn-box a.theme-btn-one:before,
.cta-section .btn-box a.theme-btn-one:after {
    background: #fff;
}

/** cta-style-two **/
.cta-style-two {
    position: relative;
    overflow: hidden;
}

.cta-style-two .cta-text h3 a {
    border-bottom: 1px dashed #fff;
}

.cta-style-two .cta-text h3 a span {
    color: #fff;
}

.cta-style-two .cta-text {
    position: relative;
    display: block;
    padding: 45px 0px 55px 0px;
}

.cta-style-two .cta-text .icon {
    position: absolute;
    left: 0px;
    top: -20px;
}

/** contact-info-section **/

.cta-section .btn-box a.call i {
    position: absolute;
    left: 9px;
    top: -6px;
    font-size: 80px;
    color: #fff;
}

.menu-area .mobile-nav-toggler .icon-bar {
    background-color: white !important;
}


.swiper-pagination-bullet {
    background: #f36827 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f36827 !important;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup {
    background: #fff;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    position: relative;
    border-radius: 6px;
}

.popup .form-title {
    text-align: center;
    position: relative;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: #222222;
    margin: 0px;
    transition: all 500ms ease;
}

.popup form {
    margin: 30px 0 0 0;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.popup input,
.popup textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.popup button[type="submit"] {
    background: #f36b21;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
}

#gdc-step-5-submit {
    display: inline-flex;
}

.map-wrapper img {
    max-height: 560px;
    object-fit: cover;
}

.service-block-one .inner-box .lower-content .text {
    height: 31vh;
}

.service-block-one .inner-box .image-box img {
    height: 350px;
    object-fit: cover;
}

@media (min-width: 1025px) {

    /* карточка – колонка */
    .three-item-carousel .service-block-one .inner-box {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* картинка сверху, контент снизу */
    .three-item-carousel .service-block-one .image-box {
        flex: 0 0 auto;
    }

    .three-item-carousel .service-block-one .lower-content {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    /* ✅ твой черный блок должен растягиваться */
    .three-item-carousel .service-block-one .lower-content .text {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
    }

    /* если надо, чтобы "Learn more" всегда был снизу */
    .three-item-carousel .service-block-one .link {
        margin-top: auto;
    }
}

.service-section {
margin-bottom: -30px;
}
.service-section .owl-nav .owl-prev {
    position: absolute;
    left: 0;
}

.service-section .owl-nav .owl-next {
    position: absolute;
    right: 0;
}

.works-section .owl-nav {
    position: absolute;
    top: 10%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    right: 0 !important;
}

.works-section .nav-style-one .owl-next,
.works-section .nav-style-one .owl-prev {
    border-color: #EA6C35;
    background: #EA6C35;
}

.gdc-input.gdc-error {
    border-color: #e53935 !important;
    outline: none;
}

.gdc-error-text {
    color: #e53935;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
}

.prof-sensor-styles {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}


.clients-section .owl-nav {
    display: none;
}

.main-menu .navigation>li>ul>li>ul {
    left: 100% !important;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
    border-radius: 10px;
}

@media screen and (max-width: 1100px) {
    .auto-container.auto-container-fix {
        flex-direction: column;
    }

}



@media screen and (max-width: 768px) {

    .banner-section.style-three .banner-carousel .slide-item {
        padding: 45px 0px 135px 0px !important;
    }

    .contact-info-section .info-inner {
        margin-top: 0 !important;
    }

    .gdc-step {
        padding: 40px 10px;
    }

    .gdc-radio-circle {
        min-width: 20px;
    }

    .gdc-modal-box {
        width: 97%;
    }

    .gdc-step {
        width: 100%;
        max-width: 100%;
    }

    .auto-container {
        padding: 0;
    }

    .gdc-hero-title {
        font-size: 29px;
    }

    .gdc-zip-form {
        flex-direction: column;
        gap: 15px;

    }

    .gdc-zip-input-wrap input,
    .gdc-zip-btn {
        border-radius: 8px;
    }
}

@media only screen and (max-width: 599px) {

    .cta-section .inner-box .btn-box a.call,
    .cta-section .inner-box .btn-box a.theme-btn-one {
        width: 100%;
    }

    .banner-carousel .content-box .btn-box .theme-btn-one.js-open-popup {
        top: 0px;
        margin-top: 0;
    }

    .cta-section .btn-box a.call i.icon-mob {
        left: 65px;
    }

    .cta-section .inner-box .btn-box a.call {
        text-align: center;
    }

}


@media only screen and (max-width: 400px) {
    .banner-section.style-three .content-box .btn-box a.banner-btn {
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-section.style-three .banner-carousel .content-box .btn-box .theme-btn-one {
        width: 100%;
    }
}


.content_block_2 .content-box .inner-box .text .certificate-y {
    color: #f36827;
}

.content_block_2 .content-box .inner-box .text .certificate-y {
    color: #EA6C35;
}

.content_block_2 .content-box .inner-box .text .certificate-y {
    position: relative;
    display: inline-block;
    font-size: 106px;
    font-weight: 700;
    width: 170px;
    height: 170px;
    line-height: 160px;
    text-align: center;
    border-radius: 50%;
    border: 2px dashed #24485e;
    margin-bottom: 20px;
}

.content_block_2 .content-box .inner-box .text .certificate-text {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.chooseus-block-one .inner-box .chooseus-block-one-title {
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.chooseus-block-one .inner-box .chooseus-block-one-title {
    font-family: "Roboto", Sans-serif;
    font-weight: 600;
}

.content_block_4 .content-box .support-box .support-box-number {
    display: block;
    font-size: 30px;
    line-height: 38px;
    font-weight: 600;
}

.content_block_4 .content-box .support-box .support-box-number a {
    color: #EA6C35;
}

.content_block_4 .content-box .support-box .support-box-number a {
    display: inline-block;
}

.service-section .title-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
            .header-top {
                display: none;
            }

            .chooseus-block-one .inner-box .icon-box img {
                max-width: 100px;
            }

            .chooseus-block-one .inner-box .icon-box {
                box-shadow: unset;
            }

            .chooseus-block-one .inner-box .icon-box:before {
                background: unset
            }

            .elementor-widget-dormatic_why_choose_us .inner-content .row {
                justify-content: space-around;
            }

            .elementor-widget-dormatic_why_choose_us .inner-content .row a {
                color: black;
            }

            .sec-title span {
                display: none;
            }

            .slider-form {
                background-color: rgb(65 65 65 / 76%);
                border-radius: 50px;
            }

            .icon-warehouse {
                display: none;
            }

            .chooseus-section {
                padding: 45px 0px 45px 0px;
            }

            .banner-section.style-three .banner-carousel .slide-item {
                padding: 250px 0px 135px 0px;
            }

            .main-header .logo-box {
                padding: 15px 0px;
            }

            .main-menu .navigation>li {
                padding: 35px 0px;
            }

            .main-header .menu-right-content {
                padding: 20px 0px;
            }

            .service-section .pattern-layer {
                background-image: unset!important;
                background-color: #414141;
            }

            .service-section {
                padding: 60px 0px 60px 0px;
            }

            .btn-shape {
                display: none;
            }

            .slider-form .gdc-zip-btn {
                line-height: 18px;
            }

            .chooseus-block-one .inner-box .icon-box {
                height: 120px;
            }

            .chooseus-block-one .inner-box {
                margin-bottom: 15px;
            }

            .elementor-5 .elementor-element.elementor-element-0028e10 p {
                font-size: 15px;
            }

            .elementor-5 .elementor-element.elementor-element-aad17a4 {
                padding: 0;
            }

            .service-block-one .inner-box .lower-content .text {
                background-color: #212529;
                padding: 40px 40px 35px 40px;
            }

            .service-block-one .inner-box .lower-content .link {
                background-color: #212529;
            }

            .service-block-one .inner-box .lower-content .icon-box {
                display: none;
            }

            .elementor-5 .elementor-element.elementor-element-24849fe {
                padding: 60px 0px 60px 0px;
            }

            .image_block_1 .image-box .image-content {
                display: none;
            }

            .content_block_1 .content-box .author-box {
                display: none;
            }

            .image_block_1 .image-box .image-2 {
                display: none;
            }

            .about-section {
                padding-bottom: 0;
            }

            .elementor-5 .elementor-element.elementor-element-e21bab2 {
                padding-bottom: 0;
            }

            .cert-img-wrap {
                height: 100px;
            }

            .cert-img-wrap img {
                max-height: 100px;
            }

            .cta-section {
                background-color: #414141;
                border-bottom: unset;
            }

            .service-block-one .inner-box .lower-content .text p {
    color: rgba(255, 255, 255, 0.8);
}

/** banner-section **/
.banner-section{
  position: relative;
  overflow: hidden;
}
.banner-carousel{
  position: relative;
}
.banner-carousel .slide-item{
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 230px 0px 170px 0px;
}
.banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0.5;
}
.banner-carousel .slide-item .image-layer{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 6000ms linear;
  -moz-transition: all 6000ms linear;
  -ms-transition: all 6000ms linear;
  -o-transition: all 6000ms linear;
  transition: all 6000ms linear;
}
.banner-carousel .active .slide-item .image-layer{
  -webkit-transform:scale(1.15);
  -ms-transform:scale(1.15);
  transform:scale(1.15);
}
.banner-carousel .content-box{
  position: relative;
  display: block;
  max-width: 650px;
  z-index:5;
}
.banner-carousel .content-box h5{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  padding-left: 48px;
  margin-bottom: 10px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box h5{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
.banner-carousel .content-box h5 i{
  position: absolute;
  left: 0px;
  top: -18px;
  font-size: 60px;
  color: #fff;
}
.banner-carousel .content-box h1{
  position: relative;
  display: block;
  color: #fff;
  font-size: 66px;
  line-height: 76px;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box h1{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
.banner-carousel .content-box p{
  position: relative;
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 41px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}
.banner-carousel .content-box .btn-box{
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1600ms;
  -moz-transition-delay: 1600ms;
  -ms-transition-delay: 1600ms;
  -o-transition-delay: 1600ms;
  transition-delay: 1600ms;
}
.banner-carousel .content-box .btn-box .call-now{
  position: relative;
  display: inline-block;
  padding: 4px;
  margin-right: 22px;
}
.banner-carousel .content-box .btn-box .call-now .inner{
  position: relative;
  display: inline-block;
  padding: 21px 30px 23px 75px;
}
.banner-carousel .content-box .btn-box .call-now .inner:before{
  position: absolute;
  content: '';
  background: rgba(34,34,34,0.5);
  width: 8px;
  height: 8px;
  left: 0px;
  top: 0px;
}
.banner-carousel .content-box .btn-box .call-now .inner:after{
  position: absolute;
  content: '';
  background: rgba(34,34,34,0.5);
  width: 8px;
  height: 8px;
  right: 0px;
  bottom: 0px;
}
.banner-carousel .content-box .btn-box .call-now .inner i{
  position: absolute;
  left: 5px;
  top: 0px;
  color: #fff;
  font-size: 100px;
  font-weight: 400;
}
.banner-carousel .content-box .btn-box .call-now .inner span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  font-weight: 400;
}
.banner-carousel .content-box .btn-box .call-now .inner h3{
  display: block;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
}
.banner-carousel .content-box .btn-box .call-now .inner h3 a{
  display: inline-block;
  color: #fff;
}
.banner-carousel .content-box .btn-box .call-now .inner h3 a:hover{
  text-decoration: underline;
}
.banner-carousel .content-box .btn-box .theme-btn-one{
  top: -14px;
}
.banner-section .owl-dots{
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-section .owl-theme .owl-dots .owl-dot{
  display: block;
}
.banner-section .owl-theme .owl-dots .owl-dot span{
  position: relative;
  background: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 15px 0px;
  cursor: pointer;
}
.banner-section .owl-theme .owl-dots .owl-dot span:before{
  position: absolute;
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  transform: scale(0,0);
  transition: all 500ms ease;
}
.banner-section .owl-theme .owl-dots .owl-dot.active span:before,
.banner-section .owl-theme .owl-dots .owl-dot span:hover:before{
  transform: scale(1,1);
}
/** banner-style-two **/
.banner-section.style-two .content-box{
  max-width: 100%;
}
.banner-section.style-two .banner-carousel .slide-item{
  padding: 155px 0px 220px 0px;
}
.banner-section.style-two .banner-carousel .slide-item:before{
  opacity: 0.6;
}
.banner-section.style-two .content-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: #fff;
  margin-bottom: 7px;
  -webkit-animation: service_hexagon_2 15s infinite linear;
  -moz-animation: service_hexagon_2 15s infinite linear;
  -o-animation: service_hexagon_2 15s infinite linear;
  animation: service_hexagon_2 15s infinite linear;
}
.banner-section.style-two .banner-carousel .content-box h1{
  margin-bottom: 47px;
}
.banner-section.style-two .content-box h3{
  font-size: 24px;
  display: block;
  line-height: 32px;
  color: #fff;
  margin-bottom: 6px;
  opacity: 0;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
.banner-section.style-two .banner-carousel .active .content-box h3{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}
.banner-section.style-two .content-box .btn-box a{
  margin: 0px 8px;
}
.banner-section.style-two .banner-carousel .content-box .btn-box .theme-btn-one{
  top: 0px;
}
.banner-btn{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: #222 !important;
  background: #fff;
  text-align: center;
  padding: 17px 37px;
  text-transform: uppercase;
  z-index: 1;
  transition: all 500ms ease;
}
.banner-btn:hover{
  background: #20445a;
  color: #fff !important;
}
.banner-btn:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  background: #20445a;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: all 500ms ease;
}
.banner-btn:hover:before{
  height: 50%;
}
.banner-btn:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  background: #20445a;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}
.banner-btn:hover:after{
  height: 50%;
}
.banner-btn .btn-shape{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}
.banner-btn .btn-shape:before{
  position: absolute;
  content: '';
  background: #a7b6bf;
  width: 8px;
  height: 8px;
  left: 0px;
  bottom: 0px;
  transition: all 500ms ease;
}
.banner-btn:hover .btn-shape:before{
  bottom: 86%;
}
.banner-btn .btn-shape:after{
  position: absolute;
  content: '';
  background: #a7b6bf;
  width: 8px;
  height: 8px;
  top: 0px;
  right: 0px;
  transition: all 500ms ease;
}
.banner-btn:hover .btn-shape:after{
  top: 86%;
}
/** banner-style-three **/
.banner-section.style-three .content-box .btn-box{
  position: relative;
  display: inline-block;
  padding: 12px 12px;
}
.banner-section.style-three .content-box .btn-box a{
  float: left;
}
.banner-section.style-three .banner-carousel .content-box .btn-box .theme-btn-one{
  top: 0px;
}
.banner-section.style-three .content-box .btn-box a.banner-btn{
  margin-right: 10px;
}
.banner-section.style-three .banner-btn .btn-shape:before,
.banner-section.style-three .banner-btn .btn-shape:after{
}
.banner-section.style-three .banner-carousel .content-box p{
  margin-bottom: 31px;
}
.banner-section.style-three .banner-carousel .slide-item{
  padding: 150px 0px 135px 0px;
}/** about-section **/
.about-section{
  position: relative;
  padding-bottom: 100px;
}
.image_block_1 .image-box{
  position: relative;
  display: block;
  padding-bottom: 48px;
  margin-right: 70px;
}
.image_block_1 .image-box img{
  width: 100%;
}
.image_block_1 .image-box .image-2{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  background: #fff;
  padding: 10px;
}
.image_block_1 .image-box .image-1{
  position: relative;
  overflow: hidden;
}
.image_block_1 .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.image_block_1 .image-box:hover .image-1:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.image_block_1 .image-box .image-content{
  position: absolute;
  display: flex;
  align-items: center;
  left: -80px;
  top: 100px;
  background: #fff;
  width: 320px;
  padding: 17px 20px 23px 30px;
  box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.1);
}
.image_block_1 .image-box .image-content h2{
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  margin-right: 15px;
}
.image_block_1 .image-box .image-content h3{
  font-size: 22px;
  line-height: 27px;
  font-weight: 300;
}
.content_block_1 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 46px;
}
.content_block_1 .content-box .text h3{
  font-size: 24px;
  line-height: 32px;
  color: #20445a;
  font-weight: 500;
  margin-bottom: 25px;
  padding-left: 46px;
}
.content_block_1 .content-box .text .quote{
  position: absolute;
  width: 28px;
  height: 19px;
  left: 0px;
  top: 9px;
  background-repeat: no-repeat;
}
.content_block_1 .content-box .author-box{
  position: relative;
  display: block;
  padding: 0px 0px 50px 295px;
  border-bottom: 1px solid #dddddd;
}
.content_block_1 .content-box .author-box .signature{
  position: absolute;
  left: 0px;
  top: 1px;
}
.content_block_1 .content-box .author-box .signature:before{
  position: absolute;
  content: '';
  background: #dddddd;
  width: 1px;
  height: 65px;
  top: -7px;
  right: -35px;
}
.content_block_1 .content-box .author-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.content_block_1 .content-box .author-box .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.content_block_1 .content-box{
  position: relative;
  display: block;
  margin-top: 11px;
}
/** about-style-two **/
.about-style-two{
  position: relative;
  padding: 155px 0px 45px 0px;
}
.image_block_2 .image-box{
  position: relative;
  display: block;
  padding-bottom: 63px;
  padding-right: 27px;
}
.image_block_2 .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}
.image_block_2 .image-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.image_block_2 .image-box:hover .image:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.image_block_2 .image-box .single-box{
  position: absolute;
  left: -80px;
  background: #fff;
  width: 225px;
  padding: 28px 25px 25px 35px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.image_block_2 .image-box .content-one{
  top: 120px;
}
.image_block_2 .image-box .content-two{
  bottom: 120px;
}
.image_block_2 .image-box .single-box h2{
  position: relative;
  display: block;
  padding-left: 70px;
  font-size: 48px;
  line-height: 50px;
  color: #20445a;
  font-weight: 600;
  margin-bottom: 14px;
}
.image_block_2 .image-box .single-box h2 i{
  position: absolute;
  left: 0px;
  top: -3px;
  font-size: 60px;
}
.image_block_2 .image-box .single-box p{
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  color: #222222;
  font-weight: 500;
}
.image_block_2 .image-box .content-three{
  position: absolute;
  right: -190px;
  bottom: 0px;
  background: #fff;
  padding-left: 152px;
  width: 380px;
  min-height: 140px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.image_block_2 .image-box .content-three .icon-box{
  position: absolute;
  left: 0px;
  top: 0px;
  padding: 27px 0px 10px 10px;
  text-align: center;
  width: 150px;
}
.image_block_2 .image-box .content-three .text{
  position: relative;
}
.image_block_2 .image-box .content-three .icon-box i.icon{
  position: relative;
  display: inline-block;
  font-size: 120px;
  line-height: 60px;
  color: #444444;
  margin-bottom: 0px;
}
.image_block_2 .image-box .content-three .icon-box ul li{
  position: relative;
  display: inline-block;
  font-size: 10px;
  line-height: 16px;
  margin: 0px -3px;
}
.image_block_2 .image-box .content-three .icon-box ul{
  position: relative;
  top: -9px;
}
.image_block_2 .image-box .content-three .text{
  position: relative;
  padding: 25px 10px 22px 20px;
}
.image_block_2 .image-box .content-three .text h3{
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 3px;
}
.image_block_2 .image-box .content-three .text span{
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.content_block_5 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 90px;
}
.content_block_5 .content-box .text p{
  margin-bottom: 33px;
}
.content_block_5 .content-box .text .list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  padding-left: 28px;
  margin-bottom: 11px;
}
.content_block_5 .content-box .text .list li:last-child{
  margin-bottom: 0px;
}
.content_block_5 .content-box .text .list li:before {
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-weight: 700;
  left: 0px;
  top: 1px;
}
.content_block_5 .content-box .btn-box{
  position: relative;
  display: block;
  padding-left: 180px;
}
.content_block_5 .content-box .btn-box a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
  text-align: center;
  padding: 18px 39px 20px 50px;
}
.content_block_5 .content-box .btn-box a:before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  left: 32px;
  top: 28px;
}
.content_block_5 .content-box .btn-box a:hover{
  color: #fff;
}
.about-style-two .other-text{
  position: relative;
  display: block;
  margin-top: 105px;
}
.about-style-two .other-text h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}
.about-style-two .other-text h3:before,
.about-style-two .other-text h3:after{
  position: absolute;
  content: '';
  background: #dddddd;
  width: 230px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.about-style-two .other-text h3:before{
  left: 0px;
}
.about-style-two .other-text h3:after{
  right: 0px;
}
/** about-style-three **/
.about-style-three{
  position: relative;
  overflow: hidden;
}
.about-style-three .content-box{
  padding: 112px 0px 100px 0px;
}
.about-style-three .content-box .author .signature{
  position: relative;
  margin-bottom: 16px;
}
.about-style-three .content-box .author h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.about-style-three .content-box .author .designation{
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
.about-style-three .content_block_1 .content-box .text{
  margin-bottom: 39px;
}
.about-style-three .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  max-width: 1920px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.about-style-three .image-box .image-1{
  position: absolute;
  left: 370px;
  bottom: 0px;
}
.about-style-three .image-box .image-2{
  position: absolute;
  left: 223px;
  bottom: 75px;
  z-index: 1;
}
.about-style-three .image-box .image-2:before{
  position: absolute;
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  left: 10px;
  top: 10px;
  z-index: -1;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.1);
}
.about-style-three .image-box .image-pattern{
  position: absolute;
  left: 220px;
  bottom: 0px;
  width: 441px;
  height: 441px;
  background-repeat: no-repeat;
  bottom: -20px;
  z-index: -1;
}
.about-style-three .icon-shape{
  position: absolute;
  right: -100px;
  top: 80px;
}
.about-section.about-page{
  padding-top: 110px;
}/** service-section **/
.service-section{
  position: relative;
  padding: 100px 0px 100px 0px;
}
.service-section .title-inner{
  /* position: relative; */
  /* display: flex; */
  /* align-items: center; */
}
.service-section .title-inner .sec-title,
.service-section .title-inner .text{
  width: 50%;
  position: relative;
  float: left;
}
.service-section .title-inner .sec-title{
  padding-right: 25px;
}
.service-section .title-inner .text{
  padding-left: 25px;
  max-width: 450px;
}
.service-section .title-inner .text p{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.service-block-one .inner-box{
  position: relative;
  display: block;
  background: #183445;
  margin-bottom: 68px;
}
.service-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}
.service-block-one .inner-box .image-box img{
  width: 100%;
  transition: all .5s ease;
}
.service-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
  opacity: 0.2;
}
.service-block-one .inner-box .lower-content{
  position: relative;
  display: block;
}
.service-block-one .inner-box .lower-content .icon-box{
  position: absolute;
  left: 30px;
  top: -61px;
  width: 116px;
  height: 116px;
  line-height: 116px;
  padding: 8px;
  border-radius: 50%;
  text-align: center;
  z-index: 2;
  transition: all 500ms ease;
}
.service-block-one .inner-box:hover .lower-content .icon-box{
  background: #183445;
}
.service-block-one .inner-box .lower-content .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: #fff;
  font-size: 70px;
  color: #2c3345;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
  border: 1px dashed rgba(0,0,0,.2);
}
.service-block-one .inner-box .lower-content .icon-box .icon:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}
.service-block-one .inner-box:hover .lower-content .icon-box .icon:before{
  transform: scale(1,1);
}
.service-block-one .inner-box:hover .lower-content .icon-box .icon{
  color: #fff;
}
.service-block-one .inner-box .lower-content .text{
  position: relative;
  display: block;
  background-color: #183445;
  padding: 80px 40px 35px 40px;
  z-index: 1;
}
.service-block-one .inner-box .lower-content .text h3{
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-block-one .inner-box .lower-content .text h3 a{
  display: inline-block;
  color: #fff;
}
.service-block-one .inner-box .lower-content .text p{
  color: rgba(255,255,255,0.8);
}
.service-block-one .inner-box .lower-content .link{
  position: absolute;
  display: block;
  left: 0px;
  right: 0px;
  opacity: 0;
  bottom: 0px;
  width: 100%;
  background-color: #183445;
  padding: 17px 40px 19px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: all 500ms ease;
  z-index: 1;
}
.service-block-one .inner-box:hover .lower-content .link{
  opacity: 1;
  bottom: -68px;
}
.service-block-one .inner-box .lower-content .link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  padding-left: 18px;
}
.service-block-one .inner-box .lower-content .link a:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  left: 0px;
  top: 11px;
}
.service-section .owl-nav{
  position: absolute;
  top: 38%;
  width: 100%;
}
.service-section .owl-nav .owl-prev{
  position: absolute;
  left: -100px;
}
.service-section .owl-nav .owl-next{
  position: absolute;
  right: -100px;
}
.service-section .sec-title{
  margin-bottom: 0px;
}
.service-section .title-inner{
  margin-bottom: 55px;
}
.service-section .other-text{
  position: relative;
  padding-top: 33px;
}
.service-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}
/** service-style-two **/
.service-style-two{
  position: relative;
  padding: 123px 0px 110px 0px;
}
.service-style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: repeat-x;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}
.service-style-two .sec-title{
  margin-bottom: 93px;
}
.service-style-two .sec-title h2{
  margin-bottom: 17px;
}
.service-block-two .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding-right: 635px;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.service-block-two .inner-box .image-box{
  position: absolute;
  top: 0px;
  right: 0px;
}
.service-block-two .inner-box .image-box .image img{
  width: 100%;
}
.service-block-two .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}
.service-block-two .inner-box .image-box .image:before{
  position: absolute;
  top: 0;
  left: -75%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.service-block-two .inner-box:hover .image-box .image:before{
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.service-block-two .inner-box .content-box{
  position: relative;
  display: block;
  padding: 0px 60px 65px 60px;
}
.service-block-two .inner-box .content-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 75px;
  color: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  margin-top: -25px;
  margin-bottom: 31px;
  box-shadow: 0px 0px 0px 8px #ededed;
}
.service-block-two .inner-box .content-box h2{
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 11px;
}
.service-block-two .inner-box .content-box h2 a{
  display: inline-block;
  color: #222;
}
.service-block-two .inner-box .content-box p{
  margin-bottom: 23px;
}
.service-block-two .inner-box .content-box .list li{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #222;
  font-weight: 500;
  padding-left: 28px;
  margin-bottom: 10px;
}
.service-block-two .inner-box .content-box .list li:last-child{
  margin-bottom: 0px;
}
.service-block-two .inner-box .content-box .list li:before {
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-weight: 700;
  left: 0px;
  top: 1px;
}
.service-block-two .inner-box .content-box .list{
  margin-bottom: 39px;
}
.service-block-two .inner-box .content-box .btn-box .theme-btn-one{
  background: #24485e;
  font-size: 16px;
  font-weight: 600;
}
.service-block-two .inner-box .image-box .image-content{
  position: absolute;
  left: -50px;
  top: 60px;
  padding-left: 50px;
  background: #fff;
  width: 260px;
}
.service-block-two .inner-box .image-box .image-content .icon{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.service-block-two .inner-box .image-box .image-content h5{
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #24485e;
  text-transform: uppercase;
  padding: 9px 0px;
}
.service-block-two .inner-box .image-box .image-content h5 span{
  font-size: 24px;
  font-weight: 700;
}
/** service-style-three **/
.service-style-three{
  position: relative;
  padding-top: 123px;
  padding-bottom: 70px;
}
.service-style-three .title-inner{
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.service-style-three .title-inner .sec-title,
.service-style-three .title-inner .text{
  width: 50%;
  position: relative;
  float: left;
}
.service-style-three .title-inner .sec-title{
  padding-right: 25px;
}
.service-style-three .title-inner .text{
  padding-left: 25px;
  max-width: 450px;
}
.service-style-three .title-inner .text p{
  font-size: 20px;
  line-height: 30px;
}
.service-style-three .service-block-one .inner-box{
  margin-bottom: 30px;
}
.service-style-three .service-block-one .inner-box .lower-content .text{
  background: #f1f7fb;
  transition: all 500ms ease;
}
.service-style-three .service-block-one .inner-box:hover .lower-content .text{
  background: #fff;
}
.service-style-three .service-block-one .inner-box .lower-content .text h3 a{
  color: #222;
}
.service-style-three .service-block-one .inner-box .lower-content .text p{
  color: #555;
}
.service-style-three .service-block-one .inner-box .lower-content .link{
  background-color: #fff;
  border-top: 1px solid #dee4e7;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.08);
}
.service-style-three .service-block-one .inner-box .lower-content .link a{
  color: #20445a;
}
.service-style-three .service-block-one .inner-box:hover{
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.08);
}
.service-style-three .service-block-one .inner-box{
  transition: all 500ms ease;
}/** chooseus-section **/
.chooseus-section {
    position: relative;
    padding: 123px 0px 45px 0px;
}
.chooseus-section .icon-layer {
    position: absolute;
    top: 10px;
    right: 25px;
}
.content_block_2 .content-box {
    position: relative;
    max-width: 300px;
}
.content_block_2 .content-box .inner-box {
    position: relative;
    width: 100%;
    padding: 225px 35px 45px 35px;
}
.content_block_2 .content-box .inner-box .text {
    position: relative;
    display: block;
    background: #fff;
    padding: 45px 25px 40px 25px;
    text-align: center;
    box-shadow: 10px 10px 0px 0px rgba(255, 255, 255, 0.35);
}
.content_block_2 .content-box .inner-box .text h2 {
    position: relative;
    display: inline-block;
    font-size: 106px;
    font-weight: 700;
    width: 170px;
    height: 170px;
    line-height: 160px;
    text-align: center;
    border-radius: 50%;
    border: 2px dashed #24485e;
    margin-bottom: 20px;
}
.content_block_2 .content-box .inner-box .text h5 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
}
.chooseus-block-one {
    position: relative;
    max-width: 220px;
    margin: 0 auto;
}
.chooseus-block-one .inner-box {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 60px;
}
.chooseus-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 155px;
    line-height: 155px;
    text-align: center;
    background: #fff;
    box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 29px !important;
    z-index: 1;
}
.chooseus-block-one .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: #20445a;
    width: 100%;
    height: 0%;
    left: 0px;
    top: 0px;
    right: 0px;
    z-index: -1;
    transition: all 500ms ease;
}
.chooseus-block-one .inner-box:hover .icon-box:before {
    height: 100%;
}
.chooseus-block-one .inner-box .icon-box img {
    max-width: 50px;
}
.chooseus-block-one .inner-box .icon-box .icon-shape {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}
.chooseus-block-one .inner-box .icon-box .icon-shape:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    left: 0px;
    top: 0px;
}
.chooseus-block-one .inner-box .icon-box .icon-shape:after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    right: 0px;
    bottom: 0px;
}
.chooseus-block-one .inner-box h3 {
    display: block;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.chooseus-section .sec-title {
    margin-bottom: 55px;
}
.chooseus-section .pattern-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: repeat-x;
}/** feature-section **/
.feature-section{
  position: relative;
  padding: 185px 0px 110px 0px;
}
.feature-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 50px 0px 60px;
  transition: all 500ms ease;
}
.feature-block-one .inner-box:hover{
  padding-bottom: 51px;
  margin-bottom: -51px;
}
.feature-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 30px;
  transition: all 500ms ease;
}
.feature-block-one .inner-box:hover .icon-box{
  border-color: #20445a;
}
.feature-block-one .inner-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 60px;
  color: #fff;
  background: #20445a;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.feature-block-one .inner-box .icon-box .icon:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  transform: scale(0,0);
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease;
}
.feature-block-one .inner-box:hover .icon-box .icon:before{
  transform: scale(1,1);
}
.feature-block-one .inner-box h3{
  display: block;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 14px;
}
.feature-block-one .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: #222;
  font-weight: 600;
  border-bottom: 2px solid #909090;
  margin-left: 17px;
}
.feature-block-one .inner-box .link a:before{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  left: -17px;
  top: 7px;
}
.feature-block-one .inner-box .link{
  position: absolute;
  left: 60px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}
.feature-block-one .inner-box:hover .link{
  opacity: 1;
  visibility: visible;
}
/** feature-style-two **/
.feature-style-two{
  position: relative;
}
.feature-style-two .inner-container .feature-block-two{
  float: left;
  width: 33.333%;
}
.feature-style-two .inner-container{
  position: relative;
  margin-top: -25px;
  z-index: 1;
}
.feature-block-two .inner-box{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 238px 30px 56px 30px;
}
.feature-block-two .inner-box:before {
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.95)0%, rgba(0,0,0,0.0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.feature-block-two .inner-box h3{
  position: relative;
  display: block;
  font-size: 28px;
  color: #fff;
  line-height: 33px;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.feature-block-two .inner-box .link{
  position: absolute;
  left: 0px;
  bottom: -27px;
  width: 100%;
  text-align: center;
}
.feature-block-two .inner-box .link a{
  position: relative;
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  background: #fff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
.feature-block-two .inner-box .link a:hover{
  background: #24485e;
  color: #fff;
}
.feature-block-two .inner-box .overlay-content{
  position: absolute;
  left: 0px;
  top: -20px;
  width: 100%;
  height: calc(100% + 40px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 35px 50px 35px;
  opacity: 0;
  transform: scale(0,0);
  transition: all 500ms ease;
}
.feature-block-two .inner-box:hover .overlay-content{
  opacity: 1;
  transform: scale(1,1);
}
.feature-block-two .inner-box .overlay-content:before{
  position: absolute;
  content: '';
  background: #24485e;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  opacity: 0.95;
}
.feature-block-two .inner-box .overlay-content .icon-box{
  position: relative;
  display: block;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
  margin-bottom: 29px;
  padding-bottom: 37px;
}
.feature-block-two .inner-box .overlay-content .icon-box:before{
  position: absolute;
  content: '';
  width: 230px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
}
.feature-block-two .inner-box .overlay-content h3{
  margin-bottom: 13px;
}
.feature-block-two .inner-box .overlay-content p{
  position: relative;
  display: block;
  color: #fff;
}
.feature-block-two .inner-box .overlay-content .link a:before{
  position: absolute;
  content: '';
  width: 68px;
  height: 68px;
  left: -7px;
  top: -6px;
  border-radius: 50%;
  z-index: -1;
}
/** feature-style-three **/
.feature-style-three{
  position: relative;
  border-bottom: 1px solid #dddddd;
}
.feature-style-three .outer-container{
  position: relative;
  max-width: 1610px;
  width: 100%;
  padding: 0px 15px;
  margin: 0 auto;
}
.feature-style-three .feature-block-three{
  position: relative;
  float: left;
  width: 33.333%;
}
.feature-block-three .inner-box{
  position: relative;
  display: block;
  padding: 64px 85px 60px 135px;
}
.feature-block-three .inner-box .icon-box{
  position: absolute;
  left: 0px;
  top: 65px;
  display: inline-block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  font-size: 60px;
  color: #20445a;
  background: #fff;
  border-radius: 50%;
  transition: all 500ms ease;
}
.feature-block-three .inner-box:hover .icon-box{
  border-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
}
.feature-block-three .inner-box h3{
  display: block;
  font-size: 22px;
  line-height: 22px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 15px;
}
.feature-block-three .inner-box:before{
  position: absolute;
  content: '';
  background: #dddddd;
  width: 1px;
  height: 100%;
  top: 0px;
  right: 50px;
}
.feature-block-three:last-child .inner-box:before{
  display: none;
}
/** feature-style-four **/
.feature-style-four{
  position: relative;
  padding: 123px 0px 62px 0px;
}
.feature-style-four .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}
.feature-style-four .outer-container{
  position: relative;
  max-width: 1550px;
  padding: 0px 15px;
  width: 100%;
  margin: 0 auto;
}
.feature-style-four .sec-title{
  margin-bottom: 59px;
}
.feature-block-four .inner-box{
  position: relative;
  display: block;
  padding-left: 130px;
  margin-bottom: 49px;
}
.feature-block-four .inner-box .icon-box{
  position: absolute;
  left: 0px;
  top: 5px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: #fff;
  text-align: center;
}
.feature-block-four .inner-box .icon-box:before,
.feature-block-four .inner-box .icon-box:after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  transition: all 500ms ease;
}
.feature-block-four .inner-box .icon-box:before{
  left: 0px;
  top: 0%;
}
.feature-block-four .inner-box .icon-box:after{
  right: 0px;
  bottom: 0%;
}
.feature-block-four .inner-box:hover .icon-box:before{
  top: 100%;
  margin-top: -8px;
}
.feature-block-four .inner-box:hover .icon-box:after{
  bottom: 100%;
  margin-bottom: -8px;
}
.feature-block-four .inner-box h3{
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-block-four .inner-box p{
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
}
.feature-block-four .inner-box .icon-box img {
  max-width: 55px;
}
.feature-block-four .inner-box .link a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  text-align: center;
  border-radius: 50%;
}
.feature-style-four .image-box{
  position: absolute;
  right: 0px;
  bottom: -30px;
  max-width: 820px;
}
.feature-style-four .image-box .image-content{
  position: absolute;
  left: -25px;
  top: 195px;
  max-width: 230px;
  width: 100%;
}
.feature-style-four .image-box .image-content .inner{
  position: relative;
  display: block;
  background: #fff;
  padding: 45px 30px 40px 30px;
  text-align: center;
  z-index: 1;
  box-shadow: 10px 10px 0px 10px rgba(0, 0, 0, 0.2);
}
.feature-style-four .image-box .image-content .inner h2{
  position: relative;
  display: inline-block;
  font-size: 106px;
  font-weight: 700;
  width: 170px;
  height: 170px;
  line-height: 160px;
  text-align: center;
  border-radius: 50%;
  border: 2px dashed #24485e;
  margin-bottom: 20px;
}
.feature-style-four .image-box .image-content .inner h5{
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
}/** cta-section **/
.cta-section{
  position: relative;
  padding: 50px 0px;
  background-color: #20445a;
}
.cta-section .pattern-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-position: center;
  background-size: cover;
  animation: slide 100s linear infinite;
  -webkit-animation: slide 100s linear infinite;
}
.cta-section .inner-box .text h2{
  display: block;
  font-size: 32px;
  line-height: 39px;
  color: #fff;
  font-weight: 600;
}
.cta-section .inner-box .btn-box a.call{
  position: relative;
  display: inline-block;
  padding: 20px 20px 18px 68px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  margin-right: 15px;
}
.cta-section .inner-box .btn-box a.call i{
  position: absolute;
  left: 9px;
  top: -6px;
  font-size: 80px;
  color: #fff;
}
.cta-section .inner-box .btn-box a{
  position: relative;
  float: left;
}
.cta-section .inner-box .btn-box a.theme-btn-one{
  padding: 22px 37px;
}
.cta-section .inner-box .btn-box a.theme-btn-one:before,
.cta-section .inner-box .btn-box a.theme-btn-one:after{
  background: #fff;
}
/** cta-style-two **/
.cta-style-two{
  position: relative;
  overflow: hidden;
}
.cta-style-two .cta-text h3 a{
  border-bottom: 1px dashed #fff;
}
.cta-style-two .cta-text h3 a span{
  color: #fff;
}
.cta-style-two .cta-text{
  position: relative;
  display: block;
  padding: 45px 0px 55px 0px;
}
.cta-style-two .cta-text .icon{
  position: absolute;
  left: 0px;
  top: -20px;
}/** works-section **/
.works-section{
  position: relative;
  padding: 123px 0px 105px 0px;
}
.work-block-one .inner-box{
  position: relative;
  display: block;
  padding: 0px 30px;
}
.work-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 150px;
  height: 155px;
  line-height: 182px;
  text-align: center;
  background: #fff;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 47px;
  font-size: 60px;
  color: #24485e;
  z-index: 1;
  transition: all 500ms ease;
}
.work-block-one .inner-box:hover .icon-box{
  color: #fff;
  line-height: 122px;
}
.work-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  background: #24485e;
  width: 100%;
  height: 0%;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: -1;
  transition: all 500ms ease;
}
.work-block-one .inner-box:hover .icon-box:before{
  height: 100%;
}
.work-block-one .inner-box .icon-box span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  border: 2px dashed #24485e;
  transition: all 500ms ease;
}
.work-block-one .inner-box:hover .icon-box span{
  top: 80%;
}
.work-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 13px;
}
.work-block-one .inner-box .icon-box .shape{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
}
.work-block-one .inner-box .icon-box .shape:before,
.work-block-one .inner-box .icon-box .shape:after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
}
.work-block-one .inner-box .icon-box .shape:before{
  left: 0px;
  top: 0px;
}
.work-block-one .inner-box .icon-box .shape:after{
  right: 0px;
  bottom: 0px;
}
.works-section .sec-title{
  margin-bottom: 92px;
}
.works-section .sec-title h2{
  margin-bottom: 13px;
}
.works-section .sec-title p{
  font-size: 18px;
}
.work-block-one .inner-box .arrow{
  position: absolute;
  top: 55px;
  right: -35px;
  width: 54px;
  height: 45px;
  background-repeat: no-repeat;
}/** contact-info-section **/
.contact-info-section{
  position: relative;
}
.contact-info-section .contact-map{
  position: relative;
  width: 100%;
}
.contact-info-section .contact-map iframe{
  width: 100%;
  height: 780px;
}
.contact-info-section .info-inner{
  position: relative;
  display: block;
  overflow: hidden;
  background: #f1f7fb;
  margin-top: -388px;
  z-index: 1;
}
.content_block_3 .content-box{
  position: relative;
  padding: 78px 40px 56px 70px;
}
.content_block_3 .content-box .text p{
  margin-bottom: 34px;
}
.content_block_3 .content-box .text .location-list li{
  position: relative;
  display: inline-block;
  float: left;
  width: 33.333%;
  font-size: 18px;
  color: #222;
  padding-left: 27px;
  margin-bottom: 8px;
}
.content_block_3 .content-box .text .location-list li:before{
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  font-weight: 700;
  left: 0px;
  top: 0px;
}
.content_block_3 .content-box .sec-title{
  margin-bottom: 8px;
}
.content_block_3 .content-box .icon-layer{
  position: absolute;
  right: -60px;
  bottom: 15px;
}
.content_block_4 .content-box{
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 320px 50px 35px 50px;
  margin-left: 30px;
}
.content_block_4 .content-box:before{
  position: absolute;
  content: '';
  background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.95)0%, rgba(0,0,0,0.0) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
.content_block_4 .content-box .text p{
  position: relative;
  display: block;
  text-align: center;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 21px;
}
.content_block_4 .content-box .support-box{
  position: relative;
  display: block;
  padding: 16px 30px 16px 80px;
}
.content_block_4 .content-box .support-box:before,
.content_block_4 .content-box .support-box:after{
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
}
.content_block_4 .content-box .support-box:after{
  right: -1px;
  bottom: -1px;
}
.content_block_4 .content-box .support-box:before{
  left: -1px;
  top: -1px;
}
.content_block_4 .content-box .support-box .icon-box{
  position: absolute;
  left: 5px;
  top: -5px;
  font-size: 100px;
  color: #fff;
}
.content_block_4 .content-box .support-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
}
.content_block_4 .content-box .support-box h3{
  display: block;
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
}
.content_block_4 .content-box .support-box h3 a{
  display: inline-block;
}
.content_block_4 .content-box .support-box h3 a:hover{
  text-decoration: underline;
}
/** contact-info-two **/
.contact-info-two{
  position: relative;
  padding: 110px 0px;
  border-bottom: 1px solid #dddddd;
}
.contact-info-two .single-info-box{
  position: relative;
  display: block;
  padding: 30px 30px 25px;
  background: #e5e5e51a;
  border-radius: 10px;
  overflow: hidden;
}
.contact-info-two .single-info-box:before{
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  top: 0px;
  right: -15px;
  opacity: .5;
}
.contact-info-two .info-column:last-child .single-info-box:before{
  right: 0px;
}
.contact-info-two .info-column:first-child .single-info-box:after{
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  top: 0px;
  left: 0px;
}
.contact-info-two .single-info-box .icon-box{
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 17px;
}
.contact-info-two .single-info-box .icon-box .icon{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  color: #fff;
  text-align: center;
  background: #20445a;
  border-radius: 50%;
}
.contact-info-two .single-info-box h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
  color: #222;
  font-weight: 600;
  margin-bottom: 13px;
}
.contact-info-two .single-info-box p{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 28px;
  color: #222;
  font-family: Roboto Slab;
}
.contact-info-two .single-info-box p a{
  color: #222;
}
.contact-info-two .other-text h3{
  display: block;
  font-size: 22px;
  line-height: 30px;
}
.contact-info-two .other-text{
  position: relative;
  margin-top: 57px;
}
.contact-info-two .other-text h3 span{
  font-weight: 600;
}
.icon-bg {
  position: absolute;
  bottom: -40px;
  left: -40px;
  color: #888;
  opacity: .1;
  font-size: 100px;
  transform: rotate(
-45deg
);
}

.row.clearfix {
    display: flex;
    flex-wrap: wrap;
}

.feature-block {
    display: flex;
}

.feature-block-one {
    display: flex;
    width: 100%;
}

.feature-block-one .inner-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}