@use "sass:math";

:root {
    --theme-color: #364e9b;
    --theme-color2: #127782;
    --title-color: #010f34;
    --body-color: #788094;
    --smoke-color: #f5f7fa;
    --smoke-color2: #ecf1f5;
    --smoke-color3: #f4e8e1;
    --black-color: #000000;
    --black-color2: #1b1b1b;
    --gray-color: #f8f8f8;
    --white-color: #ffffff;
    --light-color: #cdcdcd;
    --th-border-color: #d8dde1;
    --title-font: "Outfit", sans-serif;
    --body-font: "DM Sans", sans-serif;
    --style-font: "Red Hat Display", cursive;
    --icon-font: "Font Awesome 6 Pro";
    --main-container: 1220px;
    --container-gutters: 30px;
    --section-space-mobile: 80px;
    --section-title-space: 60px;
    --ripple-ani-duration: 5s;
}

html,
body {
    scroll-behavior: auto !important;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #788094;
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

iframe {
    border: none;
    width: 100%;
}

input:focus {
    outline: none;
    box-shadow: none;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #d8dde1 !important;
}

th {
    font-weight: 700;
    color: #010f34;
}

td,
th {
    border: 1px solid #d8dde1;
    padding: 9px 12px;
}

a {
    color: #364e9b;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

a:hover {
    color: #010f34;
}

img {
    border: none;
    max-width: 100%;
}

p {
    font-family: var(--body-font);
    margin: 0 0 18px 0;
    color: var(--body-color);
    line-height: 1.75;
}

.th-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
    padding-bottom: 20px;
    padding-top: 20px;
    display: block;
    padding-left: 30px;
    text-align: left;
    background-color: transparent;
}

.th-menu-wrapper .mobile-logo img {
    width: 200px;
}

.th-menu-wrapper .mobile-logo svg {
    max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 35px;
    font-size: 18px;
    z-index: 1;
    color: var(--white-color);
    background-color: #364e9b;
    border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
    background-color: #010f34;
    color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid var(--theme-color);
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
    z-index: 1;
}

.th-menu-wrapper.th-body-visible {
    opacity: 1;
    visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.th-mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 50px);
    padding-bottom: 40px;
    margin-top: 0px;
    text-align: left;
}

.th-mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.th-mobile-menu ul li {
    border-bottom: 1px solid #fdedf1;
    list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
    border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-weight: 600;
    font-size: 12px;
    text-transform: capitalize;
    color: #010f34;
    padding-left: 13px;
}

.th-mobile-menu ul li a:before {
    content: "\f105";
    font-family: var(--icon-font);
    position: absolute;
    left: 0;
    top: 12px;
    margin-right: 10px;
    display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
    color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
    padding-left: 10px;
}

.th-mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 12px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: var(--smoke-color);
    color: #010f34;
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
    content: "\f067";
    font-family: var(--icon-font);
}

.th-mobile-menu ul .menu-item-has-children > a:after {
    content: "\f067";
    font-family: var(--icon-font);
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    border-radius: 50px;
    background-color: var(--smoke-color);
    float: right;
    margin-top: 1px;
}

.th-mobile-menu
    ul
    .menu-item-has-children.th-active
    > a
    .th-mean-expand:before {
    content: "\f068";
}

.th-mobile-menu ul .menu-item-has-children.th-active > a:after {
    content: "\f068";
}

.th-mobile-menu > ul {
    padding: 0 20px;
}

.th-mobile-menu > ul > li:last-child {
    border-bottom: none;
}

.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
    border-radius: 0;
}

.th-menu-toggle:hover {
    background-color: #fff;
}

.th-menu-toggle:focus {
    outline: none;
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
    width: auto;
    height: auto;
    background-color: transparent;
    color: #010f34;
    font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
    margin-right: 10px;
}

.th-menu-toggle.style-text-white {
    color: var(--white-color);
}

@media (max-width: 400px) {
    .th-menu-wrapper .th-menu-area {
        width: 100%;
        max-width: 340px;
    }

    .th-mobile-menu > ul {
        padding: 0 10px;
    }
}

:root {
    --input-height: 56px;
}

.th-btn {
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    text-transform: capitalize;
    text-align: center;
    border: none;
    background-color: var(--theme-color);
    color: var(--white-color);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 20px;
    border-radius: 25px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.th-btn::before,
.th-btn:after {
    content: "";
    background: var(--white-color);
    position: absolute;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: -1;
    height: 0%;
    left: 0;
    top: 0;
    -webkit-transform: skew(0deg);
    -ms-transform: skew(0deg);
    transform: skew(0deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    width: 100%;
    border-radius: 10px;
}

.th-btn:hover {
    color: #fff;
}

.icon-btn {
    display: inline-block;
    font-size: var(--btn-font-size, 26px);
    color: var(--title-color);
    text-align: center;
    border-radius: 50%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    position: relative;
}

.scroll-top {
    position: fixed;
    right: 23px;
    bottom: 98px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 10000;
    opacity: 1;
    visibility: hidden;
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}

.scroll-top:after {
    content: "\f062";
    font-family: var(--icon-font);
    position: absolute;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: var(--theme-color);
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    border: 2px solid var(--theme-color);
    box-shadow: none;
    border-radius: 50%;
}

.scroll-top svg {
    color: var(--theme-color);
    border-radius: 50%;
    background: var(--white-color);
}

.scroll-top svg path {
    fill: none;
}

.scroll-top .progress-circle path {
    stroke: var(--theme-color);
    stroke-width: 20px;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.th-header {
    position: relative;
    z-index: 41;
}

.info-card-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px 50px;
}

@media (max-width: 767px) {
    .info-card-wrap {
        display: block;
    }
}

@media (max-width: 767px) {
    .info-card {
        margin-bottom: 20px;
    }
}

.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.sticky-wrapper {
    -webkit-transition: all ease 0.8s;
    transition: all ease 0.8s;
}

.sticky-wrapper.sticky {
    top: 0;
}

.sticky-wrapper.sticky .header-logo {
    padding-bottom: 0;
    margin-left: 0px;
}

@media (max-width: 991px) {
    .sticky-wrapper.sticky .header-logo {
        margin-top: 0;
    }
}

.header-social .social-title {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    margin: 0 1px 0 0;
}

.header-social i {
    margin: 0 !important;
}

.header-social a {
    font-size: 14px;
    display: inline-block;
    color: var(--body-color);
    margin: 0 15px 0 0;
}

.header-social a:last-child {
    margin-right: 0;
}

.header-social a:hover {
    color: var(--theme-color);
}

.th-header .sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.th-header .sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    -webkit-animation: headerSticky 0.95s ease forwards;
    animation: headerSticky 0.95s ease forwards;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
}

.main-menu a {
    display: block;
    position: relative;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 15px;
    color: var(--title-color);
    text-transform: capitalize;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--theme-color);
}

