:root {
    --primary-color: #1397cc;
    --secondary-color: #0219e4;
    --bg-primary-color: #4c7ec417;
    --bg-secondary-color: #f9f9f9;
    --accent-color: #89EA5F;
    --white-divider: #ffffff70;
    --divider-color: #DADADA;
    --overlay-color: rgba(22, 51, 0, 0.65);
    --error-color: rgb(230, 87, 87);
    --accent-font: "Open Sans", sans-serif;
    --default-font: "Open Sans", sans-serif;
    --white: #fff;
    --black: #000;
    --transition: all ease-in-out .5s;
    --font-weight-100: 100;
    /* scroll-behavior: smooth; */
}

.fw-100 {
    font-weight: 100
}

.fw-200 {
    font-weight: 200
}

.fw-300 {
    font-weight: 300
}

.fw-400 {
    font-weight: 400
}

.fw-500 {
    font-weight: 500
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    line-height: 1.7;
    color: #000;
    font-size: 1rem;
    position: relative;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* cursor: pointer; */
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

body.scrollbar-track {
    background: #fbf6eb;
}

body::-webkit-scrollbar-track {
    background: #fbf6eb;
}

body::-webkit-scrollbar {
    width: 6px
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

.theme-btn {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    position: relative;
    padding: 10px 30px;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    display: inline-flex;
}

.theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: .5s;
    transition: .5s;
}

.theme-btn:hover::before {
    width: 100%;
    opacity: 1;
}

.custom-btn {
    background-color: var(--white);
    color: var(--primary-color) !important;
    position: relative;
    padding: 10px 30px;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 30px;
    display: inline-flex;
}

.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--secondary-color);
    left: 0;
    right: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: .5s;
    transition: .5s;
}

.custom-btn:hover {
    color: var(--white) !important;
}

.custom-btn:hover::before {
    width: 100%;
    opacity: 1;
}

.section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
}

.header-navbar .navbar .navbar-brand img {
    height: auto;
    max-width: 180px;
}

.header-navbar .navbar .navbar-nav .nav-item {
    position: relative;
}

.header-navbar .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
    text-transform: capitalize;
    letter-spacing: .05em;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    position: relative;
    padding-bottom: 5px;
}

.header-navbar .navbar .navbar-nav .nav-item .nav-link::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 0px;
    bottom: 0px;
    right: -1px;
    background-color: var(--primary-color);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
}

.header-navbar .navbar .navbar-nav .nav-item:hover .nav-link {
    color: var(--primary-color);
}

.header-navbar .navbar .navbar-nav .nav-item:hover .nav-link:before {
    width: 100%;
    right: auto;
    left: 0;
}

.header-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    visibility: hidden;
    border-radius: 0;
    display: block;
    width: 250px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: .5s;
    transition: .5s;
    border-bottom: 2px solid var(--primary-color);
    padding: 0;
    margin-top: 5px;
}

.header-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.header-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-item {
    font-weight: 600;
    font-size: 14px;
}

.navbar-toggler {
    background-color: #1397cc;
    padding: 7px 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.menuOffcanvas .offcanvas-title img {
    height: auto;
    max-width: 150px;
}

.menuOffcanvas .offcanvas-body {
    padding-top: 10px;
    background: #f3f3f3;
    border-top: 1px solid #d5b9b9;
}

.menuOffcanvas .offcanvas-body .linkItems .linkItem {
    padding: 4px 10px;
    background: var(--primary-color);
    margin: 8px 0;
    border-radius: 7px;
    color: #fff;
}

.menuOffcanvas .offcanvas-body .linkItems .linkItem .linkAnchor {
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    transition: .3s ease;
}

.menuOffcanvas .offcanvas-footer {
    padding: 1rem;
    background-color: #fff;
}

.menuOffcanvas .offcanvas-footer .loginBtn {
    width: 100%;
    height: 39px;
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--primary-color);
}

.banner-section .bg-banner {
    background-image: url(../images/banner-image.webp);
    background-position: center center;
    background-repeat: no-repeat;
    height: 460px;
    width: 100%;
    background-size: cover;
}

.banner-section .bg-banner .heading {
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    padding-left: 50px;
    line-height: 53px;
    font-family: 'Alegreya', serif;
    font-style: italic;
    position: relative;
}

