
/*==============================
 *    Common styles
 *    ================================ */

/* loader */
#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}

    #preloader:before {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #fe7c02;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    #preloader:after {
        content: "";
        width: 80px;
        height: 80px;
        border: 3px solid #fe7c02;
        display: block;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
        animation-name: LoaderCicle;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-delay: 1s;
    }

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }

    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}
/* site color and basic options */
a:hover, a:active {
    color: #fe7c02;
    text-decoration: none;
}

.card .card-body {
    color: #0C2340;
}

/* heading */
h1 {
    color: #2e3542;
}

    h1 a {
        color: #2e3542;
    }

        h1 a:hover {
            color: #2e3542;
        }

        h1 a:active {
            color: #2e3542;
        }

        h1 a:focus {
            color: #2e3542;
        }

h2 {
    color: #2e3542;
}

    h2 a {
        color: #2e3542;
    }

        h2 a:hover {
            color: #2e3542;
        }

        h2 a:active {
            color: #2e3542;
        }

        h2 a:focus {
            color: #2e3542;
        }

h3 {
    color: #2e3542;
}

    h3 a {
        color: #2e3542;
    }

        h3 a:hover {
            color: #2e3542;
        }

        h3 a:active {
            color: #2e3542;
        }

        h3 a:focus {
            color: #2e3542;
        }

h4 {
    color: #2e3542;
}

    h4 a {
        color: #2e3542;
    }

        h4 a:hover {
            color: #2e3542;
        }

        h4 a:active {
            color: #2e3542;
        }

        h4 a:focus {
            color: #2e3542;
        }

h5 {
    color: #2e3542;
}

    h5 a {
        color: #2e3542;
    }

        h5 a:hover {
            color: #2e3542;
        }

        h5 a:active {
            color: #2e3542;
        }

        h5 a:focus {
            color: #2e3542;
        }

h6 {
    color: #2e3542;
}

    h6 a {
        color: #2e3542;
    }

        h6 a:hover {
            color: #fe7c02;
        }

        h6 a:active {
            color: #fe7c02;
        }

        h6 a:focus {
            color: #fe7c02;
        }

.h1 {
    color: #063232;
}

    .h1 a {
        color: #063232;
    }

        .h1 a:hover {
            color: #fe7c02;
        }

        .h1 a:active {
            color: #fe7c02;
        }

        .h1 a:focus {
            color: #fe7c02;
        }

.h2 {
    color: #063232;
}

    .h2 a {
        color: #063232;
    }

        .h2 a:hover {
            color: #fe7c02;
        }

        .h2 a:active {
            color: #fe7c02;
        }

        .h2 a:focus {
            color: #fe7c02;
        }

.h3 {
    color: #fe7c02;
}

    .h3 a {
        color: #fe7c02;
    }

        .h3 a:hover {
            color: #fe7c02;
        }

        .h3 a:active {
            color: #fe7c02;
        }

        .h3 a:focus {
            color: #fe7c02;
        }

.h4 {
    color: #fe7c02;
}

    .h4 a {
        color: #fe7c02;
    }

        .h4 a:hover {
            color: #fe7c02;
        }

        .h4 a:active {
            color: #fe7c02;
        }

        .h4 a:focus {
            color: #fe7c02;
        }

.h5 {
    color: #063232;
}

    .h5 a {
        color: #063232;
    }

        .h5 a:hover {
            color: #fe7c02;
        }

        .h5 a:active {
            color: #fe7c02;
        }

        .h5 a:focus {
            color: #fe7c02;
        }

.h6 {
    color: #063232;
}

    .h6 a {
        color: #063232;
    }

        .h6 a:hover {
            color: #fe7c02;
        }

        .h6 a:active {
            color: #fe7c02;
        }

        .h6 a:focus {
            color: #fe7c02;
        }


.offcanvas-fullwidth {
    width: 35vw !important;
    max-width: 35vw;
    overflow-y: auto;
    background-color: #1b2330;
}

.offcanvas-body {
    overflow: visible;
    padding: 3rem;
}

.logo-container {
    max-width: 310px;
}

.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--gray);
    transition: all 0.5s;
    border-radius: 20px;
    padding: 12px 24px;
    color: #fff;
    width: 100%;
}

    .navigation:hover {
        color: #f67a02;
    }

        .navigation:hover i {
            color: #1b2330;
        }

    .navigation.active {
        color: #f67a02;
    }

    .navigation h4 {
        color: #fff;
    }

    .navigation.active {
        color: #f67a02;
    }

        .navigation.active h4 {
            color: #f67a02;
        }

    .navigation .header-text {
        font-size: 18px;
        font-weight: medium;
    }

    .navigation i {
        font-size: 23px;
        color: #FE7C02;
    }

    .navigation.active i {
        color: #FE7C02;
    }


    .navigation:hover h4 {
        color: #f67a02;
    }

    .navigation img {
        opacity: 0;
        margin-block: -3rem;
        justify-self: center;
        transition: all 1s;
        transform: scale(1);
        position: relative;
        z-index: 9999;
    }

    .navigation:hover img {
        opacity: 1;
    }

.service {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--gray);
    transition: all 0.5s;
    border-radius: 20px;
    padding-block: 24px;
}

    .service a {
        color: var(--primary);
        font-size: 45px;
        height: 100px;
        width: 100px;
        border-radius: 50px;
        background-color: var(--text-color);
        transition: all 0.5s;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: rotate(-45deg);
    }

    .service:hover a {
        color: var(--primary);
        background-color: var(--accent-color);
        transform: rotate(0deg);
    }

    .service img {
        opacity: 0;
        margin-block: -5rem;
        justify-self: center;
        transition: all 1s;
        transform: scale(1);
        position: relative;
        z-index: 9999;
        transform: rotate(3deg);
    }

    .service:hover img {
        opacity: 1;
    }

.pages-dropdown {
    position: relative;
}

    .pages-dropdown .sub-list {
        list-style: none;
        margin: 0;
        padding-left: 2.5rem;
        /* sejajar dengan teks */
        overflow: hidden;
        max-height: 0;
        /* disembunyikan */
        opacity: 0;
        transition: all 0.3s ease;
    }

        .pages-dropdown .sub-list li {
            padding: 4px 0;
        }

        .pages-dropdown .sub-list a {
            text-decoration: none;
            font-size: 14px;
            color: #fff;
        }

            .pages-dropdown .sub-list a:hover {
                color: #fe7c02;
            }

.offcanvas {
    color: #fff;
}


.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-right: 0.5rem;
    align-items: center;
    color: var(--primary);
    border: 1px solid var(--text-color);
    background-color: var(--text-color);
}

    .social-item.white {
        color: #222222;
        border: 1px solid #FBFBFB;
        background-color: #FBFBFB;
    }


    .social-item:hover {
        background-color: #FE7C02;
        color: #fff;
        border: solid 1px #FE7C02;
    }

    .social-item.white:hover {
        background-color: #FE7C02;
        color: #fff;
        border: #FE7C02;
    }

.social-item-3:hover {
    background-color: #FE7C02;
    color: #fff;
    border: solid 1px #FE7C02;
}