.main-menu > ul > li {
    margin: 0 17px;
}

.main-menu > ul > li > a {
    padding: 23.5px 0;
}

.main-menu > ul > li > a:after {
    color: var(--title-color);
}

.main-menu > ul > li > a:hover {
    color: var(--theme-color);
}

.main-menu > ul > li > a:hover:after {
    color: var(--theme-color);
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
    content: "\2b";
    display: inline-block;
    position: relative;
    font-family: var(--icon-font);
    margin-left: 4px;
    font-weight: 600;
    top: 0;
    font-size: 0.9em;
    color: var(--title-color);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.main-menu ul li.menu-item-has-children > a:hover:after {
    color: var(--theme-color);
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu ul li:last-child {
    margin-right: 0 !important;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
    visibility: visible;
    opacity: 1;
    z-index: 9;
    -webkit-transform: scaleY(1) translateX(-50%);
    -ms-transform: scaleY(1) translateX(-50%);
    transform: scaleY(1) translateX(-50%);
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 230px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0px;
    left: -14px;
    opacity: 0;
    z-index: -1;
    border: 0;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-bottom: 4px solid var(--theme-color);
    border-radius: 0 0 10px 10px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
    font-size: 14px;
    line-height: 22px;
}

.main-menu ul.sub-menu {
    left: -70px;
}

.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 6px 13px;
    border-bottom: 1px solid #555;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
    content: "\2b";
    float: right;
    top: 1px;
    display: inline-block;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:hover:after {
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}

.main-menu ul.sub-menu li a:hover:before {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 0px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
    left: 100%;
    right: auto;
}

.main-menu .mega-menu-wrap {
    position: static;
}

.main-menu ul.mega-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-align: left;
    width: 100%;
    max-width: var(--main-container);
    padding: 20px 15px 23px 15px;
    left: 50%;
    -webkit-transform: scaleY(0) translateX(-50%);
    -ms-transform: scaleY(0) translateX(-50%);
    transform: scaleY(0) translateX(-50%);
}

.main-menu ul.mega-menu li {
    display: block;
    width: 100%;
    padding: 0 15px;
}

.main-menu ul.mega-menu li li {
    padding: 2px 0;
}

.main-menu ul.mega-menu li a {
    display: inline-block;
    text-transform: capitalize;
}

.main-menu ul.mega-menu > li > a {
    display: block;
    padding: 0;
    padding-bottom: 15px;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--title-color);
    border-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after,
.main-menu ul.mega-menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15px;
    height: 1px;
    background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
    width: calc(100% - 20px);
    left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
    padding-left: 0;
}

@media (max-width: 1500px) {
    .main-menu > ul > li {
        margin: 0 15px;
    }
}

.header-button {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.header-button .th-btn {
    margin-right: 30px;
}

.header-button .th-btn span {
    margin-left: 7px;
}

@media (max-width: 1499px) {
    .header-button .th-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-button .icon-btn {
        display: none;
    }
}

.header-button .icon-btn .badge {
    font-size: 12px;
    top: 0;
    right: 0;
}

.header-button .icon-btn:hover .badge {
    background-color: var(--white-color);
    color: var(--title-color);
}

.social-links .social-title {
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    color: var(--gray-color);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.social-links a {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--gray-color);
    margin: 0 0 0 15px;
}

.social-links a:hover {
    color: var(--theme-color);
}

.header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
}

.header-links li:not(:last-child) {
    margin: 0 30px 0 0;
}

.header-links li:not(:last-child):after {
    content: "";
    height: 15px;
    width: 1px;
    background-color: var(--body-color);
    position: absolute;
    top: 5px;
    right: -20px;
}

.header-links li > i {
    margin-right: 6px;
}

.header-links a:hover {
    color: var(--theme-color);
}

.about-logo img {
    width: 200px;
}

.about-logo {
    padding-bottom: 20px;
}

.header-notice {
    margin: 0;
}

.header-top {
    position: relative;
    padding: 12px 0;
    background-color: var(--smoke-color2);
}

.header-top a:hover {
    color: var(--theme-color);
}

.header-layout5 {
    --icon-bg: #f2f2f2;
    --btn-size: 40px;
}

.header-layout5 .header-top {
    border-bottom: 1px solid #d8dde1;
    position: relative;
    padding: 4px 0;
    z-index: 4;
}

.header-social i {
    margin: 0 !important;
    padding-right: 10px;
}