.banner-section .bg-banner .heading::after {
    height: 6px;
    width: 60px;
    content: "";
    display: block;
    margin-top: 18px;
    background: linear-gradient(to right, #d9eeff 0%, var(--primary-color) 100%);
}

.banner-section .bg-banner .conts {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    padding-left: 50px;
    /* margin-bottom: 0px; */
    padding-top: 20px;
}

/* owl Arrow */
.common-arrow .owl-nav {
    display: none !important;
}

.common-arrow .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.common-arrow .owl-dots .owl-dot.active {
    background: var(--primary-color);
    width: 32px;
}

.common-arrow .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid #adb5bd;
    box-shadow: 0px 1px 0px 0px #dee2e6;
    margin: 0px 3px;
    transition: .5s all;
}

.sec-title h2 {
    position: relative;
    font-size: 35px;
    line-height: 45px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Alegreya', serif;
    padding-bottom: 6px;
    text-shadow: 0px 0px 1px #000;
}

.sec-title .sub-title {
    /* padding: 4px 10px; */
    /* border-radius: 30px; */
    font-size: 12px;
    line-height: 22px;
    font-weight: 600;
    /* border: 1px dashed #c9d1d1; */
    text-transform: uppercase;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.sec-title .sub-title span {
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    width: 50px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0px 4px;
    margin-right: 6px;
}

.sec-title .sub-title i {
    font-size: 8px;
    margin-right: 4px;
    color: var(--primary-color);
    animation: 6s linear infinite circle-x;
}

.inner-column .cnts {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

@keyframes circle-x {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
}

.anim-icons {
    position: absolute;
    right: 0;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.anim-icons .icon {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.bounce-y {
    -webkit-animation: 10s linear infinite bounce-y;
    animation: 10s linear infinite bounce-y;
}

.shape-2 {
    width: 630px;
    height: 783px;
    top: -370px;
    left: 0;
    background-image: url(../images/shape-2.webp);
    z-index: -1;
}

.shape-1 {
    width: 589px;
    height: 568px;
    top: -180px;
    right: 0;
    background-image: url(../images/shape-1.png);
    z-index: -1;
}

@keyframes bounce-y {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
}

.about-section .content-column .inner-column .text2 {
    color: #000;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-section .content-column .inner-column .cnts {
    font-size: 14px;
    margin-bottom: 10px;
}

.about-section .image-box .image img {
    position: relative;
    max-width: 100%;
    width: 100%;
    z-index: 3;
    border-radius: 5px;
}

.about-section .image-box .experience {
    position: absolute;
    border-radius: 5px;
    left: 30px;
    bottom: 8px;
    height: 170px;
    width: 170px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    z-index: 9;
}

.about-section .image-box .experience img {
    max-width: 100%;
    border-radius: 5px;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.about-section .inner-column ul {
    margin-bottom: 0px;
    display: flex;
    gap: 10px;
    padding: 0;
    padding-top: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-section .inner-column ul li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
}

.about-section .inner-column ul li i {
    color: var(--primary-color);
    font-size: 18px;
    padding-right: 5px;
}

.why-choose-us-section {
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(2, 2, 2, 0.68)), url(../images/bg-why-choose-us.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.why-choose-us-section .why-choose-us-card {
    background-color: var(--white);
    transition: var(--transition);
    border: 2px dashed var(--primary-color) !important;
    border-radius: 20px;
    height: 100%;
}

.why-choose-us-section .why-choose-us-card:hover {
    border: 2px dashed var(--white) !important;
    transform: translateY(-5px);
    transition: all ease-in-out .5s;
    background-color: var(--primary-color);
    color: var(--white) !important;
}

.why-choose-us-section .why-choose-us-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.why-choose-us-section .why-choose-us-card .card-body .why-choose-us-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Playfair Display", "Bookman", serif !important;
}

.why-choose-us-section .why-choose-us-card:hover .card-body .why-choose-us-title {
    color: var(--white);
}

.why-choose-us-section .why-choose-us-card:hover svg {
    transform: scale(-1) rotate(180deg);
}

.why-choose-us-section .why-choose-us-card .card-body .why-choose-us-contnt {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.why-choose-us-section .why-choose-us-card .card-body .benefit-icn {
    width: 5rem;
    aspect-ratio: 1;
    background-color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* box-shadow: inset -0.1rem 0.1rem 0.1rem rgb(255 255 255 / .5), -0.1rem 0.1rem 0.25rem rgb(0 0 0 / .25); */
}

.why-choose-us-section .why-choose-us-card .card-body .benefit-icn svg {
    font-size: calc(5rem / 3);
    color: var(--black);
    height: 100%;
    width: 40px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.excellence-section .stories {
    padding: 8px 8px 15px 8px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    /* margin-bottom: 20px; */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.excellence-section .stories::after {
    transform: translateY(-50%);
    content: "";
    width: 5px;
    height: 50%;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: 50%;
    z-index: -1;
    transition: 0.5s;
}

.excellence-section .stories:hover:after {
    width: 100%;
    height: 100%;
    left: 0;
}

.excellence-section .stories:hover {
    color: var(--white);
}

.excellence-section .stories .number {
    font-size: 35px;
    font-weight: 600;
}

.excellence-section .stories .cnts {
    font-size: 13px;
    font-family: "Playfair Display", "Bookman", serif !important;
}

.shape-circle {
    background-color: #f5f5f5;
    height: 164px;
    width: 450px;
    position: absolute;
    border-radius: 50%;
    animation: 4s linear 0s infinite normal none running MoveZoomIn;
    /* right: 50px; */
    top: 32px;
    z-index: -1;
    background-color: #1397cc;
    opacity: .05;
    left: 32%;
    border-radius: 10px;
}

@keyframes MoveZoomIn {
    0% {
        transform: scale(.7);
        -webkit-transform: scale(.7);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.cta-section .bg-cta {
    border-radius: 12px;
    background-color: rgb(19 151 204);
    position: relative;
    z-index: 3;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(1 136 181) 52.42%, rgb(0 138 183) 100%);
}

.cta-section .cta-content {
    padding: 30px 40px;
}

.cta-section .cta-content .cta-heading {
    color: var(--white);
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
    margin-bottom: 20px;
}

.excellence-section {
    background-color: #f7f7f7;
    position: relative;
    z-index: 9;
}

.excellence-section .excellence-cards {
    height: 100%;
}

.excellence-section .excellence-cards .inspir {
    position: relative;
    padding: 1.5rem;
    border-radius: .75rem;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    /* overflow: hidden;  */
    width: 100%;
    height: 100%;
}

.excellence-section .excellence-cards .inspir::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: -10;
    width: 70px;
    height: 70px;
    border-radius: 0.75rem;
    background-image: linear-gradient(to right, var(--primary-color), rgba(6, 75, 120, 0.1), rgba(19, 151, 204, 1));
    transition-duration: 0.3s;
}

.excellence-section .excellence-cards .inspir::after {
    content: "";
    position: absolute;
    bottom: -3px;
    right: -3px;
    z-index: -10;
    width: 70px;
    height: 70px;
    border-radius: 0.75rem;
    border-bottom-right-radius: 0;
    background-image: linear-gradient(to left, var(--primary-color), rgba(6, 75, 120, 0.1), rgba(19, 151, 204, 1));
    transition-duration: 0.3s;
}

.excellence-section .excellence-cards .inspir:hover:before {
    content: '';
    width: 100%;
    height: 100%;
}

.excellence-section .excellence-cards .inspir:hover:after {
    content: '';
    width: 100%;
    height: 100%;
}

.excellence-section .excellence-cards .inspir .title {
    font-family: "Playfair Display", Bookman, serif !important;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 30px;
}

.excellence-section .excellence-cards .inspir .descr {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

.excellence-section .excellence-cards .inspir .icon {
    background-color: #064b781a;
    border-radius: 9999px;
    border-bottom-right-radius: 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 2px solid #e5e7eb;
    margin-bottom: 15px;
    transition: var(--transition);
}

.excellence-section .excellence-cards .inspir .icon svg {
    width: 2.5rem;
    height: 2.5rem;
    fill: var(--primary-color);
    transition: var(--transition);
}

.excellence-section .excellence-cards .inspir:hover .icon {
    background-color: var(--primary-color);
}

.excellence-section .excellence-cards .inspir:hover .icon svg {
    fill: var(--white);
}

.make-inida-section {
    /* background-color: var(--primary-color); */
    background: linear-gradient(90deg, rgb(1 136 181) 52.42%, rgb(0 138 183) 100%);
}

.make-inida-section .bg-seamless {
    background-color: #ffffff29;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 1.89347px 9.78694px rgba(96, 155, 255, 0.25);
}

.make-inida-section .make-inida-img {
    border-radius: 10px;
    overflow: hidden;
}

.make-inida-section .content {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.idustries-we-serve-section .inner-column .text2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 10px;
}

.idustries-we-serve-section .inner-column ul {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    padding-top: 10px;
}

.idustries-we-serve-section .inner-column ul li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.idustries-we-serve-section .inner-column ul li i {
    color: var(--primary-color);
    font-size: 18px;
    padding-right: 5px;
}

.idustries-we-serve-section .idustries-we-serve-img img {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.blog-section {
    background-color: #f7f7f7;
}

.blog-section .blog-item {
    height: 100%;
    box-shadow: 0 27px 24px -37px rgba(0, 0, 0, .66);
    margin-bottom: 20px;
}

.blog-section .blog-item .blog-thumb {
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

/* .blog-section .blog-item .blog-thumb::before {
    content: "";
    background-color: #0c1e21;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.25;
    z-index: 1;
    pointer-events: none;
} */
.blog-section .blog-item .blog-thumb img {
    width: 100%;
    min-height: 250px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.blog-section .blog-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    left: 15px;
    top: 15px;
    text-align: center;
    background: rgb(19 151 204 / 35%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 6px;
    z-index: 2;
}

.blog-date .date {
    display: block;
    font-family: 'Mona Sans', sans-serif;
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: -0.96px;
    margin-bottom: 8px;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 1;
}

.blog-section .blog-item .blog-content {
    background-color: var(--white);
    padding: 25px 28px 35px 28px;
    height: 100%;
}

.blog-section .blog-item .blog-content .title {
    margin-bottom: 20px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-section .blog-item .blog-content .title a {
    font-family: "Playfair Display", Bookman, serif !important;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 30px;
}

.blog-section .blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-section .blog-meta span {
    color: #67787a;
    line-height: 1;
    font-size: 14px;
}

.blog-section .categories {
    font-size: 14px;
    line-height: 1;
    color: #0c1e21;
    font-weight: 500;
    padding: 2px 7px 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #c9d1d1;
}

.blog-section .text-btn .btn-text {
    color: black;
    font-size: 14px;
    font-weight: 600;
}

.blog-section .text-btn .btn-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    line-height: 1;
    width: 25px;
    height: 25px;
    overflow: hidden;
    background-color: var(--black);
    border-radius: 50%;
}

.blog-section .text-btn .btn-icon i {
    color: var(--white);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer_section .inner_section {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.7) 100%), url(../images/bg-footer.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_section .inner_section::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.footer_section .inner_section .sub_fluid {
    z-index: 2;
}

.footer_section .inner_section .sub_fluid .footer_box.card {
    margin: -95px 0px 0px 0px;
    border-radius: 14px;
}

.footer_section .inner_section .sub_fluid .footer_box.card .card-body .footerlogo img {
    /* height: 60px; */
    height: auto;
    max-width: 180px;
}

.footer_section .inner_section .sub_fluid .footer_box.card .card-body p {
    font-size: 14px;
}

.footer_section .inner_section .sub_fluid .footer_box .social_icon {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer_section .inner_section .sub_fluid .footer_box .social_icon a {
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    width: 40px;
    height: 40px;
    transition: all ease-in-out .5s;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_section .inner_section .sub_fluid .footer_box .social_icon a i {
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 0;
    transition: all ease-in-out .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_section .inner_section .sub_fluid .footer_box .social_icon a:hover {
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    background: var(--primary-color);
}

.footer_section .inner_section .sub_fluid .footer_box .social_icon a:hover i {
    transform: rotate(360deg);
    color: #fff;
}

.footer_section .inner_section .sub_fluid .footer_box .box_head {
    font-size: 20px;
}

.footer_section .inner_section .sub_fluid .footer_box .box_head span {
    color: var(--primary-color);
}

.footer_section .inner_section .sub_fluid .footer_box .list-unstyled li a {
    font-size: 14px;
}

.footer_section .inner_section .sub_fluid .copyright {
    border-top: 1px solid var(--white);
}

.footer_section .inner_section .sub_fluid .copyright .copyrht {
    font-size: 14px;
    color: #99a0a2;
}

.idustries-section {
    background-color: #F7F9FB;
}

.idustries-section .industry-contnt {
    background-color: #F7F9FB;
    padding: 20px 20px;
    border-radius: 15px;
    border-left: 3px solid #1397cc;
    border-right: 3px solid #1397cc;
    background-color: #f4f4f4;
    box-shadow: 0px 1.89347px 9.78694px rgba(96, 155, 255, 0.25);
}

.idustries-section .industry-contnt .industries-img img {
    border-radius: 10px;
}

.idustries-section .industry-contnt .heading {
    font-size: 28px;
    font-weight: 700;
    color: #1397cc;
    line-height: 38px;
    font-family: 'Alegreya', serif;
}

.idustries-section .industry-contnt .conts {
    font-size: 14px;
    line-height: 24px;
}

.soulution-and-services-section .inner-column .text2 {
    font-size: 14px;
    line-height: 24px;
}

.soulution-and-services-section .services-content .service_img img {
    border-radius: .75rem;
    height: 230px;
    object-fit: cover;
    width: 100%;
}

.soulution-and-services-section .services-content .conts {
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
}

.soulution-and-services-section .services-content .conts a {
    color: #1397cc !important;
}

.who-we-do-section {
    background-color: #f7f7f7;
}

.who-we-do-section .cnts {
    font-size: 16px;
    font-weight: 500;
}

.who-we-do-section .who-we-do-content {
    border-radius: 30px;
    box-shadow: rgb(25 154 204) 1.95px 1.95px 2.6px;
    background: #199acc0a;
    padding: 25px 25px;
    height: 100%;
}

.who-we-do-section .who-we-do-content .heads {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
    font-family: "Playfair Display", "Bookman", serif !important;
}

.who-we-do-section .who-we-do-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.who-we-do-section .who-we-do-content ul li {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.who-we-do-section .who-we-do-content ul li i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 8px;
}

.our-values-section {
    background-color: rgb(19 21 20 / 1);
}

.our-values-section .excellence-cards {
    background-image: linear-gradient(to bottom, #292929, #131514);
    border-radius: .5rem;
    gap: .625rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    padding-top: 3rem;
    position: relative;
}

.our-values-section .excellence-cards .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.our-values-section .excellence-cards .descr {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.our-values-section .excellence-cards .values-icon {
    background-color: var(--primary-color);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    transform: translateY(-50%);
}

.our-values-section .excellence-cards .values-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.mision-section .mission-content {
    padding: 1.5rem;
    height: 100%;
}

.mision-section .mission-content .vision-cont {
    height: 100%;
    border-radius: .5rem;
    padding: 1.5rem;
    padding-top: 2.5rem;
    position: relative;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
}

.mision-section .mission-content .vision-cont .heads {
    position: relative;
    font-size: 24px;
    font-weight: 600;
}

.mision-section .mission-content .vision-cont .heads::before {
    content: '';
    position: absolute;
    top: -16px;
    top: -16px;
    width: 40px;
    height: 4px;
    background: linear-gradient(to right, #d9eeff 0%, var(--primary-color) 100%);
}

.mision-section .mission-content .vision-cont .cnts {
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
}

.mision-section .mission-content .vision-cont .mission-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    transition: var(--transition);
    border-radius: 5px;
}

.mision-section .mission-content .vision-cont .mission-icon svg {
    height: 40px;
    width: 40px;
    fill: var(--primary-color);
    transition: var(--transition);
}

.mision-section .mission-content .vision-cont:hover .mission-icon {
    background-color: var(--primary-color);
}

.mision-section .mission-content .vision-cont:hover .mission-icon svg {
    fill: var(--white);
}

.contact-section {
    padding-top: 133px;
    padding-bottom: 150px;
    /* background-image: url(../images/banner-contact-us.webp); */
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(2, 2, 2, 0.68)), url(../images/banner-contact-us.webp) no-repeat;
    background-position: center !important;
    background-size: cover !important;
}
.news-details-section { 
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(2, 2, 2, 0.68)), url(../images/news-banner-img.webp) no-repeat;
}
.blogs-details-section { 
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(2, 2, 2, 0.68)), url(../images/blog-banner-img.webp) no-repeat;
}
.contact-section .contact-breadcrumb nav ol {
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 5px 12px;
}

.contact-section .contact-breadcrumb .heads {
    font-family: 'Alegreya', serif;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 50px;
    line-height: 60px;
}

.contact-section .contact-breadcrumb nav ol li a {
    color: #a9b8b8;
}

.contact-section .contact-breadcrumb nav ol li {
    color: #a9b8b8;
    font-size: 12px;
    font-weight: 500;
}

.contact-section .contact-breadcrumb nav ol li a i {
    color: var(--primary-color);
}

.contact-section .contact-breadcrumb nav ol li.active {
    color: var(--white);
}

.contact-info-card {
    box-shadow: 0px 1.89347px 9.78694px rgba(96, 155, 255, 0.25);
    border-radius: 10px;
    text-align: center;
    /* border: 1.5px solid #1397cc; */
    border-left: 3px solid #1397cc;
}

.contact-info-card .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.contact-info-card .card-body .icons {
    height: 60px;
    width: 60px;
    /* background-color: #1397cc; */
    border-radius: 50%;
    /* color: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1397cc;
    color: #1397cc;
}

.contact-info-card .card-body .icons i {
    font-size: 22px;
}

.contact-info-card .card-body .heads {
    font-size: 18px;
    font-weight: 600;
}

.contact-info-card .card-body .cnts {
    font-size: 14px;
    font-weight: 400;
}

.contact-info-card .card-body .cnts a {
    color: var(--black);
}

.contact-form-section .form-section {
    box-shadow: 0px 1.89347px 9.78694px rgba(96, 155, 255, 0.25);
    border-radius: 20px;
}

.contact-form-section .form-section .heads {
    font-size: 15px;
    line-height: 26px;
    font-weight: 600;
}

.contact-form-section .form-section .form-floating .form-control {
    /* border: 1px solid #1397cc; */
    border-left: 3px solid #1397cc;
    box-shadow: none;
    outline: 0;
    border-radius: 4px;
}

.contact-form-section .form-section .form-floating label {
    font-size: 14px;
}

.contact-form-section .map {
    height: 100%;
    border: 2px solid #1397cc;
    border-radius: 7px;
    overflow: hidden;
}

.contact-form-section .map iframe {
    height: 100%;
}

.manufacuring-section {
    background-image: linear-gradient(to top, #e6f8ff, #e7f8ff, #fff);
    padding-bottom: 0px !important;
}

.manufacuring-section .content-column .inner-column .text2 {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.capabilities-carousel {
    background-color: rgb(29 29 29 / 1);
    /* padding: 3rem; */
    border-radius: 1.5rem;
}

.capabilities-carousel .owl-nav::before {
    content: '';
    position: absolute;
    background-image: url(https://www.imgglobalinfotech.com/public/tailwind/img/svg/clipLeftBottomIcon.svg);
    bottom: -11px;
    background-repeat: no-repeat;
    background-position: center center;
    left: -26%;
    z-index: 99;
    height: 46px;
    width: 44px;
}

.capabilities-carousel .owl-nav::after {
    content: '';
    position: absolute;
    background-image: url(https://www.imgglobalinfotech.com/public/tailwind/img/svg/clipRightBottomIcon.svg);
    bottom: -19px;
    background-repeat: no-repeat;
    background-position: center center;
    right: -40%;
    z-index: 99;
    height: 62px;
    width: 80px;
}

.capabilities-section .capabilities-carousel .item {
    /* background-color: rgb(29 29 29 / 1); */
    color: #fff;
    padding: 3rem;
    border-radius: 1.5rem;
    padding-bottom: 0px;
}

.capabilities-section .capabilities-carousel .item .heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 15px;
}

.capabilities-section .capabilities-carousel .item .conts {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.capabilities-section .capabilities-carousel .item .content-section ul {
    margin-bottom: 0px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 18px;
}

.capabilities-section .capabilities-carousel .item .content-section ul li {
    font-size: 14px;
    list-style: disc;
}

.capabilities-section .nav-design {
    position: absolute;
    justify-content: center;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0px;
}

.capabilities-section .nav-design .new-navs {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
    background-color: #fff;
    padding: 22px 52px;
}

.capabilities-section .nav-design .new-navs .size-6 {
    left: 0px;
    width: 1.5rem;
    height: 1.5rem;
    transform: translateX(-100%);
    z-index: 10;
}

.capabilities-section .nav-design .new-navs .size-7 {
    right: 0px;
    transform: translateX(100%);
    z-index: 10;
    width: 1.5rem;
    height: 1.5rem;
}

.capabilities-section .owl-nav {
    display: flex;
    justify-content: center;
    top: -40px;
    position: relative;
    gap: 6px;
    background: #fff;
    left: 46%;
    display: inline-flex;
    top: 4px;
    padding: 5px 20px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;

}

.capabilities-section .owl-nav button {
    background-image: linear-gradient(to bottom, #fff, #666) !important;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    position: relative;
}

.capabilities-section .owl-nav button::before {
    content: '';
    position: absolute;
    background-color: black;
    inset: .125rem;
    border-radius: 50%;
}

.capabilities-section .owl-nav button i {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    position: absolute;
    left: 8px;
    top: 12px;
}

.capabilities-section .capablities-img {
    padding: 1.5rem;
    background-image: linear-gradient(to bottom right, #fed4c5, #cd7650);
    background-image: linear-gradient(to bottom right, #b0e8ff, #419fc5);
    border-radius: 20px;
}

.why-choose-section {
    background-image: linear-gradient(to bottom, #e6f8ff, #e7f8ff, #fff);
}

.why-choose-section .inner-column .text2 {
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    margin-bottom: 5px;
}

.why-choose-section .inner-column ul {
    padding-left: 0px;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-choose-section .inner-column ul li {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.why-choose-section .inner-column ul li i {
    font-size: 20px;
    color: #1397cc;
}

.why-choose-section .manufacturing-img {
    /* background-color: #fff;
    background-image: linear-gradient(to bottom right, #b0e8ff, #61a9c6); */
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-section .testimonial-carousel .card-detail {
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    box-shadow: 0 .313rem .875rem rgba(45, 49, 54, .09);
}

.testimonial-section .testimonial-carousel .card-detail .heads {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 32px;
}

.testimonial-section .testimonial-carousel .card-detail .cnts {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
}

.testimonial-section .card-detail .card-top .quot-icon {
    position: absolute;
    top: 5%;
    right: 5%;
}

.testimonial-section .card-detail .card-top .quot-icon .avatar-md {
    height: 4rem;
    width: 4rem;
}

.testimonial-section .card-detail .reviewer {
    background-color: #f9f7f7;
    transition: all linear .3s;
}

.testimonial-section .card-detail:hover .reviewer {
    background-color: var(--primary-color);
    transition: all linear .3s;
}

.testimonial-section .card-detail .reviewer::after {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    background-color: #f9f7f7;
    bottom: calc(100% - 10px);
    left: 15%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.testimonial-section .card-detail .reviewer .author-img {
    height: 5rem;
    width: 5rem;
}

.testimonial-section .card-detail:hover .authr-name {
    font-size: 16px;
    font-weight: 500;
}

.testimonial-section .card-detail .authr-location {
    font-size: 16px;
    font-weight: 500;
}

.testimonial-section .card-detail:hover .authr-name {
    color: #f9f7f7;
}

.testimonial-section .card-detail:hover .authr-location {
    color: #f9f7f7;
}

.pagination-wrapper {
    margin-top: 20px;
}

.pagination {
    list-style: none;
    padding-left: 0;
    display: inline-flex;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border: 1px solid var(--primary-color);
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color) !important;
    background: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
}

.pagination .page-item.disabled .page-link {
    background-color: var(--primary-color);
    color: #888;
    cursor: not-allowed;
    opacity: 0;
}

.page-item:first-child .page-link {
    background: var(--primary-color);
    color: #fff !important;
}

.page-item:last-child .page-link {
    background: var(--primary-color);
    color: #fff !important;
}

.blog-details {
    background: url(../images/bg-img.webp);
    background-position: center;
    background-size: 36%;
}

.blog-details .blog-box {
    border: 1px solid #ecf1f9;
    box-shadow: 0px 7px 14px 0px rgba(234, 237, 242, 0.5);
    border-radius: 10px;
}

.blog-details .blog-box img:first-child {
    border-radius: 5px;
    transition: all .2s;
}

.blog-details .blog-box img:first-child:hover {
    border-radius: 10px;
    transition: all .2s;
    transform: scale(1.2) rotate(2deg);
    cursor: pointer;
}
.blog-details .blog-box h2{
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 1rem;
}
.blog-details .blog-box h3{
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 1rem;
}
.blog-details .blog-box .cnts{
    font-size: 14px;
    line-height: 25px;
}
.blog-details .blog-box .heading{
    font-size: 22px;
    line-height: 32px;
    color: #1397cc;
}
.blog-details .blog-box .post-left ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog-details .blog-box .post-left ul li {
    margin-bottom: 5px;
    margin-right: 20px;
    border: 2px solid #e9e9e9;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
} 

.blog-details .blog-box .post-left ul li:last-child {
    margin-right: 0
}

.blog-details .blog-box blockquote {
    font-size: 17px;
    line-height: 1.19;
    padding: 16px 38px;
    font-weight: 500;
    display: block;
    position: relative;
    margin: 6px 0 42px 0;
    color: #0f2239;
    font-style: italic;
    border: 1px solid #d0dbe9;
    border-radius: 10px;
} 
.blog-details .blog-box blockquote cite {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    font-style: normal;
    white-space: nowrap;
    position: absolute;
    bottom: -17px;
    left: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 7px 40px 7px 15px;
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 25px) 100%, 0% 100%);
    border-radius: 5px;
}

.blog-details .blog-box blockquote::before, .wp-block-quote::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    height: 50px;
    width: 33px;
    background-color: var(--white);
}

.blog-details .blog-box blockquote::after, .wp-block-quote::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0px;
    height: 20px;
    width: 25px;
    background-color: var(--primary-color);
    -webkit-clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
    clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
}

.blog-details .blog-box .blog-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-details .blog-box .blog-list li{
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #1397cc;
    list-style: disc;
}
.blog-details .blog-box2 {
    border: 1px solid #ecf1f9;
    box-shadow: 0px 7px 14px 0px rgba(234, 237, 242, 0.5);
    border-radius: 10px;
    position: sticky;
    top: 10px;
}

.blog-details .blog-box2 button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 5px 12px;
    background: var(--primary-color);
    border: none;
    z-index: 9999;
}

.blog-details .blog-box2 .card-header {
    background-color: #f8f8f8;
    border-left: 5px solid var(--primary-color);
}
.blog-details .blog-box2 .card-header .card-title{
    font-size: 17px;
    line-height: 27px;
}
.blog-details .blog-box2 .card .blog-post .post-info .cnts{
    font-size: 14px; 
    color: var(--black);
}
.blog-details .blog-box2 .card .social_icon {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
}

.blog-details .blog-box2 .card .social_icon a {
    border-top-left-radius: 18px;
    border-bottom-right-radius: 18px;
    width: 40px;
    height: 40px;
    transition: all ease-in-out .5s;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-details .blog-box2 .card .social_icon a i {
    font-size: 16px;
    color: #f8f8f8;
    margin-right: 0;
    transition: all ease-in-out .5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-details .blog-box2 .card .social_icon a:hover {
    border-top-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 18px;
    background: #f8f8f8;
    border: 1px solid rgba(0, 0, 0, .125);
}

.blog-details .blog-box2 .card .social_icon a:hover i {
    transform: rotate(360deg);
    color: var(--primary-color);
}
.blog-details-table .table thead{
    background-color: #1397cc;
    color: #fff;
    border: 0px;
}
.blog-details-table .table thead tr th{
    font-size: 16px;
    line-height: 26px;
    letter-spacing: .5px;
    font-weight: 600;
    box-shadow: none;
    border: 0px;
}
.blog-details-table .table tbody tr td{
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}
.blog-details-table .table>:not(:first-child){
    border-top: 0px;
}
.terms-section{
    background: linear-gradient(rgba(0, 0, 0, 0.63), rgba(2, 2, 2, 0.68)), url(../images/terms-bg-img.jpg) no-repeat;
    background-position: center bottom !important;
    background-size: cover !important; 
} 
/* .terms-content-section .heading{
    position: relative;
    font-size: 35px;
    line-height: 45px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0px;
    font-family: 'Alegreya', serif;
    padding-bottom: 6px;
    text-shadow: 0px 0px 1px #000;
} */
.terms-content-section .heads{
    font-size: 33px;
    font-weight: 700;
    color: #1397cc;
    line-height: 43px;
    font-family: 'Alegreya', serif;
}
.terms-content-section .cnts{
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.terms-content-section .details{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.terms-content-section .details li{
    list-style: disc;
    font-size: 14px;
    font-weight: 500;
} 

.thanku .thnk-heading {
    font-size: 40px;
    line-height: 50px;
    text-shadow: 1px 1px 2px black;
    color: var(--primary-color);
    font-weight: 600;
}
.thanku .thnk-cnts {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-top: 15px;
}
.thanku .thnk-conts {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin-top: 15px;
}
.thanku .thank-btn {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 47px;
    margin-top: 20px;
}
.thanku .thnk-cnts a {
    color: var(--primary-color);
    font-weight: 600; 
}