.social-container {
    display: flex;
    flex-direction: row;
}

    .social-container .share-button {
        background-color: var(--accent-color-1);
        aspect-ratio: 1/1;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

.share-button:hover {
    background-color: var(--accent-color-2);
}

.pages-dropdown:hover .sub-list {
    max-height: 400px;
    opacity: 1;
}

.tab-container {
    display: grid;
    grid-template-columns: 30% 68%;
    align-items: end;
    gap: 2rem;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.primary-overlay[data-overlay-dark]:before {
    background: #fe7c02;
}

.secondary-overlay[data-overlay-dark]:before {
    background: #063232;
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(6, 50, 50, 0.76);
    background: linear-gradient(-90deg, transparent, #0C2340 65%);
}

.dark-overlay[data-overlay-dark]:before {
    background: #000;
}

.text-primary, .text-primary-hover:hover {
    color: #fe7c02 !important;
}

.bg-primary {
    background-color: #fe7c02 !important;
}

.text-secondary, .text-secondary-hover:hover {
    color: #fe7c02 !important;
}

.bg-secondary {
    background-color: #0C2340 !important;
}

.bg-lgrey {
    background-color: #161c28;
}

.bg-light {
    background-color: #e0e8f1 !important;
}

.text-secondary-hover:hover {
    color: #063232 !important;
}

.border-primary {
    border: 1px solid #fe7c02 !important;
}

.box-shadow-common {
    -webkit-box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.09);
}

.text-dark {
    color: #041b16 !important;
}

.text-white-hover:hover {
    color: #fff !important;
}

.ls-minus-2px {
    letter-spacing: -2px;
}

.background-position-center {
    background-position: center center;
}

.form-control {
    border-radius: 0;
}

.min-vh-100 {
    min-height: 100vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-70 {
    min-height: 70vh;
}
.min-vh-85 {
    min-height: 85vh;
}

@media screen and (max-width: 991px) {
    .min-vh-85 {
        min-height: 100vh;
    }
}

.min-height-600px {
    min-height: 600px;
}

@media screen and (max-width: 991px) {
    .min-height-600px {
        min-height: 450px;
    }
}

@media screen and (max-width: 991px) {
    .data-overlay:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        background: rgba(20, 33, 43, 0.76);
    }
}




/* min-height-525 */
.min-height-525 {
    min-height: 525px;
}

@media screen and (max-width: 991px) {
    .min-height-525 {
        min-height: 450px;
    }
}

@media screen and (max-width: 767px) {
    .min-height-525 {
        min-height: 400px;
    }
}
/* display-custom-1 */
.display-custom-1 {
    font-size: 95px; 
    line-height: 1;
}

@media screen and (max-width: 991px) {
    .display-custom-1 {
        font-size: 94px;
        letter-spacing: -5px;
    }
}

@media screen and (max-width: 767px) {
    .display-custom-1 {
        font-size: 74px;
        letter-spacing: -4px;
    }
}

@media screen and (max-width: 575px) {
    .display-custom-1 {
        font-size: 55px;
        letter-spacing: -3px;
    }
}
/* display-custom-2 */
.display-custom-2 {
    font-size: 150px;
    letter-spacing: -8px;
    line-height: 1;
}

@media screen and (max-width: 1399px) {
    .display-custom-2 {
        font-size: 135px;
    }
}

@media screen and (max-width: 1199px) {
    .display-custom-2 {
        font-size: 125px;
        letter-spacing: -5px;
    }
}

@media screen and (max-width: 991px) {
    .display-custom-2 {
        font-size: 94px;
        letter-spacing: -3px;
    }
}

@media screen and (max-width: 767px) {
    .display-custom-2 {
        font-size: 74px;
        letter-spacing: -2px;
    }
}

@media screen and (max-width: 575px) {
    .display-custom-2 {
        font-size: 55px;
    }
}
/* display-custom-3 */
.display-custom-3 {
    font-size: 104px;
}

@media screen and (max-width: 991px) {
    .display-custom-3 {
        font-size: 94px;
    }
}

@media screen and (max-width: 767px) {
    .display-custom-3 {
        font-size: 74px;
    }
}

@media screen and (max-width: 575px) {
    .display-custom-3 {
        font-size: 55px;
    }
}

[data-top-bottom] {
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.border-text {
    text-fill-color: transparent;
    text-stroke-color: #fff;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
    stroke-width: 1px;
}

    .border-text.primary {
        text-fill-color: transparent;
        text-stroke-color: #fe7c02;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: #fe7c02;
        -webkit-text-stroke-width: 1px;
        stroke-width: 1px;
    }

    .border-text.secondary {
        text-fill-color: transparent;
        text-stroke-color: #063232;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke-color: #063232;
        -webkit-text-stroke-width: 1px;
        stroke-width: 1px;
    }


@media screen and (max-width: 1199px) {
    .cursor-helper {
        display: none;
    }

    h2 {
        cursor: inherit !important;
    }
}

@media screen and (min-width: 1200px) {
    /* image-effect */
    .image-effect {
        position: relative;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: all 900ms ease;
        -moz-transition: all 900ms ease;
        -ms-transition: all 900ms ease;
        -o-transition: all 900ms ease;
        transition: all 900ms ease;
        clip-path: polygon(0 0, 6% 0, 6% 100%, 0% 100%);
    }

        .image-effect.animated {
            opacity: 1;
            -webkit-transition-delay: 300ms;
            -moz-transition-delay: 300ms;
            -ms-transition-delay: 300ms;
            -o-transition-delay: 300ms;
            transition-delay: 300ms;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        }
}

@media screen and (max-width: 1199px) {
    .image-effect {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        -webkit-transition: all 100ms ease;
        -moz-transition: all 100ms ease;
        -ms-transition: all 100ms ease;
        -o-transition: all 100ms ease;
        transition: all 100ms ease;
    }
}
/* scroll bar */
.scroll-bar {
    position: fixed;
    right: 20px;
    z-index: 111;
    top: 50%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); 
}

    .scroll-bar.visible {
        opacity: 1;
    }

    .scroll-bar .scroll-to-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .scroll-bar .scroll-ver-line {
        width: 2px;
        height: 60px;
        position: relative;
        background-color: rgb(124 124 124 / 90%);
        color: inherit;
        display: block;
    }

    .scroll-bar .scroll-indicate {
        display: inline-block;
        width: 2px;
        position: absolute;
        background-color: #fe7c02;
        top: 0px;
        left: 0px;
    }

    .scroll-bar .scroll-text {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        writing-mode: vertical-lr;
        margin-bottom: 15px;
        color: #919191;
        font-size: 11px;
        text-transform: uppercase;
    }
        .scroll-bar .scroll-text:hover {
            color: #fe7c02;
        }
        
/* Rotated Circle */
@-webkit-keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
/*site-list*/
.site-list li {
    position: relative;
    padding-left: 37px;
    margin-bottom: 10px;
}

    .site-list li:last-child {
        margin-bottom: 0;
    }

    .site-list li:before {
        content: "\f00c";
        font-family: 'FontAwesome';
        font-size: 20px;
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 100;
        line-height: 35px;
        color: #fe7c02;
    }


.site-list2 {
    list-style: none;
    padding-left: 0
}

.site-list2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px
}

    .site-list2 li:last-child {
        margin-bottom: 0
    }

    .site-list2 li:before {
        content: '\f058';
        font-family: "Font Awesome 6 Free";
        font-size: 18px;
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 700;
        line-height: 35px;
        color: #fe7c02
    }

    .site-list2.second li {
        color: #fff
    }

        .site-list2.second li:before {
            color: #fff
        }

.btn-site {
    background-color: #fe7c02;
    border: 1px solid #fe7c02;
    color: #fff;
    border-radius: 0;
    font-size: 14px;
    text-align: center;
    padding: 15px 34px !important;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
    width: auto;
    line-height: 1.5;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

    .btn-site:hover, .btn-site:active, .btn-site:focus {
        color: #fe7c02;
        transform: translate3d(0, -2px, 0);
        background: #fff;
    }

    .btn-site.white {
        background-color: #fff;
        color: #232323
    }
/*circle button */
.circle-btn {
    display: inline-block;
    height: 150px;
    width: 150px;
    line-height: 150px;
    border-radius: 50%;
    padding: 0 !important;
    color: #fff;
    text-align: center;
    background-color: #fe7c02;
    transition-duration: .4s;
    box-shadow: 0px 3px 10px 0px rgba(6, 50, 50, 0.08);
}

    .circle-btn:hover, .circle-btn:active, .circle-btn:focus {
        background-color: #fff;
        color: #fe7c02;
    }

@media screen and (max-width: 1199px) {
    .circle-btn {
        height: 130px;
        width: 130px;
        line-height: 130px;
        font-size: 14px;
    }
}
/*==============================
 *    Navigation
 *    ================================ */
/* top bar  */
.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}

    .top-bar-info ul {
        margin-bottom: 0;
    }

    .top-bar-info li {
        font-weight: 500;
        color: #fff;
        list-style-type: none;
        font-size: 14px;
        padding: 0 5px 0;
        display: inline-block;
        margin-bottom: 0;
    }

.btn-toggler-accent {
    font-size: 22px;
    width: 3rem;
    height: 3rem;
    padding: 0;
    aspect-ratio: 1 / 1;
    border: 1px solid #fe7c02;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    background: #fe7c02 !important;
}

    .btn-toggler-accent:hover {
        border: 1px solid #fe7c12;
        color: #fe7c12;
        background: #fff !important;
    }

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}

    .top-social-icon li {
        font-size: 14px;
        list-style-type: none;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0 7px;
    }

        .top-social-icon li:last-child {
            padding-right: 0;
        }

            .top-social-icon li:last-child a {
                padding-right: 0;
            }

        .top-social-icon li a {
            color: #fff;
            line-height: 28px;
            -webkit-transition-duration: .3s;
            transition-duration: .3s;
            padding: 0 3px;
        }

            .top-social-icon li a:hover {
                color: rgba(255, 255, 255, 0.65);
            }

.scrollHeader {
    background: #fff;
}