.header-layout5 .header-top:before {
    content: "";
    height: calc(100% + 1px);
    width: 38%;
    background-color: #364e9b;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: polygon(0 0, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

@media (min-width: 1930px) {
    .header-layout5 .header-top:before {
        width: 42%;
    }
}

@media (max-width: 1299px) {
    .header-layout5 .header-top:before {
        width: 45%;
    }
}

@media (max-width: 767px) {
    .header-layout5 .header-top:before {
        -webkit-clip-path: none;
        clip-path: none;
    }
}

.header-layout5 .header-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-layout5 .header-logo img {
    width: 175px;
}

.header-layout5 .sticky-wrapper {
    position: relative;
    background-color: transparent;
    box-shadow: none;
}

@media (max-width: 991px) {
    .header-layout5 .sticky-wrapper.sticky .menu-area {
        padding: 18px 0;
    }
}

.header-layout5 .sticky-wrapper.sticky .header-logo {
    padding-top: 0;
}

.header-layout5 .header-social .social-title {
    color: var(--title-color);
}

@media (max-width: 767px) {
    .header-layout5 .header-social .social-title {
        color: var(--white-color);
    }
}

.header-layout5 .header-notice {
    color: var(--white-color);
    font-size: 15px;
    line-height: 13px;
}

@media (max-width: 991px) {
    .header-layout5 .header-notice {
        font-size: 14px;
        text-align: center;
    }
}

.header-layout5 .header-links li a {
    color: var(--white-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.header-layout5 .header-links li a {
    color: var(--title-color);
}

.header-layout5 .header-button {
    gap: 15px;
}

@media (max-width: 1499px) {
    .header-layout5 .header-button .th-btn {
        display: block;
    }
}

@media (max-width: 1299px) {
    .header-layout5 .header-button .info-card {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-layout5 .header-button .th-btn {
        display: none;
    }
}

.header-layout5 .main-menu > ul > li > a:after {
    color: var(--title-color) !important;
}

.header-layout5 .main-menu > ul > li > a:hover:after {
    color: var(--theme-color) !important;
}

@media (max-width: 1199px) {
    .header-layout5 .header-top:before {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .header-layout5 .header-top:before {
        width: 58%;
    }
}

@media (max-width: 767px) {
    .header-layout5 .header-top:before {
        width: 100%;
    }
}

@media (min-width: 1300px) {
    .header-layout5 .th-container {
        --main-container: 1520px;
    }
}

.third-menu-text {
    display: none;
}

.info-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.info-card_icon i {
    width: 46px;
    height: 46px;
    line-height: 46px;
    color: inherit;
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
}

.footer-wrapper {
    position: relative;
    z-index: 2;
    background-color: #1f2432;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.footer-wrapper .social-links a {
    margin: 0 30px 0 0;
}

.widget-area {
    padding: 110px 0px 20px;
    position: relative;
    z-index: 99;
}

.footer-links {
    text-align: right;
}

@media (max-width: 991px) {
    .footer-links {
        display: none;
    }
}

.footer-links ul {
    padding: 0;
    margin: 0;
}

.footer-links li {
    font-family: var(--body-font);
    display: inline-block;
    padding-right: 15px;
    margin-right: 10px;
    position: relative;
}

.footer-links li:after {
    content: "";
    height: 11px;
    width: 1px;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    right: 0;
    margin: -5px 0;
    -webkit-transform: rotate(13deg);
    -ms-transform: rotate(13deg);
    transform: rotate(13deg);
}

.footer-links li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.footer-links li:last-child:after {
    display: none;
}

.footer-links a {
    font-family: inherit;
    color: var(--white-color);
}

.footer-links a:hover {
    color: var(--theme-color);
}

.copyright-wrap {
    padding: 5px 0;
    background-size: 100% auto;
    background-color: #364e9b;
    position: relative;
    z-index: 99;
}

.copyright-text {
    margin: 0;
    font-size: 15px;
}

.copyright-text a {
    color: #fff;
}

.copyright-text a:hover {
    color: var(--white-color);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.footer-widget .form-group > i {
    color: var(--theme-color);
    top: 18px;
}

.footer-widget .sidebar-gallery {
    max-width: 287px;
}

@media (max-width: 1499px) {
    .footer-widget .sidebar-gallery {
        max-width: 100%;
    }
}

.footer-widget .widget_title {
    position: relative;
    border: none;
    font-family: var(--title-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1;
    border-bottom: 0;
    padding: 0 0 15px 0;
    margin: -0.12rem 0 23px 0;
    max-width: 275px;
}

.footer-widget .widget_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 79px;
    height: 2px;
    background: -webkit-linear-gradient(
        left,
        #0181f5 -8.86%,
        rgba(1, 129, 245, 0) 107.59%
    );
    background: linear-gradient(
        90deg,
        #0181f5 -8.86%,
        rgba(1, 129, 245, 0) 107.59%
    );
}

.quick-link-weight {
    padding-left: 20px;
}

.footer-widget .widget_title:after {
    display: none;
}

.footer-widget.widget_nav_menu ul {
    margin-top: -4px;
}

.footer-widget.widget_nav_menu .menu {
    margin-bottom: -4px;
}

.footer-widget.widget_nav_menu a {
    font-size: 14px;
    font-weight: 400;
    padding: 0 0 0 20px;
    margin-bottom: 19px;
    font-family: var(--body-font);
    display: block;
    text-transform: capitalize;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    color: #fff;
}

.footer-widget.widget_nav_menu a:before {
    content: "\f061";
    position: absolute;
    font-weight: 600;
    font-family: var(--icon-font);
    left: 0;
    top: 2px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    font-size: 0.9em;
    background-color: transparent;
    border: none;
    color: inherit;
}

.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: #fff;
}

.footer-widget.widget_nav_menu a:hover:before {
    color: var(--theme-color);
}

.footer-widget.widget_nav_menu li:last-child a {
    margin-bottom: 0;
}

.footer-widget .recent-post {
    max-width: 300px;
    margin-bottom: 27px;
}

.footer-widget .recent-post .post-title {
    margin-top: -0.4rem;
    color: var(--white-color);
    font-weight: 500;
}

.footer-widget .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta a {
    font-weight: 400;
    line-height: 1.2;
}

.footer-widget .recent-post .recent-post-meta i {
    color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
    color: var(--theme-color);
}

.footer-widget .recent-post .media-img {
    border-radius: 0px;
}

.footer-widget .recent-post .media-img:after {
    line-height: 70px;
}

.footer-widget .recent-post .media-img img {
    border-radius: 0px;
}

.widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}

.widget_nav_menu a {
    display: block;
    background-color: transparent;
    margin: 0;
    padding: 16px 45px 19px 27px;
    font-size: 16px;
    line-height: 1.313;
    color: var(--body-color);
    border-radius: 0;
    border-bottom: 1px solid #d8dde1;
}

.th-widget-about .footer-info {
    position: relative;
    margin: -0.44rem 0 22px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    font-size: 14px;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    line-height: 26px;
    padding: 0 0 0 40px;
    max-width: 360px;
}

.th-widget-about .footer-info i {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    position: absolute;
    left: 0;
    font-size: 16px;
}

.th-widget-about .footer-info-title {
    font-size: 18px;
    font-family: var(--title-font);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    margin-bottom: 7px;
    margin-top: -0.2em;
}

.th-widget-about .footer-info_text {
    color: var(--body-color);
    margin-bottom: 0;
}

.th-widget-about .footer-info_text a {
    display: block;
}

.th-widget-about .footer-info_text a {
    color: #ffffff;
    font-size: 14px;
}

.th-widget-about .footer-info .text-inherit {
    color: #fff;
    font-size: 14px;
}

.marquee {
    padding: 0px 0;
}

.sidemenu-wrapper .about-text {
    font-size: 15px;
    color: #000;
    line-height: 24px;
}

.sidemenu-wrapper .about-text a {
    font-size: 14px;
    color: #364e9b;
    font-weight: 600;
}

.th-social.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.th-social.footer-social a:hover {
    background-color: var(--theme-color);
}

.sidebar_contactus_information_div_main {
    padding: 0px 0px;
}

.sidebar_contactus_information_div_main > h3 {
    color: #000;
    font-weight: 700;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
}

.sidebar_contactus_information_div_main > h3::after {
    width: 100px;
    height: 1px;
    display: block;
    content: "";
    position: relative;
    margin-top: 7px;
    left: 52%;
    margin-left: -51px;
    background-color: #333;
}

.sidebar_media_main_div {
    margin-bottom: 20px;
}

.sidebar_media_main_div > .d-flex > .flex-shrink-0 > i {
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
}

.sidebar_contactus_content_div > a {
    display: block;
    font-size: 13px;
    color: #333;
    font-weight: 600;
    line-height: 27px;
}

.sidebar_contactus_content_div > p {
    font-size: 13px;
    color: #000;
    font-weight: 500;
    margin-bottom: 0px !important;
}

.th-social.footer-social .social-title {
    color: #000;
    font-weight: 600;
    font-weight: 15px;
}

.widget.footer-widget .about-text-footer {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.widget.footer-widget .about-text-footer a {
    color: #364e9b;
    font-size: 14px;
    font-weight: 600;
}

.container {
    max-width: 1230px;
}

.banner_sec.desktop-banner .carousel-control-next,
.carousel-control-prev {
    border: none;
    background-color: unset;
}

.why-choose-us-sec {
    position: relative;
    background-color: #f5f5f5;
    width: 100%;
    padding: 40px 0px 20px;
}

.main-heading-title {
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.21;
    color: initial;
    position: relative;
    color: #000;
    font-size: 28px;
}

.main-heading-title::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    background-color: var(--theme-color);
    margin-left: -4.5rem;
    width: 60px;
}

.main-heading-title::after {
    background-color: var(--theme-color);
    margin-left: 0.8rem;
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60px;
}

.section-heading p {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
}

.promo-item {
    border-radius: 10px;
    -webkit-filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.07));
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.07));
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    background-color: #ffffff;
    padding: 24px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.promo-item::before {
    content: "";
    position: absolute;
    right: -65px;
    width: 95px;
    height: 95px;
    top: -55px;
    border-radius: 50px;
    background-color: var(--theme-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

.promo-img img {
    margin-bottom: 15px;
}

.promo-bottom-shape {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
}

.promo-bottom-shape img {
    width: 100%;
}

.promo-item:hover:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: var(--theme-color);
}

.promo-item:hover h5,
.promo-item:hover p {
    color: #fff;
}

.why-choose-title {
    margin: 0 0 7px;
    font-weight: 600;
    line-height: 1.21;
    color: initial;
    font-size: 21px;
    font-family: var(--body-font);
}

.promo-item {
    animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
        /* adjust for more or less movement */
    }
}

.promo-item.two-box {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
        /* adjust for more or less movement */
    }
}