.border-color-light-black {
    border-bottom: 1px solid #000; 
}

    .border-color-light-black.scrollHeader {
        padding: 0px;
    }

.text-orange {
    color: #FE7C02
}
/* menu area light */
.navbar-nav li.current > a, .navbar-nav li.active > a {
    color: #fe7c02 !important;
}

.attr-nav > ul > li > a.butn {
    color: #fff;
}

.navbar > ul > li.current > a:after {
    border-color: transparent #fe7c02 #fe7c02 transparent !important;
}

.menu_area-light .navbar-nav li.current > a, .menu_area-light .navbar-nav li.active > a {
    color: #fe7c02;
}

.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #fe7c02 #fe7c02 transparent;
}

.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #fe7c02;
}

    .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
        color: #fe7c02;
    }

.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #fe7c02;
}

.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #fe7c02 #fe7c02 transparent;
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a, .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #fe7c02;
    }

    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: #fe7c02;
    }

    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: #fe7c02;
    }

   
}

   
 

/* Rotated Circle */
@-webkit-keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotated_circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
 
/*============================== 
* Section Heading * 
================================ * 
/*section-title01*/
.section-title01 h2, .section-title01 h1 {
    font-size: 140px;
    line-height: 1;
    font-weight: 600;
    word-wrap: break-word;
}

    .section-title01 h2.left, .section-title01 h1.left {
        font-size: 54px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 1px;
    }

.section-title01 .sub-title {
    position: relative;
    display: block;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 0;
    z-index: 9;
    padding: 0;
    padding-left: 200px;
}

    .section-title01 .sub-title:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        background-color: #FE7C02;
        width: 180px;
        height: 1px;
        transform: translateY(-50%);
    }

    .section-title01 .sub-title.white:before {
        background-color: #9e9e9e;
    }

@media screen and (max-width: 1199px) {
    .section-title01 h2 {
        font-size: 100px;
    }

    .section-title01 .sub-title {
        font-size: 19px;
    }

    .section-title01 h2.left {
        font-size: 45px;
    }

    .section-title01 h1 {
        font-size: 155px;
    }
}

@media screen and (max-width: 991px) {
    .section-title01 h2 {
        font-size: 80px;
    }

    .section-title01 .sub-title {
        padding-left: 192px;
        font-size: 18px;
    }

    .section-title01 h2.left {
        font-size: 32px;
    }
}

@media screen and (max-width: 767px) {
    .section-title01 h2 {
        font-size: 70px;
    }

    .section-title01 .sub-title {
        padding-left: 175px;
        font-size: 18px;
    }

        .section-title01 .sub-title:before {
            width: 155px;
        }

    .section-title01 h2.left {
        font-size: 32px;
    }
}

@media screen and (max-width: 575px) {
    .section-title01 .sub-title {
        padding-left: 10px;
        font-size: 14px;
    }
    .display-2 { 
        font-size: calc(1.175rem + 3.9vw);
    }
    .section-title01 h2 {
        font-size: 45px;
    }

    .section-title01 .banner-heading {
        font-size: 70px;
    }
    .section-title01 .sub-title:before {
        content: none;
    }

    .section-title01 h2.left {
        font-size: 27px;
    }

    .section-title01 h1 {
        font-size: 90px;
    }

}
/*section-title02*/
.section-title02 .sub-title {
    display: flex;
}

    .section-title02 .sub-title h4 {
        color: #fe7c02;
        font-weight: 700;
        font-size: 3rem;
        text-transform: uppercase;
        margin-bottom: 0;
        line-height: 1;
    }

    .section-title02 .sub-title .title-border {
        position: relative;
        width: 100%;
        display: block;
        padding-left: 30px;
        text-transform: uppercase;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 5.9px;
        color: #063232;
        font-style: italic;
        padding-top: 25px;
    }

        .section-title02 .sub-title .title-border:before {
            border-top: 1px solid rgba(6, 50, 50, 0.1);
            content: "";
            width: 100%;
            line-height: 1;
            display: block;
            position: absolute;
            top: 5px;
            left: 20px;
            right: 0;
        }

        .section-title02 .sub-title .title-border.white:before {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            content: "";
        }

@media screen and (max-width: 991px) {
    .section-title02 .sub-title .title-border {
        padding-top: 17px;
        font-size: 1.1rem;
    }

    .section-title02 .sub-title h4 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 575px) {
    .section-title02 .sub-title .title-border {
        padding-top: 17px;
        font-size: 0.8rem;
    }

        .section-title02 .sub-title .title-border:before {
            left: 14px;
        }

    .section-title02 .sub-title h4 {
        font-size: 1.5rem;
    }

    .section-title02 .sub-title .title-border {
        padding-left: 12px;
    }
}
/* ===================================
    Page title
====================================== */
.page-title-section {
    padding: 180px 0 100px 0;
}

    .page-title-section.style1 {
        padding: 150px 0;
    }

    .page-title-section h1 {
        font-size: 148px;
        line-height: 1;
        font-weight: 600;
        text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        color: #ffffff;
        margin-bottom: 15px;
        position: relative;
        z-index: 9;
        word-wrap: break-word;
    }

    .page-title-section ul {
        margin: 0;
        padding: 0 0 0 175px;
        list-style: none;
        display: inline-block;
        line-height: 1.3;
        vertical-align: middle;
        position: relative;
        z-index: 1;
    }

        .page-title-section ul:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            background-color: #fe7c02;
            width: 155px;
            height: 1px;
            transform: translateY(-50%);
        }

        .page-title-section ul li {
            display: inline-block;
            position: relative;
            vertical-align: middle;
        }

            .page-title-section ul li:last-child {
                color: #fe7c02;
                opacity: 0.75;
                font-size: 18px;
                font-weight: 600;
                text-transform: uppercase;
                vertical-align: middle;
                letter-spacing: 0.5px;
                display: inline-block;
                padding-right: 0;
                margin-right: 0;
            }

                .page-title-section ul li:last-child a {
                    color: #fe7c02;
                    opacity: 0.9;
                    font-size: 18px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }

            .page-title-section ul li:after {
                content: '';
                font-weight: 700;
                vertical-align: middle;
                background-color: #fe7c02;
                width: 10px;
                padding: 0 5px 0 10px;
                height: 1px;
                display: inline-block;
                margin: 0 15px;
            }

            .page-title-section ul li:last-child:after {
                content: none;
            }

            .page-title-section ul li a {
                color: #fe7c02;
                font-size: 18px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 170px 0 90px 0;
    }

        .page-title-section h1 {
            font-size: 130px;
            margin-bottom: 10px;
        }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 100px 0 80px 0;
    }

        .page-title-section.style1 {
            padding: 130px 0;
        }

        .page-title-section h1 {
            font-size: 110px;
        }

        .page-title-section ul {
            padding: 0 0 0 150px;
        }

            .page-title-section ul:before {
                width: 130px;
            }

            .page-title-section ul li:last-child {
                font-size: 16px;
            }

                .page-title-section ul li:last-child a {
                    font-size: 16px;
                }

            .page-title-section ul li a {
                font-size: 16px;
            }
}