.why-discription {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    font-family: var(--body-font);
    margin: 0px;
}

.why-choose-us-sec .promo-item.first-items:first-child {
    margin-top: 0;
}

.about-sec-home {
    position: relative;
    width: 100%;
    padding: 40px 0px 20px;
}

.about-img-box {
    position: relative;
}

.about-img-box .about-img1 img {
    text-align: center;
    width: 465px;
    height: 360px;
    border-radius: 30px;
}

.global-img {
    position: relative;
    overflow: hidden;
}

.about-img-box .about-img2 img {
    border: 10px solid var(--white-color);
    border-radius: 20px;
}

.about-img-box .about-img2 {
    position: absolute;
    right: 0%;
    bottom: -33%;
}

.about-content-box p {
    font-size: 15px;
    color: #000;
    text-align: justify;
}

.achive-about-wrap {
    display: flex;
}

.achive-about-wrap.style2 {
    gap: 53px;
}

.achive-about {
    display: flex;
    align-items: center;
    gap: 15px;
}

.achive-about-wrap.style2 {
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

.achive-about .box-title {
    margin: -0.4rem 0 0 0;
}

.box-title {
    font-size: 20px;
    line-height: 1.417;
    color: #000;
    font-weight: 600;
}

.th-experience {
    position: absolute;
    top: 65%;
    left: -6%;
    z-index: 2;
    border-radius: 30px;
    background: var(--theme-color);
    box-shadow: 0px 13px 25px 0px rgba(0, 0, 0, 0.05);
    width: 200px;
    color: var(--white-color);
    text-align: center;
    padding: 20px;
}

.th-experience .experience-year {
    font-size: 19px;
    color: var(--white-color);
    margin-bottom: 0px;
}

.jump {
    -webkit-animation: jumpAni 7s linear infinite;
    animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.th-experience .experience-text {
    color: var(--white-color);
    margin-bottom: 0px;
}

.about-sub-title {
    display: block;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--title-font);
    position: relative;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.about-sub-title::after {
    content: "";
    position: absolute;
    top: 50%;
    background-color: var(--theme-color);
    margin-left: 0.8rem;
    height: 2px;
    width: 60px;
}

.about-title {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: 33px;
    line-height: 1.227;
    font-weight: 600;
}

.pool-contrusction-service-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.pool-construction_main_div {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: auto;
    padding: 6px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.pool-construction_main_div:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pool_construction_image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    transition: 0.4s ease-in-out;
    display: block;
}

.pool-construction_main_div:hover .pool_construction_image img {
    transform: scale(1.08);
}

.construction_content_box {
    padding: 10px 0px;
    text-align: left;
}

.construction_content_box h4 {
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    color: #222222;
    margin-bottom: 4px !important;
}

.construction_content_box h4 a {
    text-decoration: none;
    color: inherit;
}

.construction_content_box p {
    font-size: 14px;
    font-weight: 500;
    color: #222222;
    margin-bottom: 9px !important;
}

.pool-contrusction-service-sec .section-heading {
    margin-bottom: 22px;
}

.pool-contrusction-service-sec .th-btn {
    font-size: 13px;
    padding: 10px 18px;
    font-weight: 700;
}

.fountain-sec {
    padding: 30px 0px 30px;
}

.contact-info-area {
    position: relative;
    z-index: 5;
    margin-bottom: -77px;
    border-radius: 5px;
}

.contact-info-area .contact-media.media1 {
    background-color: var(--white-color);
    box-shadow: 0px -6px 30px 0px rgba(0, 0, 0, 0.05);
    min-height: 150px;
    -webkit-box-pack: center;
    border-radius: 4px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-width: 283px;
}

.contact-media {
    padding: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    min-width: 453px;
}

.contact-media-wrapp {
    background: #7d90d6;
    box-shadow: 0px -6px 30px 0px rgba(0, 0, 0, 0.05);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 4px;
}

.email-bg {
    background-color: var(--theme-color) !important;
}

.contact-media_title {
    font-size: 15px;
    line-height: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.contact-media_subtitle {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 0px;
}

.contact-media_title a {
    color: inherit;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.contact-media_title:hover {
    color: #fff;
}

.z-index-common {
    position: relative;
    z-index: 3;
}

.counter-area6 {
    position: relative;
    z-index: 3;
}

.counter-sec.style6 {
    padding: 0 70px;
    border-radius: 6px;
    background: #364e9b;
}

.counter-sec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 50px 0;
}

.counter-sec.style6 .th-counterup {
    padding: 46px 30px 47px 0px;
    border-right: 1px solid #ccc;
}

.th-counterup .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    animation: floatUpDown 3s ease-in-out infinite;
    max-width: 255px;
}

.th-counterup:nth-child(2) .inner,
.th-counterup:nth-child(4) .inner {
    animation-delay: 1.5s;
    /* Half cycle delay for opposite movement */
}

@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.pool_construction_image {
    position: relative;
    overflow: hidden;
    min-width: 240px;
}

.th-counterup .content .counter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 700;
    font-size: 64px;
    line-height: 63px;
    color: var(--white-color);
    margin-bottom: 0;
}

.counter-sec .th-counterup .counter-card_text {
    color: var(--gray-color);
}

.counter-card_text {
    display: block;
    margin-bottom: -6px;
}

.th-counterup .content .counter-number {
    font-weight: 400;
    color: #fff;
}

.counter-sec.style6 .th-counterup:last-child {
    border-right: none;
}

.testimonial-card {
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin: 50px 0px 3px 0px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 268px;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #364e9b;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    top: -50px;
}

.testimonial-card h3 {
    margin: 40px 0 2px;
    font-size: 23px;
    color: #000;
    font-weight: 600;
}

.testimonial-card p.role {
    color: #333;
    font-size: 13px;
    margin-bottom: 0px;
    font-weight: 500;
}

.stars {
    color: #ffb400;
    font-size: 20px;
    margin: 1px 0;
}

.testimonial-card p.text {
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
    margin-bottom: 0px;
}

.testimonial-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f5f5;
}