@media screen and (max-width: 767px) {
    .page-title-section {
        padding: 40px 0 40px 0;
    }

        .page-title-section h1 {
            font-size: 80px;
        }

        .page-title-section ul {
            padding: 0 0 0 130px;
        }

            .page-title-section ul:before {
                width: 110px;
            }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 25px 0 25px 0;
    }

        .page-title-section.style1 {
            padding: 100px 0;
        }

        .page-title-section h1 {
            font-size:40px;
        }

        .page-title-section ul {
            padding: 0;
        }

            .page-title-section ul:before {
                content: none;
            }
}
/*============================== 
* Cards * 
================================ */
/*site-blog*/
.site-blog {
    border: 0;
    transition: all 0.3s ease;
    background: transparent;
}

    .site-blog .card-body {
        padding: 0;
        padding-top: 30px;
        transition: all 0.3s ease;
    }

    .site-blog .img-hover {
        position: relative;
    }

        .site-blog .img-hover .icon {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 20;
            opacity: 0;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

            .site-blog .img-hover .icon a {
                display: inline-block;
            }

            .site-blog .img-hover .icon i {
                background-color: #fe7c02;
                display: inline-flex;
                color: #fff;
                justify-content: center;
                align-items: center;
                height: 100px;
                width: 100px;
                border-radius: 50%;
                transform: rotate(-45deg);
                font-size: 17px;
            }

.site-blog .img-hover .blog-tag {
    position: absolute;
    top: 30px;
    right: 20px;
}

    .site-blog .img-hover .blog-tag a {
        border: 1px solid #fff;
        border-radius: 0;
        margin: 2px;
        display: inline-block;
        color: #2e3542;
        background-color: #fff;
    }

        .site-blog .img-hover .blog-tag a:hover, .card-blog .img-hover .blog-tag a:active, .card-blog .img-hover .blog-tag a:focus {
            border: 1px solid #fe7c02;
            background-color: #fe7c02;
            color: #fff;
        }

.site-blog:hover .img-hover .icon {
    opacity: 1;
}

.site-blog .img-hover {
    display: block;
    position: relative;
    overflow: hidden;
}

    .site-blog .img-hover img {
        display: block;
        position: relative;
        overflow: hidden;
        transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

.site-blog:hover .img-hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 1399px) {
    .site-blog .img-hover .icon i {
        height: 80px;
        width: 80px;
    }
}

/*------* site-team *------*/


.site-team {
    border: 0;
    border-radius: 0;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    position: relative;
    overflow: hidden;
    display: block
}

    .site-team .img-hover {
        position: relative;
        overflow: hidden;
        transition: all 400ms ease-in-out 0s;
        -webkit-transition: all 400ms ease-in-out 0s;
        -moz-transition: all 400ms ease-in-out 0s;
        -o-transition: all 400ms ease-in-out 0s;
        -ms-transition: all 400ms ease-in-out 0s
    }

        .site-team .img-hover img {
            position: relative;
            overflow: hidden;
            transform: scale(1.05);
            transition: all 400ms ease-in-out 0s;
            -webkit-transition: all 400ms ease-in-out 0s;
            -moz-transition: all 400ms ease-in-out 0s;
            -o-transition: all 400ms ease-in-out 0s;
            -ms-transition: all 400ms ease-in-out 0s
        }

        .site-team .img-hover:before {
            position: absolute;
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgb(254 124 2 / 64%);
            opacity: 0;
            transition: all 400ms ease-in-out 0s;
            -webkit-transition: all 400ms ease-in-out 0s;
            -moz-transition: all 400ms ease-in-out 0s;
            -o-transition: all 400ms ease-in-out 0s;
            -ms-transition: all 400ms ease-in-out 0s;
            z-index: 1
        }

    .site-team:hover .img-hover:before {
        opacity: 1
    }

    .site-team:hover .img-hover img {
        transform: scale(1.05) translateX(2%);
        -webkit-transform: scale(1.05) translateX(2%);
        -moz-transform: scale(1.05) translateX(2%);
        -ms-transform: scale(1.05) translateX(2%);
        -o-transform: scale(1.05) translateX(2%)
    }

    .site-team .team-social {
        position: absolute;
        top: auto;
        bottom: 15px;
        left: 15px;
        right: auto;
        margin: auto;
        opacity: 0;
        z-index: 1;
        transition: all 400ms ease-in-out 0s;
        -webkit-transition: all 400ms ease-in-out 0s;
        -moz-transition: all 400ms ease-in-out 0s;
        -o-transition: all 400ms ease-in-out 0s;
        -ms-transition: all 400ms ease-in-out 0s
    }

        .site-team .team-social a {
            color: #fff;
            padding: 6px;
            font-size: 20px;
            display: inline-block;
            width: 40px;
            height: 40px;
            text-align: center
        }

    .site-team:hover .team-social {
        opacity: 1
    }

    .site-team .card-body {
        padding: 20px 0 0 0
    }

/*------* Portfolio *------ */
/* popup gallery */
.lg-backdrop {
    z-index: 99999;
}

.lg-outer {
    z-index: 999999;
}

    .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
        border-color: #fe7c02;
    }

.lg-progress-bar .lg-progress {
    background-color: #fe7c02;
}

.lg-backdrop.in {
    opacity: 0.85;
}

/*project-section*/
.project-section .portfolio-item {
    overflow: hidden;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .project-section .portfolio-item .img-hover {
        position: relative;
        overflow: hidden;
        transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

        .project-section .portfolio-item .img-hover img {
            display: block;
            position: relative;
            overflow: hidden;
            transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

    .project-section .portfolio-item:hover .img-hover img, .project-section .portfolio-item:active .img-hover img, .project-section .portfolio-item:focus .img-hover img {
        transform: scale(1.1);
        transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .project-section .portfolio-item .img-hover .icon {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
        opacity: 0;
        transition: all 0.3s ease;
        white-space: nowrap;
        cursor: pointer;
    }

        .project-section .portfolio-item .img-hover .icon i {
            background-color: #fe7c02;
            display: inline-flex;
            color: #fff;
            justify-content: center;
            align-items: center;
            height: 100px;
            width: 100px;
            border-radius: 50%;
            transform: rotate(-45deg);
            font-size: 17px;
        }

    .project-section .portfolio-item:hover .img-hover .icon, .project-section .portfolio-item:active .img-hover .icon, .project-section .portfolio-item:focus .img-hover .icon {
        opacity: 1;
    }

@media screen and (max-width: 1199px) {
    .project-section .portfolio-item .img-hover .icon i {
        height: 75px;
        width: 75px;
    }
}

@media screen and (max-width: 991px) {
    .project-section .portfolio-item .img-hover .icon i {
        height: 62px;
        width: 62px;
    }
}

@media screen and (max-width: 767px) {
    .project-section .portfolio-item .img-hover .icon i {
        height: 55px;
        width: 55px;
    }
}
/*------* Pagination * ------ */
/*pagination*/
.pagination {
    border-radius: 0;
}

    .pagination ul {
        display: inline-block;
        *display: inline;
        *zoom: 1;
        margin: 0 auto;
        padding: 0;
    }

    .pagination li {
        display: inline;
    }

    .pagination a {
        float: left;
        padding: 0 16px;
        line-height: 40px;
        text-decoration: none;
        border: 1px solid #dbdbdb;
        border-left-width: 0;
        background: #fff;
    }

        .pagination a:hover {
            background-color: #232323;
            color: #fff;
        }

    .pagination .active a {
        background-color: #f7f7f7;
        color: #999;
        cursor: default;
    }

    .pagination .disabled span {
        color: #999;
        background-color: transparent;
        cursor: default;
    }

    .pagination .disabled a {
        color: #999;
        background-color: transparent;
        cursor: default;
    }

        .pagination .disabled a:hover {
            color: #999;
            background-color: transparent;
            cursor: default;
        }

    .pagination li:first-child a {
        border-left-width: 1px;
    }

.page-item:not(:first-child) .page-link {
    margin-left: 0;
}

/*------* Owl Carousel * ------ */
/*portfolio-carousel-one*/
.portfolio-carousel-one {
    position: relative;
    overflow: hidden;
}

    .portfolio-carousel-one:before {
        content: '';
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0;
        z-index: 1;
        background-image: linear-gradient(-90deg, transparent 75%, #063232 100%);
        width: 100%;
        height: 100%;
    }

    .portfolio-carousel-one:after {
        content: '';
        position: absolute;
        top: 0px;
        bottom: 0px;
        right: 0;
        z-index: 1;
        background-image: linear-gradient(90deg, transparent 75%, #063232 100%);
        width: 100%;
        height: 100%;
    }

/*------
 *    Scroll Section------ */
.scroll-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* animation track */
.scroll-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

/* pause on hover */
.pause-on-hover:hover, .pause-on-hover:active, .pause-on-hover:focus {
    animation-play-state: paused;
}

/* scroll direction */
.scroll-left {
    animation-name: scroll-left;
}

.scroll-right {
    animation-name: scroll-right;
}

/* grouping taglines together */
.scroll-group {
    display: inline-flex;
    white-space: nowrap;
}

/* single scroll item styling */
.scroll-item {
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

    .scroll-item.with-img {
        min-width: 100px;
        height: auto;
        text-align: center;
        align-items: center;
        justify-content: center;
        display: inline-flex;
    }

        .scroll-item.with-img img {
            vertical-align: middle;
        }

/* keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}
/* speed control */
.scroll-speed-1 {
    animation-duration: 10s;
}

/* Ultra Fast */
.scroll-speed-2 {
    animation-duration: 15s;
}

/* Extra Fast */
.scroll-speed-3 {
    animation-duration: 20s;
}

/* Fast */
.scroll-speed-4 {
    animation-duration: 30s;
}

/* Medium */
.scroll-speed-5 {
    animation-duration: 40s;
}

/* Slow */
.scroll-speed-6 {
    animation-duration: 60s;
}

/* Super Slow */
.scroll-speed-7 {
    animation-duration: 80s;
}

/* Ultra Slow */
.scroll-speed-8 {
    animation-duration: 100s;
}

/* Glacial */
.scroll-speed-9 {
    animation-duration: 120s;
}

/* Frozen */
/*scroll-dot*/
.scroll-dot {
    height: 20px;
    width: 20px;
    background-color: #fe7c02;
    border-radius: 50%;
}

 

.scroll-overlay {
    position: relative;
}

    .scroll-overlay::after {
        content: '';
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: -30px;
        right: -30px;
        pointer-events: none;
        z-index: 3;
    }

 
/*============================== 
* Accordion *
 ================================ */
/*accordion-style*/
.accordion .card {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
    border: 0;
    border-radius: 0;
}

    .accordion .card:last-child {
        margin-bottom: 0;
    }

.accordion .card-header {
    border: 0;
    padding: 0;
    background: none;
}

.accordion .accordion-collapse {
    border: none;
}

.accordion .accordion-button {
    border-bottom: none;
    color: #fff;
    font-size: 18px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    box-shadow: none;
    font-weight: 500;
    padding: 20px 60px 20px 20px;
    text-decoration: none;
    background: #063232;
    border: 1px solid transparent;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

    .accordion .accordion-button:hover {
        text-decoration: none;
    }

    .accordion .accordion-button.collapsed {
        background: #fff;
        color: #0C2340;
        border: 1px solid #ededed;
        border-radius: 5px;
    }

        .accordion .accordion-button.collapsed:after {
            background: #063232;
            border: none;
            content: "+";
            right: 20px;
            left: inherit;
            font-size: 18px;
            transform: none;
            width: 25px;
            height: 25px;
            line-height: 20px;
            top: 18px;
            border-radius: 5px;
            text-align: center;
            color: #fff;
        }

    .accordion .accordion-button:after {
        background: #fff;
        border: none;
        content: "-";
        right: 20px;
        border-radius: 5px;
        left: inherit;
        font-size: 18px;
        border: 1px solid #fff;
        transform: none;
        width: 25px;
        height: 25px;
        line-height: 21px;
        top: 18px;
        position: absolute;
        color: #27ae60;
        text-align: center;
    }

.accordion .card-body {
    color: #0C2340;
    font-size: 16px;
    padding: 20px 25px;
    line-height: 28px;
    text-align: left;
    border-top: 0;
    border-bottom: 1px solid #ededed;
    border-left: 1px solid #ededed;
    border-right: 1px solid #ededed;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

@media screen and (max-width: 991px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
        font-size: 16px;
    }

        .accordion .accordion-button.collapsed:after, .accordion .accordion-button:after {
            right: 15px;
            font-size: 16px;
            height: 22px;
            line-height: 18px;
            width: 22px;
            top: 13px;
        }

    .accordion .card-body {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 575px) {
    .accordion .accordion-button {
        padding: 15px 50px 15px 15px;
    }
}
/* style01 */
.site-accordion .accordion-button.collapsed {
    background: transparent;
    color: #063232;
    border-radius: 0;
}

    .site-accordion .accordion-button.collapsed:after {
        background: #fff;
        color: #fe7c02;
    }

.site-accordion .card-body {
    border-radius: 0;
}

.site-accordion .accordion-button:after {
    line-height: 20px;
}

.accordion .accordion-button:after {
    color: #063232;
}

.site-accordion .accordion-button {
    background: #063232;
    border: 1px solid #ededed;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
}

/*============================== 
* Pages * 
================================ */
/* count-down */
.countdown {
    padding: 0;
}

    .countdown li {
        background: transparent;
        display: inline-block;
        text-align: center;
        min-width: 261px;
        overflow: hidden;
        margin-right: 10px;
        padding: 15px 10px;
        position: relative;
        border-radius: 3px;
    }

        .countdown li:last-child {
            margin-right: 0;
        }

        .countdown li span {
            font-size: 96px;
            font-weight: 500;
            text-align: center;
            color: #ffffff;
            line-height: normal;
            position: relative;
        }

        .countdown li p.timeRefDays, .countdown li p.timeRefHours, .countdown li p.timeRefMinutes, .countdown li p.timeRefSeconds {
            font-size: 13px;
            font-weight: 500;
            color: #ffffff;
            margin: 0;
            z-index: 2;
            position: relative;
            padding: 0;
            text-transform: capitalize;
        }

@media screen and (max-width: 1599px) {
    .countdown li {
        min-width: 238px;
    }

        .countdown li span {
            font-size: 84px;
        }
}

@media screen and (max-width: 1199px) {
    .countdown li {
        min-width: 209px;
    }

        .countdown li span {
            font-size: 67px;
        }
}

@media screen and (max-width: 991px) {
    .countdown li {
        min-width: 175px;
    }

        .countdown li span {
            font-size: 62px;
        }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 128px;
    }

        .countdown li span {
            font-size: 54px;
        }
}

@media screen and (max-width: 575px) {
    .countdown li {
        min-width: 127px;
    }

        .countdown li span {
            font-size: 44px;
        }
}
 

.contact-map {
    width: 100%;
    height: 550px;
    vertical-align: top;
    border: 0;
}

/*--------- * Blog *    --------- */
/* sidebar */
.sidebar .widget {
    position: relative;
    display: block;
    background-color: #fff;
}

.widget-title {
    position: relative;
    display: block;
    background-color: #f4f5f4;
    border: 0.0625rem solid rgba(220, 224, 229, 0.6);
    padding: 20px 30px;
    z-index: 1;
}

    .widget-title h5 {
        position: relative;
        text-transform: uppercase;
        font-size: 16px;
    }

.widget-content {
    border: 0.0625rem solid rgba(220, 224, 229, 0.6);
    border-width: 0 1px 1px 1px;
    position: relative;
    padding: 30px;
}

.sidebar .menu li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

    .sidebar .menu li:last-child {
        margin-bottom: 0;
    }

    .sidebar .menu li a {
        position: relative;
        display: inline-block;
        width: 100%;
        font-size: 14px;
        line-height: 26px;
        font-weight: 600;
        color: #1e2434;
        text-transform: uppercase;
        background-color: #fff;
        padding: 17px 20px 17px 20px;
        border: 1px solid #e7e3e3;
    }

        .sidebar .menu li a .cat-count {
            color: #fe7c02;
        }

        .sidebar .menu li a:hover, .sidebar .menu li a:active, .sidebar .menu li a:focus {
            color: #fff;
            background-color: #fe7c02;
        }

            .sidebar .menu li a:hover .cat-count, .sidebar .menu li a:active .cat-count, .sidebar .menu li a:focus .cat-count {
                color: #fff;
            }

/*blog-sidebar-banner*/
.sidebar .banner-wrapper img {
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 102% 87%, 0% 100%);
}

.sidebar .banner-wrapper .icon-boxs i {
    position: absolute;
    top: -60px;
    text-align: center;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 36px;
    border-radius: 50%;
    background: #fe7c02;
    line-height: 80px;
}

.sidebar .input-group .form-control {
    min-height: 50px;
}

.sidebar .blog-tags a {
    border: 1px solid #063232;
    background-color: #fff;
    padding: 7px 25px;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 10px 0 0;
    display: inline-block;
    border-radius: .3rem;
}

    .sidebar .blog-tags a:hover {
        border: 1px solid #fe7c02;
        background-color: #fe7c02;
        color: #fff;
    }

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-listing {
    margin: -0.5rem 0 0 0;
    padding: 0;
    list-style: none;
}

.cat-item {
    margin-top: 15px;
    border-top: 1px solid #efefef;
    padding-top: 15px;
    list-style: none;
    word-wrap: break-word;
}

    .cat-item:first-child {
        margin-top: 0;
        border-top: 0;
        padding-top: 0;
    }

    .cat-item ul.children {
        margin-top: 0.5rem;
        margin-left: 10px;
    }

.wp-tag-cloud li {
    display: inline-block;
}

.wp-tag-cloud a {
    border: 1px solid #fe7c02;
    padding: 7px 21px;
    font-size: 14px !important;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}

    .wp-tag-cloud a:hover {
        background-color: #063232;
        border-color: #063232;
        color: #fff;
    }

.sidebar .widget {
    margin-bottom: 2rem;
}

    .sidebar .widget:last-child {
        margin-bottom: 0;
    }

.sidebar .widget_custom_html {
    padding: 0;
}

.sidebar .widget:last-child {
    margin-bottom: 0 !important;
}

.sidebar .widget p:last-child {
    margin-bottom: 0;
}

/* blog comments */
.blog-comment:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: #063232;
}

/*blog-details01*/
.blog-details01 .recent-comment .box {
    background-color: #f4f5f4;
    padding: 40px;
    width: 100%;
}

/* post reply */
.author-thumb img {
    border-radius: 50%;
    width: 80px;
}

.comment-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
}

    .comment-inner .avatar {
        width: 65px;
        min-width: 65px;
        margin-right: 20px;
        display: inline-block;
        border-radius: 50%;
    }

    .comment-inner .comment-box {
        overflow: hidden;
        position: relative;
        margin-left: 0;
        flex-grow: 1;
        vertical-align: top;
        display: inline-block;
    }

        .comment-inner .comment-box p:last-child {
            margin-bottom: 0;
        }

.comment-reply-link {
    color: #fe7c02;
    background: rgba(227, 87, 43, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 18px;
    display: inline-block;
}

    .comment-reply-link:hover, .comment-reply-link:active, .comment-reply-link:focus {
        color: #fff;
        background: #fe7c02;
    }

a#cancel-comment-reply-link {
    color: #fe7c02;
    background: rgba(227, 87, 43, 0.1);
    padding: 9px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    float: right;
    margin: 6px 0;
}

    a#cancel-comment-reply-link:hover, a#cancel-comment-reply-link:active, a#cancel-comment-reply-link:focus {
        color: #fff;
        background: #fe7c02;
    }

/* tags */
.tags a {
    border: 1px solid #063232;
    padding: 7px 21px;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}

    .tags a:hover, .tags a:active, .tags a:focus {
        border-color: #fe7c02;
        background: #fe7c02;
        color: #fff;
    }

/*--------------* Others *-------------- */
/* site-testimonials */
.site-testimonials .left-content {
    margin-bottom: 15%;
}

    .site-testimonials .left-content .left-count {
        margin-right: 10px;
        color: #fff;
    }

    .site-testimonials .left-content .start-content {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 30px;
        letter-spacing: -2px;
        background-color: #161616;
        font-size: 16px;
        color: #fe7c02;
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .site-testimonials .left-content span {
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
    }
 

.site-testimonials .owl-carousel .owl-stage-outer {
    height: 320px;
}
@media screen and (max-width: 991px) {
    .site-testimonials .left-content {
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 767px) {
    .site-testimonials .left-content {
        margin-bottom: 4%;
    }

        .site-testimonials .left-content .start-content {
            font-size: 13px;
        }

        .site-testimonials .left-content span {
            font-size: 11px;
        }
}
/* site-testimonial-carousel*/
.site-testimonial-carousel .owl-nav {
    margin-top: 0;
    position: absolute;
    left: -104%;
    bottom: 0;
}

.site-testimonial-carousel.owl-carousel .owl-nav button.owl-prev, .site-testimonial-carousel.owl-carousel .owl-nav button.owl-next {
    background-color: #fe7c02;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    border: 1px solid #fe7c02;
}

    .site-testimonial-carousel.owl-carousel .owl-nav button.owl-prev span, .site-testimonial-carousel.owl-carousel .owl-nav button.owl-next span {
        color: #fff;
        font-size: 18px;
    }

    .site-testimonial-carousel.owl-carousel .owl-nav button.owl-prev:hover, .site-testimonial-carousel.owl-carousel .owl-nav button.owl-next:hover {
        background: #fff;
        color: #fe7c02;
    }

p {
    color: #000;
}

@media screen and (max-width: 1199px) {
    .site-testimonial-carousel .owl-nav {
        left: 0;
        bottom: -50%;
    }

    .site-testimonial-carousel.owl-carousel .owl-nav button.owl-prev, .site-testimonial-carousel.owl-carousel .owl-nav button.owl-next {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

        .site-testimonial-carousel.owl-carousel .owl-nav button.owl-prev span, .site-testimonial-carousel.owl-carousel .owl-nav button.owl-next span {
            font-size: 16px;
        }
}
/*.site-client*/
.site-client .client-logo {
    opacity: 1;
    -webkit-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -moz-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -ms-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    -o-transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
    transition: all 0.4s cubic-bezier(0.2, 0, 0.3, 1);
}

.site-client:hover .client-logo {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: .6;
}

.site-client .client-logo:hover {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
}

/* site-about */
.site-about .left-content .exp-no {
    width: 110px;
    height: 110px;
    background-color: #fe7c02;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.site-about .about-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(9, 184, 80, 0.2);
    color: #fe7c02;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@keyframes icon_bounce {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}


/*site-service*/
.site-service .mt-25 {
    margin-top: 20.5rem;
}

.site-service .img-group, .site-service .img-group-bottom {
    width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;
}

    .site-service .img-group .services-img-left, .site-service .img-group-bottom .services-img-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        opacity: 0;
        transition: all 0.8s;
        z-index: -1;
    }

        .site-service .img-group .services-img-left.active, .site-service .img-group-bottom .services-img-right.active {
            position: relative;
            opacity: 1;
            z-index: 1;
            transition: opacity 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

.site-service .services-content .item {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

    .site-service .services-content .item:last-child {
        border: 0;
    }

    .site-service .services-content .item .services-item {
        display: flex;
        align-items: center;
    }

    .site-service .services-content .item a {
        color: #fff;
        font-weight: 600;
        font-size: 50px;
        line-height: 1;
        letter-spacing: -1px;
        position: relative;
        margin-bottom: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 60px;
        display: inline-block;
        overflow: hidden;
    }

    .site-service .services-content .item.active a {
        -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.2) 30%, #000 50%, rgba(0, 0, 0, 0.2) 70%);
        -webkit-mask-size: 200%;
        animation: shine 3s infinite;
        transition: 0.35s;
    }

    .site-service .services-content .item span {
        transition: all 0.3s;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        color: #1C3F39;
        color: #fff;
    }

    .site-service .services-content .item i {
        display: block;
        text-align: center;
        color: #fff;
        transition: all 0.3s;
    }

    .site-service .services-content .item.active a, .site-service .services-content .item.active span {
        color: #fff;
    }

    .site-service .services-content .item.active i {
        color: #fff;
        transform: rotate(-45deg);
    }

/* Site Animation */
@keyframes shine {
    0% {
        -webkit-mask-position: 150%;
    }

    100% {
        -webkit-mask-position: -50%;
    }
}
/* Responsive Styles */
@media screen and (max-width: 1599px) {
    .site-service .services-content .item a {
        font-size: 45px;
        padding: 20px 48px;
    }
}

@media screen and (max-width: 1399px) {
    .site-service .services-content .item a {
        font-size: 43px;
        padding: 10px 37px;
    }

    .site-service .mt-25 {
        margin-top: 14.5rem;
    }
}

@media screen and (max-width: 1199px) {
    .site-service .services-content .item a {
        font-size: 30px;
        padding: 10px 37px;
        line-height: 40px;
    }
}

@media screen and (max-width: 991px) {
    .site-service .img-group .services-img-left.active, .site-service .img-group-bottom .services-img-right.active {
        display: flex;
        justify-content: center;
    }

    .site-service .mt-25 {
        margin-top: 0rem;
    }

    .site-service .services-content .item a {
        line-height: 55px;
    }
}

@media screen and (max-width: 575px) {
    .site-service .services-content .item a {
        font-size: 27px;
        padding: 10px 20px;
        line-height: 50px;
    }
}

/* site-counter */
.site-counter .counter-block .counter-bottom {
    padding: 32px;
}

    .site-counter .counter-block .counter-bottom .bottom-img {
        border: 1px solid rgba(6, 50, 50, 0.2);
        border-radius: 50%;
        margin-bottom: 16px;
        width: 63px;
        height: 63px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@media screen and (max-width: 1199px) {
    .site-counter .counter-block .counter-bottom {
        padding: 32px 25px;
    }
}

@media screen and (max-width: 991px) {
    .site-counter .counter-block .counter-bottom {
        padding: 25px 20px;
    }
}
/*site-counter*/
.site-counter .counter-box {
    display: flex;
    justify-content: space-between;
    padding: 50px 60px;
    background-color: #fff;
    flex-direction: column;
    border-radius: 0;
}

    .site-counter .counter-box .sub-text {
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -1px;
        color: #2e3542;
        position: relative;
        padding-left: 64px;
    }

        .site-counter .counter-box .sub-text:before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            background-color: #063232;
            width: 42px;
            height: 1px;
        }

        .site-counter .counter-box .sub-text.primary {
            color: #fe7c02;
        }

            .site-counter .counter-box .sub-text.primary:before {
                background-color: #fe7c02;
            }

    .site-counter .counter-box .counter-text {
        font-size: 100px;
        font-weight: 700;
        letter-spacing: -2px;
        line-height: 1;
    }

.site-counter .counter-circle {
    width: 170px;
    height: 170px;
    color: white;
    padding: 14px;
    font-weight: 600;
    position: absolute;
    border-radius: 50%;
    background: #fff;
    right: 60px;
    top: 65px;
}

    .site-counter .counter-circle .coloring {
        fill: black;
    }

    .site-counter .counter-circle svg {
        -webkit-animation: rotated_circle 12s linear infinite;
        animation: rotated_circle 12s linear infinite;
    }

    .site-counter .counter-circle .counter-icon {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
        text-align: center;
        border-radius: 50%;
        background: #fe7c02;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media screen and (max-width: 1399px) {
    .site-counter .counter-box {
        padding: 40px 55px;
    }

        .site-counter .counter-box .counter-text {
            font-size: 84px;
        }
}

@media screen and (max-width: 1199px) {
    .site-counter .counter-box {
        padding: 46px 37px;
    }

        .site-counter .counter-box .counter-text {
            font-size: 74px;
        }

        .site-counter .counter-box .sub-text {
            font-size: 22px;
        }
}
/*site-pricing*/
.site-pricing .pricing-plan {
    position: relative;
    z-index: 0;
    padding: 50px 60px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

    .site-pricing .pricing-plan p {
        color: #063232;
        font-size: 20px;
    }

    .site-pricing .pricing-plan h3 {
        font-size: 80px;
        line-height: 112.5%;
        letter-spacing: -2px;
        margin-bottom: 32px;
        transition: all 0.3s ease-in-out;
    }

    .site-pricing .pricing-plan .list-style li {
        margin-bottom: 10px;
        font-weight: 400;
        font-size: 20px;
        color: #063232;
        position: relative;
        padding-left: 32px;
        transition: all 0.5s ease;
    }

        .site-pricing .pricing-plan .list-style li:last-child {
            margin-bottom: 0;
        }

        .site-pricing .pricing-plan .list-style li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            position: absolute;
            font-weight: 800;
            top: 0;
            left: 0;
            color: #063232;
            transition: all 0.5s ease;
        }

        .site-pricing .pricing-plan .list-style li.no:before {
            content: "\f00d";
            font-weight: 800;
            color: #fe7c02;
        }

    .site-pricing .pricing-plan:hover h4, .site-pricing .pricing-plan:hover p, .site-pricing .pricing-plan:hover h3 {
        color: #fff;
    }

    .site-pricing .pricing-plan:hover .list-style li {
        color: #fff;
    }

        .site-pricing .pricing-plan:hover .list-style li:before {
            color: #fff;
        }

@media screen and (max-width: 1399px) {
    .site-pricing .pricing-plan {
        padding: 40px 42px;
    }

        .site-pricing .pricing-plan h3 {
            font-size: 62px;
            margin-bottom: 20px;
        }

        .site-pricing .pricing-plan .list-style li {
            font-size: 18px;
        }
}

@media screen and (max-width: 991px) {
    .site-pricing .pricing-plan {
        padding: 39px 33px;
    }

        .site-pricing .pricing-plan h3 {
            font-size: 54px;
            margin-bottom: 13px;
        }

        .site-pricing .pricing-plan p {
            font-size: 18px;
        }

        .site-pricing .pricing-plan .list-style li {
            font-size: 16px;
            margin-bottom: 7px;
        }
}

@media screen and (max-width: 575px) {
    .site-pricing .pricing-plan {
        padding: 30px 30px;
    }

        .site-pricing .pricing-plan .btn-site {
            padding: 12px 35px !important;
        }

        .site-pricing .pricing-plan h3 {
            font-size: 46px;
            margin-bottom: 9px;
        }
}

 

 
    /* .process-section*/
    .process-section .process.process-container {
        counter-reset: step;
    }

    .process-section .process .process-wrap .process-item .process-box .number {
        display: block;
        transition: all 0.5s ease;
        font-family: sans-serif;
    }

        .process-section .process .process-wrap .process-item .process-box .number:before {
            counter-increment: step;
            content: counter(step,decimal-leading-zero) ". ";
            color: #fff;
            font-weight: 700;
            font-size: 95px;
            line-height: 1;
            letter-spacing: -0.18px;
            transition: all 0.5s ease;
            text-fill-color: transparent;
            text-stroke-color: rgba(255, 255, 255, 0.8);
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
            -webkit-text-stroke-width: 1px;
            stroke-width: 1px;
        }

    .process-section .process .process-wrap {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 54px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 208px;
        flex: 0 0 auto;
        position: relative;
        z-index: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

        .process-section .process .process-wrap .process-item .process-box {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 208px;
            position: relative;
            transition: all 0.3s ease-in-out;
        }
@media screen and (max-width: 1024px) {
    .process-section .process .process-wrap .process-item .process-box {
        gap: 50px;
    }
}
    @media screen and (max-width: 991px) {
        .process-section .process .process-wrap .process-item .process-box {
            gap: 40px;
        }
         
    }
@media screen and (min-width: 768px) and (max-width: 991px) {
    .mob-mb1 {
        margin-bottom: 1rem;
    }
    .process-section .process .process-wrap .process-item .process-box h3 {
        font-size: 1.3rem;
    }
}

    @media screen and (max-width: 767px) {
        .process-section .process .process-wrap {
            padding: 40px 30px;
        }

            .process-section .process .process-wrap .process-item .process-box {
                gap: 50px;
            }

                .process-section .process .process-wrap .process-item .process-box .number:before {
                    font-size: 75px;
                }
    }
@media screen and (max-width: 575px) {
    .process-section .process .process-wrap .process-item .process-box {
        gap: 20px;
    }
}
    /* hover overlay */
    .hover-overlay {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #063232;
        top: 0;
        left: 0;
        pointer-events: none;
        opacity: 0;
        transition: none;
        transform-origin: center;
        z-index: -1;
    }

    .primary .hover-overlay {
        background: #fe7c02;
    }

/* contact card */
.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background: #fe7c02;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    color: #ffffff;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card .contact-tag a {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #063232;
    border: 1px solid rgba(31, 49, 48, 0.1);
    border-radius: 4px;
    padding: 2px 16px;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 4px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

    .contact-card .contact-tag a:hover {
        background: #fe7c02;
        color: #fff;
    } 

    /* animation-up-down */
    .animation-up-down {
        animation: float 2s linear 0.5s infinite alternate both;
    }

    @-webkit-keyframes rotation {
        from {
            -webkit-transform: rotate(0);
        }

        to {
            -webkit-transform: rotate(359deg);
        }
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(5px);
        }

        100% {
            transform: translateY(10px);
        }
    }
    /*==============================
 * Page Navigation *
  ================================ */
    .page-navigation {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        background-color: #f4f5f4;
    }

    .prev-page, .next-page {
        position: relative;
        width: 50%;
        max-width: 350px;
        margin: 10px;
    }

        .prev-page:before, .next-page:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
            transform: scale(1.04, 1.12);
            transition: .3s ease-in-out;
            pointer-events: none;
        }

        .prev-page .page-info > a, .next-page .page-info > a {
            display: flex;
            align-items: center;
            position: relative;
            padding: 16px 20px;
            min-height: 110px;
            transition: 0.8s;
        }

        .prev-page .page-info .image-prev, .prev-page .page-info .image-next {
            position: relative;
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            vertical-align: middle;
            transition: inherit;
            overflow: hidden;
        }

        .next-page .page-info .image-prev, .next-page .page-info .image-next {
            position: relative;
            flex-shrink: 0;
            width: 70px;
            height: 70px;
            vertical-align: middle;
            transition: inherit;
            overflow: hidden;
        }

        .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
            display: inline-block;
            position: relative;
            max-width: 220px;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 600;
            word-wrap: break-word;
            vertical-align: middle;
            transition: 0.45s;
        }

        .next-page .page-info .prev-title, .next-page .page-info .next-title {
            display: inline-block;
            position: relative;
            max-width: 220px;
            font-size: 16px;
            line-height: 1.5;
            font-weight: 600;
            word-wrap: break-word;
            vertical-align: middle;
            transition: 0.45s;
        }

        .prev-page .page-info .prev-title:empty, .prev-page .page-info .next-title:empty {
            display: none;
        }

        .next-page .page-info .prev-title:empty, .next-page .page-info .next-title:empty {
            display: none;
        }

        .prev-page:hover:before, .next-page:hover:before {
            background-color: white;
            transform: scale(1);
            box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
        }

        .prev-page a {
            justify-content: flex-start;
            text-align: left;
        }

            .prev-page a:hover .image-prev:after {
                visibility: visible;
                opacity: 1;
            }

            .prev-page a:hover .image-prev:before {
                visibility: visible;
                opacity: 1;
                margin-left: 0;
            }

        .prev-page .image-prev {
            margin-right: 20px;
        }

            .prev-page .image-prev:after {
                background-color: #fe7c02;
            }

        .next-page .image-next:after {
            background-color: #fe7c02;
        }

        .prev-page .image-prev:before {
            display: block;
            position: absolute;
            z-index: 2;
            left: 0;
            right: 0;
            margin-left: 20px;
            font-size: 21px;
            line-height: 70px;
            color: #fff;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
        }

        .prev-page .image-prev:after {
            content: '';
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease-in-out;
        }

    .next-page {
        margin-left: auto;
    }

        .next-page a {
            justify-content: flex-end;
            text-align: right;
        }

            .next-page a:hover .image-next:after {
                visibility: visible;
                opacity: 1;
            }

            .next-page a:hover .image-next:before {
                visibility: visible;
                opacity: 1;
                margin-right: 0;
            }

        .next-page .image-next {
            margin-left: 20px;
        }

            .next-page .image-next:before {
                display: block;
                position: absolute;
                z-index: 2;
                left: 0;
                right: 0;
                margin-right: 20px;
                content: "\e64a";
                font-size: 21px;
                line-height: 70px;
                color: #fff;
                text-align: center;
                opacity: 0;
                visibility: hidden;
                transition: .3s ease-in-out;
                transform: scaleX(-1);
            }

            .next-page .image-next:after {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                opacity: 0;
                visibility: hidden;
                transition: .3s ease-in-out;
            }

        .next-page .next-title {
            text-align: right;
        }

    .prev-link-page-info > span, .next-link-page-info > span {
        display: block;
    }

    .prev-link-page-info .date-details, .next-link-page-info .date-details {
        font-size: 14px;
        letter-spacing: .025em;
        line-height: 20px;
        margin-bottom: -2px;
    }

        .prev-link-page-info .date-details > div, .prev-link-page-info .date-details > span {
            line-height: inherit;
            transition: 0.45s;
            font-weight: 500;
        }

        .next-link-page-info .date-details > div, .next-link-page-info .date-details > span {
            line-height: inherit;
            transition: 0.45s;
            font-weight: 500;
        }

        .prev-link-page-info .date-details:only-child, .next-link-page-info .date-details:only-child {
            margin-top: 0;
        }

    @media (max-width: 767px) {
        .prev-page, .next-page {
            width: calc(100% - 20px);
            max-width: unset;
        }

            .prev-page + .next-page {
                margin-top: 0;
            }

        .page-navigation {
            flex-direction: column;
        }
    }

    @media (max-width: 575px) {
        .prev-page .page-info > a, .next-page .page-info > a {
            padding: 10px;
        }

        .prev-page .page-info .prev-title, .prev-page .page-info .next-title {
            max-width: 168px;
        }

        .next-page .page-info .prev-title, .next-page .page-info .next-title {
            max-width: 168px;
        }
    }

 

    /* quform */
    .form-group {
        margin-bottom: 1rem;
    }

        .form-group label {
            margin-bottom: .5rem;
        }

    .form-control {
        background-color: transparent;
    }

        .form-control:focus {
            border-color: #fe7c02;
        }

    .form-check-input:checked {
        border-color: #fe7c02;
        background-color: #fe7c02;
    }

   
    /* newsletter */
    .newsletter-form .quform-submit-inner button {
        font-size: 18px;
        border: none;
        position: absolute;
        right: -10px;
        top: -1px;
        height: 55px;
        width: 55px;
        color: #fff;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border: 0;
    }

        .newsletter-form .quform-submit-inner button.newsletter-btn {
            right: 0;
            top: 0;
        }

    .newsletter-form .quform-element .quform-input .form-control.news-box {
        min-height: 55px;
        border-radius: 5px;
        padding: 0 70px 0 20px;
    }

   
 
/* site-social-icon */
.site-social-icon li {
    display: inline-block;
    margin-right: 30px;
}

    .site-social-icon li:last-child {
        margin-right: 0;
    }

    .site-social-icon li a {
        color: #fff;
    }

        .site-social-icon li a:hover, .site-social-icon li a:active, .site-social-icon li a:focus {
            color: #fe7c02;
        }

/*contact-social-icon*/
.contact-social-icon li {
    display: inline-block;
    margin-right: 20px;
}

    .contact-social-icon li:last-child {
        margin-right: 0;
    }

    .contact-social-icon li a {
        font-size: 18px;
        color: #0C2340;
    }

        .contact-social-icon li a:hover, .contact-social-icon li a:active, .contact-social-icon li a:focus {
            color: #fe7c02;
        }
 
    /*==============================
 *    Footer
 *    ================================ */
    footer {
        word-break: break-word;
    }

    .footer-logo {
        max-width: 214px;
        width: 100%;
        display: inline-block;
    }

        .footer-logo.small {
            max-width: 160px;
        }

    /* footer */
    footer .email, .footer .email {
        border-bottom: 1px solid rgb(254 124 2);
        display: inline-block;
        padding-bottom: 5px;
    }

        footer .email a, .footer .email a {
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            transition: all 0.8s ease;
        }

            footer .email a:hover:after, footer .email a:active:after, footer .email a:focus:after, .footer .email a:hover:after, .footer .email a:active:after, .footer .email a:focus:after {
                width: 100%;
            }

            footer .email a:hover, footer .email a:active, footer .email a:focus, .footer .email a:hover, .footer .email a:active, .footer .email a:focus {
                color: #fff;
            }

            footer .email a:after, .footer .email a:after {
                border-bottom: 1px solid #fe7c02;
                transition: all 0.8s ease;
                content: "";
                display: inline-block;
                position: absolute;
                bottom: -11px;
                right: 0;
                width: 0;
            }

    footer .phone, .footer .phone {
        padding-bottom: 0;
        margin-bottom: 0;
    }

        footer .phone a, .footer .phone a {
            padding-bottom: 0;
            letter-spacing: -0.05rem;
            color: white;
        }

            footer .phone a:hover, footer .phone a:active, footer .phone a:focus, .footer .phone a:hover, .footer .phone a:active, .footer .phone a:focus {
                color: #063232;
            }

    @media screen and (max-width: 767px) {
        footer .email a:after {
            bottom: -10px;
        }
    }
/*footer-bottom*/
    .footer-bottom {
        text-align: center;
        position: relative;
        bottom: -110px;
        margin-top: -80px;
    }

        .footer-bottom .t-name {
            font-size: 300px;
            opacity: 0.7;
            transition: 0.35s;
            font-weight: 600;
            line-height: 1;
            color: #fff;
            margin-bottom: 0;
            text-transform: uppercase;
            -webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.2) 30%, #000 50%, rgba(0, 0, 0, 0.2) 70%);
            -webkit-mask-size: 200%;
            animation: shine 3s infinite;
        }

    @media screen and (max-width: 1599px) {
        .footer-bottom .t-name {
            font-size: 260px;
        }
    }

    @media screen and (max-width: 1399px) {
        .footer-bottom .t-name {
            font-size: 225px;
        }
    }

    @media screen and (max-width: 1199px) {
        .footer-bottom {
            bottom: -75px;
            margin-top: -55px;
        }

            .footer-bottom .t-name {
                font-size: 180px;
            }
    }

    @media screen and (max-width:1024px) {
        .offcanvas-fullwidth {
            width: 100vw !important;
            max-width: 100vw;
        }

       
    }

    @media screen and (max-width: 991px) {

        .question_txt {
            font-size: calc(1.0rem + 2.7vw);
            letter-spacing: inherit;
        }
        .footer-bottom {
            bottom: -55px;
            margin-top: -40px;
        }

            .footer-bottom .t-name {
                font-size: 130px;
            }
    }

    @media screen and (max-width: 767px) {
        .footer-bottom {
            bottom: -30px;
            margin-top: -20px;
        }

            .footer-bottom .t-name {
                font-size: 100px;
            }
    }

    @media screen and (max-width: 575px) {
        header {
            background: #0c2340;
        }

        .logo-container {
            max-width: 150px;
        }
        .site-list2 li {
            line-height: 20px;
        }

        .contact-map {
            height: 300px;
        }
        .footer-bottom {
            bottom: -15px;
            margin-top: -10px;
        }

            .footer-bottom .t-name {
                font-size: 54px;
            }
        .site-counter .counter-box .counter-text {
            font-size: 50px;
        }
        .btn-site { 
            padding: 15px 20px !important; 
        }
       .question_txt {
            font-size: calc(1.2rem + 2.7vw); 
        }
    }