.testimonial-sec .section-heading {
    margin-bottom: 10px;
}

.testi-slide2 {
    margin-top: 6px;
}

.testi-slide2 .testi-item {
    margin: 10px;
}

.tab-header {
    padding: 0px 10px !important;
}

.social-tab {
    padding: 0px 40px !important;
}

.th-menu-toggle.active i::before {
    content: "\f00d";
}

.blogs-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f5f5;
}

.blogs-sec .section-heading {
    margin-bottom: 22px;
}

.blog-card-main-box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.blog-card-main-box:hover .blog-images img {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-card-main-box .blog-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card-main-box:hover .blog-images img {
    transform: scale(1.05);
}

.blog-content-card-box {
    padding: 18px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.blog-title a {
    color: #222;
}

.blog-title a:hover {
    color: #007bff;
}

.blog-content-card-box p {
    font-size: 15px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 12px;
}

.gallery-sec {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #fff;
}

.gallery-sec .section-heading {
    margin-bottom: 22px;
}

.gallery-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 30px;
}

.gallery-tabs .tab-btn {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    border-radius: 10px !important;
    text-transform: capitalize;
}

.gallery-tabs .th-btn {
    background: #ecf1f5;
    color: var(--title-color);
    padding: 10px 45px;
    border-radius: 10px;
}

.gallery-tabs .th-btn.active:before,
.gallery-tabs .th-btn.active:after,
.gallery-tabs .th-btn:hover:before,
.gallery-tabs .th-btn:hover:after {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 10px;
}

.gallery-row {
    --bs-gutter-y: 1.9rem;
}

.gallery-wrapper.style2 {
    max-width: 1920px;
    display: block;
    margin: auto;
}

.gallery-wrapper.style2 .gallery-card .icon-btn {
    width: var(--btn-size, 80px);
    height: var(--btn-size, 80px);
    line-height: var(--btn-size, 80px);
    font-size: var(--btn-font-size, 20px);
}

.gallery-wrapper.style2 .gallery-card .gallery-img {
    text-align: right;
}

.gallery-card {
    --box-space: 30px;
    position: relative;
    border-radius: 8px;
    text-align: center;
}

.gallery-card .gallery-img {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-card .gallery-img img {
    width: 100%;
    height: 100%;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    border-radius: 8px;
}

.gallery-card .gallery-content {
    position: absolute;
    top: var(--box-space);
    left: var(--box-space);
    width: calc(100% - var(--box-space) * 2);
    height: calc(100% - var(--box-space) * 2);
    z-index: 2;
    background: transparent;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.gallery-card .box-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
}

.gallery-card .box-title a:not(:hover) {
    color: var(--white-color);
}

.gallery-card .gallery-subtitle {
    color: var(--theme-color3);
    margin-bottom: 8px;
}

.gallery-card .icon-btn {
    width: var(--btn-size, 46px);
    height: var(--btn-size, 46px);
    line-height: var(--btn-size, 46px);
    border-radius: 50%;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 20px;
}

.gallery-card .icon-btn:hover {
    background: var(--white-color);
    color: var(--title-color);
}

.gallery-card:hover .gallery-img img {
    -webkit-transform: scale(1.2) rotate(-5deg);
    -ms-transform: scale(1.2) rotate(-5deg);
    transform: scale(1.2) rotate(-5deg);
    border-radius: 8px;
}

.gallery-card:hover .gallery-content {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .gallery-card {
        --box-space: 25px;
    }
}

@media (max-width: 767px) {
    .gallery-card {
        --box-space: 15px;
    }
}

.gallery-card .gallery-img img {
    height: 240px;
    width: 100%;
}

.all_pg_bn_sections {
    background-color: #ecf1f5;
    padding: 5px 0px;
}

.all_pg_bn_ovr_txt {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.all_pg_bn_ovr_txt a {
    margin: 0px 10px;
    color: #000;
    text-transform: capitalize;
}

.all_pg_bn_ovr_txt span {
    color: #000;
}

.blog-deatils-sec {
    position: relative;
    padding: 30px 0px 20px;
    background-color: #fff;
}

.recent-right-side-widget {
    padding: 40px 40px;
    background-color: #f5f7fa;
    margin-bottom: 40px;
    position: relative;
    border-radius: 20px;
}

.widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    padding-bottom: 17px;
    color: #010f34;
    margin: -0.12em 0 30px 0;
}

.widget_title:after {
    background-color: var(--theme-color) !important;
    width: 30px !important;
}

.widget_title:before,
.widget_title:after {
    content: "";
    height: 3px;
    width: 100%;
    background-color: var(--th-border-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.recent-post {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.recent-post:hover .media-img:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.recent-post .media-img {
    margin-right: 11px;
    min-width: 70px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.recent-post .media-img img {
    width: 100px;
    height: 80px;
}

.recent-post .media-img:after {
    content: "\f0c1";
    font-family: var(--icon-font);
    position: absolute;
    inset: 0;
    text-align: center;
    line-height: 85px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--theme-color);
    pointer-events: none;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

.media-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.recent-post .post-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 5px;
    font-family: var(--title-font);
    color: #010f34;
}

.recent-post .post-title a {
    color: #010f34;
}

.blog-deatisl-left-sidebar {
    position: relative;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 20px;
    background: var(--white-color);
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 40px;
    margin-right: 10px;
}

.blog-content {
    margin: 0 0 0 0;
    padding: 25px 0px;
    position: relative;
}

.blog-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}

.blog-sub-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
}

.blog-discription {
    font-size: 15px;
    color: #222;
    text-align: justify;
    margin-bottom: 12px;
}

.blog-img-sub img {
    width: 100%;
    border-radius: 8px;
}

.blog-img-sub {
    margin-bottom: 13px;
}

.blog-all-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.sidebar-custom {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: auto;
}

.services-construction-page-details {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
}

.gallery-page-sec {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
}

.sidebar-area-construction-left {
    margin-bottom: -10px;
}

.sticky-sidebar {
    position: sticky;
    top: 0px;
}

.widget-construction {
    background-color: var(--smoke-color);
    margin-bottom: 40px;
    position: relative;
    border-radius: 20px;
}

.sidebar-area-construction-left .widget-construction .widget_title {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: var(--title-font);
    line-height: 1em;
    padding: 20px;
    margin: -0.12em 0 15px 0;
}

.widget-construction .accordion-card {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    overflow: hidden;
}

.widget-construction .accordion-card .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-construction .accordion-card .accordion-button {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--title-font);
    border: none;
    color: var(--title-color);
    background-color: transparent;
    border-radius: 0;
    padding: 0 20px;
    margin: 0;
    min-height: 40px;
    gap: 10px;
    margin-bottom: 0;
    text-align: left;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}

.widget-construction .accordion-card .accordion-button:not(.collapsed):after {
    content: "\f205";
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    color: var(--theme-color);
}

.widget-construction .accordion-card .accordion-button:after {
    content: "\f204";
    height: 100%;
    width: auto;
    line-height: 1;
    background-color: transparent;
    font-family: var(--icon-font);
    font-weight: 400;
    font-size: 18px;
    display: grid;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: 22px;
    -webkit-clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
    padding-left: 10px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.widget-construction .accordion-card .accordion-collapse {
    border: none;
}

.widget-construction .accordion-card .accordion-body {
    border-radius: 0;
    border: 0;
    background-color: transparent;
    padding: 10px 26px 16px 18px;
}

.widget_categories ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}

.widget_categories li {
    display: block;
    position: relative;
}

.widget_categories a {
    display: block;
    background-color: transparent;
    margin: 0;
    padding: 9px 7px 10px 11px;
    font-size: 15px;
    line-height: 1.313;
    color: #010f34;
    text-transform: capitalize;
    border-radius: 0;
    border-bottom: 1px solid var(--th-border-color);
}

.widget_categories li a i {
    color: var(--body-color);
    position: absolute;
    right: 0px;
    top: 14px;
    pointer-events: none;
    min-width: 20px;
    text-align: right;
    transition: 0.4s;
}

.details-construction-servies {
    background-color: var(--white-color);
    border-radius: 20px;
    box-shadow: 0px 6px 50px 0px rgba(0, 0, 0, 0.06);
    padding: 20px 40px 40px 40px;
    margin-bottom: 5px;
    margin-right: 13px;
}

.construction-img {
    position: relative;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.products_details_ovr_en_btn a {
    writing-mode: vertical-rl;
    background-color: #364e9b;
    padding: 13px 5px 13px 5px;
    writing-mode: sideways-lr;
    color: white;
    text-align: center;
    border-radius: 2px;
    transition: 0.5s ease-in-out;
}

.products_details_ovr_en_btn {
    position: absolute;
    right: 0;
    top: 40%;
    transition: 0.5s ease-in-out;
}

.construction-img img {
    width: 100%;
    border-radius: 8px;
    height: 450px;
}

.construction-content-box .construction-title {
    font-size: 30px;
    font-family: var(--title-font);
    color: var(--title-color);
    text-transform: none;
    font-weight: 700;
}

.construction-discription {
    font-size: 15px;
    color: #000;
    font-weight: 400;
    text-align: justify;
    margin-bottom: 8px;
}

.constriction-sub-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 8px;
    color: #000;
}

.construction-content-box > ul {
    list-style: square !important;
    padding: 0px 20px;
    margin-bottom: 10px !important;
}

.construction-content-box > ul > li {
    font-size: 15px;
    line-height: 24px;
    color: #000;
    font-family: var(--body-font);
    margin-bottom: 4px !important;
}

.privacy_section {
    position: relative;
    padding: 30px 0px 30px 0px;
}

.privacy_content_main_div > h1 {
    color: #212121;
    text-transform: capitalize;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 4px !important;
}

.privacy_content_main_div > p {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
    text-align: justify;
    color: #212121;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div > ul > li {
    font-weight: 400;
    font-size: 15px;
    color: #212121;
    text-transform: capitalize;
    line-height: 27px;
    transition: 0.2s ease-in-out;
    margin-bottom: 3px !important;
}

.privacy_content_main_div > ul {
    padding-left: 15px;
}

.privacy_content_main_div > h2 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div > h3 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.privacy_content_main_div > h4 {
    color: #000;
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px !important;
    margin-top: 4px !important;
}

.contact-us-sec-area {
    position: relative;
    width: 100%;
    padding: 30px 0px 30px;
    background-color: #f5f5f5;
}

.contact-form-box {
    padding: 20px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
    border: 4px solid #364e9b;
    background-color: #fff;
    border-radius: 10px;
}

.contact-form-box > h1 {
    color: var(--black-color2);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 4px !important;
}

.conatct-address-box > h1 {
    color: var(--black-color2);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px !important;
}

.contact-form-box .input_div_contact > label {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-color2);
    margin-bottom: 6px;
}

.contact-form-box .input_div_contact > input {
    border-radius: 5px !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 400;
    color: var(--black-color3);
    border: 1px solid #333 !important;
    height: 40px;
    background-color: #fff;
}

.contact-form-box .input_div_contact {
    margin-bottom: 10px;
}

.contact-form-box .input_div_contact_btn > button {
    color: var(--white-color);
    background-color: #364e9b;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}

.conatct-address-box .contact-and-address-content .contact-card {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.conatct-address-box .contact-and-address-content .contact-card .icon {
    font-size: 35px;
    height: 65px;
    width: 65px;
    line-height: 65px;
    border: 1px solid #364e9b;
    color: #364e9b;
    text-align: center;
    border-radius: 100%;
    margin: auto;
    margin-bottom: 8px;
}

.conatct-address-box .contact-and-address-content .contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #364e9b;
    margin-bottom: 6px;
}

.conatct-address-box .contact-and-address-content .contact-card p {
    margin-bottom: 5px;
    color: #000;
    font-size: 15px;
}

.conatct-address-box .contact-and-address-content .contact-card p a {
    color: #000;
    font-weight: 500;
    font-size: 15px;
    transition: all ease 0.5s;
}

.map-sec {
    position: relative;
    width: 100%;
    padding: 0px 0px 20px;
}

.gallery-page-sec .section-heading {
    margin-bottom: 20px;
}

.gallery-page-sec .gallery-card {
    margin-bottom: 20px;
}

.clients-sec-page {
    position: relative;
    width: 100%;
    padding: 40px 0px 40px;
    background-color: #f5f5f5;
}

.clients-image-card-box {
    height: auto;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgb(52 105 203 / 12%);
    position: relative;
    display: inline-block;
}
.mega-menu-content {
    max-height: 380px;
    overflow: auto;
}
.modal-enquary-box-modal .modal-dialog.modal-md .modal-content {
    border: 4px solid #364e9b;
    border-radius: 10px;
    box-shadow: none;
    background-color: #ffff;
    outline: none;
}
.modal-enquary-box-modal .modal {
    z-index: 99999999;
}
.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-header {
    padding: 8px 10px !important;
}
.modal-enquary-box-modal
    .modal-dialog.modal-md
    .modal-content
    .modal-header
    .modal-title {
    font-size: 21px;
    color: #000;
    font-weight: 800;
    text-transform: capitalize;
}
.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .close {
    box-shadow: none;
    position: absolute;
    right: -19px;
    background: #364e9b;
    opacity: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-weight: 600;
    color: #fff;
    font-size: 22px;
    border: none;
    top: -19px;
}
.modal-enquary-box-modal .modal-dialog.modal-md .modal-content .modal-body {
    padding: 5px 15px;
}
.enquiry_popup_input_div > label {
    font-size: 14px;
    color: #000 !important;
    font-weight: 600;
    margin-bottom: 2px !important;
}
.modal-enquary-box-modal
    .modal-dialog.modal-md
    .modal-content
    .contact_pg_form_right_side
    input,
textarea {
    border: 1px solid #333 !important;
    outline: none !important;
    background: #fff;
    border-radius: 5px !important;
    height: 38px;
    line-height: 38px;
    margin-bottom: 10px;
}
.custom-textarea {
    height: 130px;
}
.popup-btn {
    color: var(--white-color);
    background-color: #364e9b;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px !important;
}
.banner-layput {
    background-image: url("../images/footer-banner.webp");
}
.banner-layput::before {
    content: "";
    position: absolute;
    background-color: rgb(0 0 17 / 60%);
    width: 100%;
    top: 0px;
    left: 0;
    z-index: 1;
    height: 100%;
}

.mega-menu-content::-webkit-scrollbar {
    width: 4px;
}

.mega-menu-content::-webkit-scrollbar-track {
    background: #7d90d6;
}
.mega-menu-content::-webkit-scrollbar-thumb {
    background: #364e9b;
    border-radius: 10px;
}

.mobile_call_whatsapp_fixed_main_div {
    position: fixed;
    bottom: 200px;
    right: 10px;
    z-index: 99;
}

.call_icon_div {
    text-align: center;
}

.call_icon_div > a {
    background-color: #dc3545;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: moveUpDown 2s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes moveUpDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.call_icon_div > a > img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.whatsapp_icon_div {
    text-align: center;
}

.whatsapp_icon_div > a {
    background-color: #008000;
    height: 60px;
    line-height: 57px;
    width: 60px;
    text-align: center;
    border-radius: 100px;
    animation: zigzag 0.5s ease-in-out infinite;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-duration: 10s;
    animation-timing-function: steps(1, end);
    position: relative;
    animation: zigzag 8s infinite;
    display: inline-block;
}

@keyframes zigzag {
    0% {
        left: 0px;
    }

    1% {
        left: -5px;
    }

    2% {
        left: 5px;
    }

    3% {
        left: -5px;
    }

    4% {
        left: 5px;
    }

    5% {
        left: 0px;
    }

    100% {
        left: 0px;
    }
}

.whatsapp_icon_div > a > img {
    width: 32px !important;
    filter: brightness(0%) invert(1);
    height: 60px;
    line-height: 60px;
    width: 60px;
    object-fit: contain;
}

.mobile_whatsapp {
    display: none;
}

/* state city css */

.state_city_section {
    padding: 20px 0px 40px 0px;
}

.state_city_dropdown_main_div > li {
    list-style: none !important;
    background-color: var(--theme-color);
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.state_city_dropdown_main_div > li > span {
    color: var(--white-color);
    background-color: var(--secondry-color);
    color: var(--white-color);
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
}

.state_title_div {
    text-align: center;
    margin-bottom: 2px;
    margin-top: 20px;
}

.state_title_div > h2 {
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--black-color);
    margin-bottom: 10px;
}

.all_cities_collapse_div > a {
    color: var(--white-color);
}

.state_city_dropdown_main_div > li > a {
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
}

.city_name_list_main_div {
    max-height: 300px;
    overflow-x: auto;
}

.city_name_list_main_div > ul {
    list-style: none;
    padding: 0px 0px !important;
    margin-bottom: 5px !important;
}

.city_name_list_main_div > ul > li {
    background-color: var(--gray-color3);
    padding: 8px 20px 8px 20px;
    border-radius: 0px;
    margin-bottom: 0px !important;
    text-transform: capitalize;
}

.city_name_list_main_div > ul > li:hover {
    background-color: var(--theme-color);
    text-transform: capitalize;
}

.city_name_list_main_div > ul > li > a {
    color: var(--black-color);
    display: block;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.city_name_list_main_div > ul > li > a > span {
    font-size: 13px;
}

.city_name_list_main_div > ul > li:hover a {
    color: var(--white-color);
}
