:root {
    --font: "Open Sans", sans-serif;
    --font2: "Open Sans", sans-serif;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --pri: #ee3137;
    --sec: #000;
    --text-color: #192324;
    --text-light: #666;
    --para-color: #444;
}

body {
    background: #fff;
    font-family: var(--font);
    color: var(--para-color);
    font-size: 16px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: normal;
    line-height: 1.4;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

p {
    color: var(--para-color);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: var(--font2);
    line-height: 1.6;
}

a {
    display: block;
    text-decoration: none;
}

p a {
    display: inline;
}
.text-pri{    color: var(--pri);}
header {
    position: relative;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.logo {
    max-width: 260px;
}

.top-bar {
    background-color: #fff;
}

.top-li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iso-bx {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 15px;
    height: 44px;
    border-right: 1px solid rgba(187, 145, 145, 0.2);
}

.top-li .iso-bx:first-child {
    padding-left: 0;
}

.top-li .iso-bx:last-child {
    border-right: none;
}

.iso-bx .img {
    width: 32px;
}

.iso-bx .tx {
    margin: 0;
    color: var(--pri);
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
}

.menubar {
    position: relative;
    background-color: var(--pri);
}

.menubar.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.menubar .main-btn {
    border: 1px solid #fff;
}

.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    width: 40px;
    height: 40px;
    background: #fdcb41;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 25px;
    border-radius: 0;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    position: relative;
    z-index: 99;
    padding: 5px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.navigation .navbar button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 15%;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
    top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
    top: 18px;
}

.navigation .navbar button span:nth-child(4) {
    top: 28px;
}

.navigation .navbar button.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
    transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.navigation .navbar button.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.navigation .menu {
    display: block
}

.navigation .menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: end;
    display: block;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 20px 10px;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: var(--font);
    background: transparent;
    font-weight: 400;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--text-color);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left
}

.navigation .menu ul li ul.cs-dropdown li:last-child {
    border: 0
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown {
    left: 100%;
    margin-top: -36px
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li ul.cs-dropdown {
    left: -100%;
    margin-top: -31px
}

.navigation .menu ul li ul.cs-dropdown {
    position: absolute;
    width: 285px;
    display: none;
    z-index: 99999;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease
}

.navigation .menu ul li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    display: none;
    transition: all .3s ease;
    width: 250px;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    display: block
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%
}

.navigation .menu ul li ul.cs-dropdown li:last-child a:after {
    display: none
}

.navigation .menu ul li ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a {
    background: #fff;
    color: #333
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown li a:hover {
    color: #fff;
    background: var(--pri)
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 14px;
    padding: 7px 13px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: normal;
    background: #f5f5f5;
    transition: all 0.3s ease;
    border-bottom: 0px solid transparent;
}

.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: 0 0 0 3px;
    color: #fff;
}

.navigation ul li.cs-submenu a button svg {
    width: 13px;
    height: 13px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--text-color);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #242424
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.navigation .menu ul>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: 100%;
    margin-top: -36px;
}

.navigation .menu ul>li>ul.cs-dropdown>li>ul.cs-dropdown>li>ul.cs-dropdown {
    left: -100%;
    margin-top: -31px;
}


.navigation .menu ul>li>ul.cs-dropdown>li:hover>ul.cs-dropdown {
    visibility: visible;
    opacity: 1;
}

.navigation .menu ul>li ul.cs-dropdown {
    position: absolute;
    width: max-content;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
    transition: all .3s ease;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin: 0;
    padding: 0;
    text-align: left;
}

.navigation .menu ul>li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgb(0 0 0 / 88%);
    transition: all .3s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: flex;
    align-items: center;
    justify-content: center
}

.search-box.search-elem.search-open {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.search-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: #fff;
    outline: 0;
    border: 0;
    color: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
}

.search-close:hover {
    background: var(--pri);
    color: #fff
}

.search-form {
    width: 100%;
    max-width: 500px;
    border-radius: 2px;
    border: 1px solid #fff;
    display: flex;
    margin: 0 20px
}

.search-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: 0 0;
    color: #fff;
    height: 46px;
    padding: 10px 15px;
}

.search-form input::placeholder {
    color: #c4c4c4;
}

.search-form button {
    background: 0 0;
    border: 0;
    outline: 0;
    color: #fff;
    padding-inline: 10px
}

.search-form button svg {
    width: 20px;
    height: 20px;
}

.search-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--sec);
    outline: 0;
    border: 0;
    color: #fff;
    text-align: center;
    align-content: center;
    padding: 0;
    line-height: 1;

}

.search-btn:focus,
.search-btn:hover {
    background: #eee;
    color: var(--pri);
}


.main-btn {
    padding: 10px 15px;
    border-radius: 10px;
    color: white;
    border: 1px solid var(--pri);
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background: var(--pri);
    outline: none;
    transition: 0.2s ease-in-out;
}

.main-btn:hover {
    background: var(--sec);
    color: white;
    border-color: var(--sec);
}

.main-btn.light {
    background: transparent;
    color: var(--pri);
}

.main-btn.light:hover {
    background: var(--pri);
    color: white;
}

.w-btn {
    padding: 12px 20px;
    color: white;
    border: 1px solid #00c966;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    text-transform: capitalize;
    white-space: nowrap;
    background-color: #00c966;
    outline: none;
    transition: 0.2s ease-in-out;
}

.w-btn:hover {
    border-color: #00c966;
    background-color: #00b95d;
}

.head-sec {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 28px;
}

.head-sec .tt {
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 600;
    font-size: 27px;
    line-height: 1.4;
    margin-bottom: 7px;
    position: relative;
    text-transform: capitalize;
}

.head-sec .tt span {
    color: var(--pri);
}

.head-sec.left {
    text-align: left;
}

.head-sec.left .tt::before {
    left: 0;
}

.head-sec p {
    font-size: 15px;
    color: var(--para-color);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

main,
main img {
    aspect-ratio: 1920 / 800;
    transition: 0.5s ease-in-out;
    /* transform: scale(1.01); */
    overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    z-index: 99;
    opacity: 1;

}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 14px;
    width: 14px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    background-color: var(--pri);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

@media (max-width:980px) {

    .carousel-control-next,
    .carousel-control-prev {
        width: 20px;
        height: 35px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 13px;
        width: 13px;
    }

    .carousel-control-prev {
        left: 0px;
        border-radius: 0 3px 3px 0;
    }

    .carousel-control-next {
        right: 0px;
        border-radius: 3px 0px 0px 3px;
    }
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: static;
    width: 70px;
    margin: 0 auto;
    margin-top: 20px;
}

.swiper-scrollbar-drag {
    background-color: var(--pri);
}

.swiper-next,
.swiper-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
    background: rgba(12, 23, 38, 0.5);
    color: #fff;
    width: 32px;
    height: 32px;
    z-index: 2;
    border-radius: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    text-align: center;
    /* align-content: center; */
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
    background: var(--pri);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.swiper-button-next,
.swiper-next {
    right: -17px;
    left: auto;
}

.swiper-button-prev,
.swiper-prev {
    left: -17px;
    right: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 10px;
    font-weight: bold;
}

.swiper-next.swiper-button-disabled,
.swiper-prev.swiper-button-disabled {
    opacity: 0.4;
}

.swiper_wrap {
    /* height: 100%;  */
    width: 100%;
    position: relative;
    display: block;
    text-align: left;
}

.section {
    padding: 55px 0px 55px;
}

.bg-light {
    background-color: #f7f7f7 !important;
}

.abt-tx .sub-tt {
    color: var(--pri);
    font-size: 16px;
    font-weight: 600;
}

.abt-tx .main-tt {
    color: var(--text-color);
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.3;
    margin-bottom: 12px;
}

.abt-tx .main-tt span {
    color: var(--pri);
}

.abt-tx p {
    text-align: justify;
}

.abt-img-bx {
    /* max-width: 470px;
    float: left;
    width: 100%;
    margin-right: 30px;
    margin-bottom: 30px;
} */
     max-width: 470px;
    float: left;
    width: 100%;
    margin-right: 30px; 
    overflow: hidden;
    border-radius: 10px;}

.abt-img-bx img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .07);
}

.counter-bx {
    background: var(--liner);
    background-color: var(--pri);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .07);
    height: 100%;
    padding: 20px;
    border-radius: 10px;
}

.counter-bx .title {
    color: #fff;
    font-weight: 700;
    font-size: 45px;
}

.counter-bx p {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
}

.abt-sec {
    overflow: hidden;
}

.abt-sec .img-bx,
.abt-sec .img-bx img {
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.abt-sec .tx-bx {
    background-color: var(--pri);
    color: white;
    height: 100%;
    align-content: center;
}

.abt-sec .tx-bx h1 {
    font-size: 32px;
    color: var(--sec);
}

.abt-sec .tx-bx h2,
.abt-sec .tx-bx h3 {
    font-size: 22px;
    color: white;
    line-height: 1.4;
}

.abt-sec .tx-bx p {
    color: white;
    text-align: justify;
}

.abt-sec .tx-bx .main-btn {
    border-color: #fff;
    color: white;
}

.abt-sec .tx-bx .main-btn:hover {
    background-color: white;
    color: var(--pri);
}

.cate-bx {
    background: white;
    margin-top: 3px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.cate-bx .img-bx {
    overflow: hidden;
}

.cate-bx img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.cate-bx .tx-bx {
    padding: 15px;
    background-color: #fff;
    text-align: center;
}

.cate-bx .tx-bx .tt {
    margin-bottom: 2px;
}

.cate-bx .tx-bx .tt a {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}

.cate-bx:hover .tx-bx .tt a {
    color: var(--pri);
}

.cate-bx .tx-bx .main-btn {
    padding: 8px 12px;
}

.feature-icon-sec {
    padding: 30px;
    background-color: #dfe4e6;
    border-radius: 10px;
}

.fect-icon-bx {
    margin-bottom: 0;
    text-align: center;
}

.fect-icon-bx .img {
    width: 100px;
    margin: 0 auto 10px;
}

.fect-icon-bx .img img {
    filter: invert(0) grayscale(1);
}

.fect-icon-bx .tx {
    margin-bottom: 0;
    font-weight: 600;
    font-family: var(--font);
    color: #3d3d3d;
}

.short-bx {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    transition: 0.1s linear;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.short-bx iframe,
.short-bx video {
    aspect-ratio: 35 / 62;
    transform: scale(1.01);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-bx {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    background: #fff;
}

.blog-bx .img-bx {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-bx .img-bx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s ease;
}

.blog-bx:hover .img-bx img {
    transform: scale(1.02);
    transform-origin: 50% 50%;
}

.blog-bx .tx-bx {
    padding: 15px 20px;
    background-color: #fff;
}

.blog-bx .tx-bx .tt a {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 3px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-bx .tx-bx .tt:hover a {
    color: var(--pri);
}

.blog-bx .tx-bx p {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 15px;
}

.read-mr {
    font-size: 14px;
    color: var(--pri);
    font-weight: 500;
    display: inline-block;
}

.read-mr:hover {
    color: var(--para-color);
}

.mini-blogs,
.qut-bx {
    background-color: #f7f7f7;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
    border-radius: 15px;
}

.qut-bx {
    text-align: center;
}

.qut-bx .tt {
    font-size: 25px;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}

.blog-bx.blog-card {
    display: flex;
    height: auto;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    align-items: start;
    gap: 15px;
    margin-bottom: 18px;
}

.mini-blogs .blog-bx.blog-card:last-child {
    margin-bottom: 0;
}

.blog-bx.blog-card .tx-bx {
    padding: 0;
}

.blog-bx.blog-card .tx-bx .tt a {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 3px;
    -webkit-line-clamp: 1;
}

.blog-bx.blog-card .tx-bx p {
    -webkit-line-clamp: 2;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 0;
}

.blog-bx.blog-card .img-bx img {
    border-radius: 10px;
}

.blog-sec .main-tt {
    padding-left: 20px;
    padding-block: 5px;
    font-weight: 600;
    border-left: 5px solid var(--pri);
    font-size: 25px;
    color: var(--text-color);
    margin-bottom: 25px;
}

.blog-sec .img-bx {
    margin: 15px auto;
    max-width: 700px;
}

.blog-sec .img-bx img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}

.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt,
.cmTitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    margin-bottom: 7px;
    line-height: 1.3;
}

.cmTitle {
    color: var(--pri);
    font-size: 18px;
    margin-bottom: 0;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt {
    font-size: 20px;
}

.content-sec ul {
    padding-left: 18px;
    margin: 0;
    margin-bottom: 10px;
    display: flow-root;
}

.content-sec p {
    margin-bottom: 8px;
}

.content-sec p,
.content-sec ul li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--para-color);
    text-align: justify;
    font-family: var(--font2);
    font-weight: 400;
}

.content-sec ul li {
    margin-bottom: 3px;
}

.content-sec ul li a {
    display: inline;
    color: var(--para-color);
}

ul.footer-menu-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 18px;
    list-style: none;
}

ul.footer-menu-list li a {
    margin-right: 15px;
    display: inline-block;
    line-height: 1.3;
    position: relative;
    color: #eee;
}

ul.footer-menu-list li a:hover {
    color: var(--sec);
}

ul.footer-menu-list li a::before {
    content: '|';
    padding: 0;
    font-size: 13px;
    position: absolute;
    right: -9px;
    top: 1px;
    color: var(--text-light);
}

ul.footer-menu-list li:last-child a::before {
    content: none;
}

.footer-banner {
    position: relative;
}

.footer-banner img {
    width: 100%;
    aspect-ratio: 32 / 7;
}

.footer-banner .tx-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.footer-banner .tx-bx .tt {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: capitalize;
    margin-bottom: 7px;
}

.footer-banner .tx-bx .tt span {
    color: var(--pri);
}

.footer-banner .tx-bx p {
    color: #333;
    line-height: 1.7;
}

.footer-banner .tx-bx p a {
    color: var(--pri);
    font-weight: 600;
}

footer {
    background: #ee3137;
    overflow: hidden;
    padding: 60px 0 30px;
}

footer .search-bx,
footer .search-bx input {
    background-color: white;
    height: 47px;
    border-radius: 30px;
    max-width: 340px;
}

footer .search-bx input::placeholder {
    color: var(--text-light);
}

footer .search-bx button {
    background-color: var(--pri);
    color: white;
    border-radius: 100%;
    width: 37px;
    height: 37px;
    margin-left: 2px;
}

footer .search-bx button:hover {
    color: white;
    background-color: var(--pri);
}

footer .search-bx button svg {
    width: 18px;
    height: 18px;
}

.ft-bx {
    position: relative;
    z-index: 1;
}

.ft-bx .logo {
    max-width: 300px;
}

.ft-bx .logo img {
    /* filter: drop-shadow(1px 1px 1px #ffffff); */
}

.ft-bx .con-bx {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
    gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
    min-width: 17px;
    width: 17px;
    height: 17px;
    color: #fff;
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 0px;
}

.ft-bx .con-bx p strong {
    font-weight: 600;
}

.ft-bx .con-bx a {
    font-weight: 500;
}

.ft-bx .con-bx a:hover {
    color: var(--sec);
}

.ft-bx .ft-tt {
    font-family: var(--font);
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    text-transform: capitalize;
    /* border-bottom: 1px solid; */
    margin-bottom: 12px;
}

.ft-bx p {
    color: #fff;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 500;
}

.ft-bx ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.ft-bx ul li a {
    font-weight: 500;
    font-size: 15px;
    color: #fff;
    font-family: var(--font2);
    padding: 4px 0;
    transition: 0.1s;
    display: inline-block;
}

.ft-bx ul li a:hover {
    color: var(--sec);
}

.ft-bx ul.social {
    display: flex;
    gap: 10px;
}

.ft-bx ul.social img {
    height: 33px;
    width: 33px;
    object-fit: contain;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}

.copyright {
    padding-top: 20px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.copyright p {
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

.copyright p a {
    color: #eee;
    display: inline;
}

.copyright p a:hover {
    color: var(--sec);
    /* text-decoration: underline; */
}

footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
    color: #fff;
    font-size: 18px;
}

footer .content-sec p,
footer .content-sec ul li {
    color: #eee;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.7;
}

.breadcum-sec {
    background: url(../images/about-banner.jpg);
    background-position: center;
    padding: 60px 0;
    background-size: cover;
    position: relative;
    z-index: 1;
    font-family: var(--font);
}

.breadcum-sec.breadcum-sec2 {
    background: #fff9ef;
    padding: 8px 0;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .02);
}

.breadcum-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0.3;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.breadcum-sec.breadcum-sec2::before {
    content: none;
}

.breadcum-sec .main-tt {
    font-size: 25px;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.breadcum-sec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
}

.breadcum-sec ul li {
    color: white;
    font-weight: 400;
    font-size: 16px;
    position: relative;
    font-family: var(--font2);
}

.breadcum-sec.breadcum-sec2 ul li {
    color: var(--pri);
    font-size: 15px;
}

.breadcum-sec ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="white" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m10 16 4-4-4-4"/> </svg>');
    position: absolute;
    top: -1px;
    right: -23px;
    width: 23px;
    height: 23px;
}

.breadcum-sec.breadcum-sec2 ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="23" height="23" fill="none" viewBox="0 0 24 24"> <path stroke="%23333" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="m10 16 4-4-4-4"/> </svg>');
}

.breadcum-sec ul li:last-child:before {
    content: none;
}

.breadcum-sec ul li a {
    color: white;
}

.breadcum-sec.breadcum-sec2 ul li a {
    color: var(--text-color);
}

.breadcum-sec ul li a:hover {
    color: var(--tri);
}

.breadcum-sec.breadcum-sec2 ul li a:hover {
    color: var(--pri);
}

.factSheet-sec {
    background: url(../images/bg/factsheet-bg.jpg) no-repeat;
    padding: 40px 0;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.factSheet-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0.5;
    z-index: -1;
    transition: 0.3s ease-in-out;
}

.factSheet-bx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.factSheet-bx .img-bx {
    width: 70px;
}

.factSheet-bx .tx-bx {
    width: calc(100% - 80px);
    color: white;
}

.factSheet-bx .tx-bx span {
    line-height: 24px;
    letter-spacing: 0.3px;
}

.factSheet-bx .tx-bx p {
    margin-bottom: 0;
    font-size: 18px;
    color: white;
    line-height: 33px;
    letter-spacing: 0.1px;
}

.certificate-bx {
    box-shadow: 0 .3rem 1rem 1px rgba(0, 0, 0, .15);
    border-radius: 10px;
    overflow: hidden;
    transition: .4s;
    background: #fff;
}

.certificate-bx .tt {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    border-top: 1px solid #eee;
}

.certificate-bx .img {
    position: relative;
}

.certificate-bx .img img {
    aspect-ratio: 73 / 104;
    object-fit: contain;
    object-position: center;
}

.certificate-bx .img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.certificate-bx:hover .tt {
    color: var(--pri);
}

.swiper-pagination {
    position: static;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background-color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--sec);
}

.category-page {
    padding: 60px 0;
}

.cate-tx h1,
.cate-tx h2,
.cate-tx h3 {
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: 700;
}

.cate-tx h2,
.cate-tx h3 {
    font-size: 18px;
    font-weight: 600;
}

.cate-tx ul {
    padding-left: 18px;
    margin: 0;
    margin-bottom: 10px;
    font-family: var(--font2);
}

.cate-tx p,
.cate-tx ul li {
    color: var(--para-color);
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 10px;
    font-size: 16px;
}

.cate-tx ul li {
    margin-bottom: 2px;
}

.cate-tx .price {
    font-size: 16px;
    letter-spacing: 0.1px;
    color: var(--pri);
    font-weight: 600;
    margin: 6px 0 15px;
}

.cate-tx table {
    margin-bottom: 15px;
    font-family: var(--font);
    width: 100%;
    max-width: 100%;
}

.cate-tx table tr td {
    padding: 5px 8px;
    font-weight: 500;
    font-family: var(--font2);
    border: 1px solid #E1E1E1;
    color: var(--text-color);
}

.cate-tx table tr td:first-child {
    color: var(--para-color);
}

.cate-img img {
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.cate-img .mySwiper {
    margin-top: 0px;
    max-height: 550px;
}

.cate-img .mySwiper img {
    cursor: pointer;
}

.mySwiper .swiper-slide {
    height: 100%;
    opacity: 0.6;
}

.certificate-sec {
    background: url(https://tiimg.tistatic.com/catalogs/template112168/para-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* 
.certificate-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--pri);
    z-index: -1;
    opacity: .98;
} */

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.counter-sec2 {
    background: url(../images/certificate/bg.jpg);
    background-attachment: fixed;
    display: block;
    overflow: hidden;
    padding: 50px 0px;
    position: relative;
    z-index: 1;
}

.counter-sec2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #c9252a;
    z-index: -1;
    opacity: 0.97;
}

.counter-sec2 .tt {
    color: white;
    font-weight: 600;
    text-align: right;
    letter-spacing: 1px;
    font-size: 36px;
    line-height: 1.2;
}

.counter-sec2 p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
}

.counter-bx2 {
    position: relative;
    padding-top: 8px;
    /* text-align: center; */
}

.counter-bx2 .title {
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 40px;
    line-height: 53px;
}

.counter-bx2 p {
    font-style: italic;
}

.counter-bx2::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
}

.counter-sec2 .btm-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.counter-sec2 .btm-bar p {
    font-weight: 400;
    font-size: 17px;
}

.counter-sec2 .btm-bar p a {
    color: #fff;
    display: inline;
    font-weight: 600;
}

.eq-btn {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 6px 0px;
    letter-spacing: 0.3px;
    transition: 0.2s ease-in-out;
    display: inline-flex;
}

.eq-btn:hover {
    background: #fff;
    color: var(--pri);
}

.client-sec {
    background-color: #f9f9f9;
    background-image: url(../images/bg/about-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;   overflow: hidden;
    display: flow-root;
    width: 100%;
}

.swiper-wrapper {
    transition-timing-function: linear;
}

.client-img {
    margin: 2px 0;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .08);
    border-radius: 1px;
    overflow: hidden;
}

.client-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: center;
}

.gallery-sec {
    padding: 60px 0;
}
/* 
.masonry { 
    column-gap: 20px;
} */

.masonry .item {
    display: inline-block;
    background: #fff;
    position: relative;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    -webkit-transition: 1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}

.masonry .item .img-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    opacity: 0;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.masonry .item:hover .img-bx::before {
    opacity: 0.5;
}

.masonry .item:before,
.masonry .item:after {
    position: absolute;
    content: '';
    height: 0px;
    width: 0px;
    background-color: transparent;
    transition: all .3s ease-in-out;
    opacity: 0;
    z-index: 2;
}

.masonry .item:before {
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    top: 20px;
    left: 20px;
}

.masonry .item:after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: 20px;
    right: 20px;
}

.masonry .item:hover:before,
.masonry .item:hover:after {
    height: 60px;
    width: 60px;
    opacity: 1;
}

.masonry .item img {
    max-width: 100%;
}

.masonry .item .link-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transition: all .5s ease-in-out;
    pointer-events: none;
}

.masonry .item:hover .link-wrap {
    opacity: 1;
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

.form-group {
    position: relative;
    margin-bottom: 12px;
}

.modal-header {
    padding: 0;
    padding-inline: 20px;
    padding-top: 18px;
    border-radius: 0;
    border: 0;
    /* border-bottom: 1px solid #e3e3e3; */
}

.modal-content {
    border-radius: 10px;
    overflow: hidden;
}

@media (min-width: 576px) {
    .modal-sm {
        max-width: 330px;
    }
}

.modal-body {
    padding: 13px 22px 20px;
}

.modal-content .main-tt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--pri);
    margin-bottom: 15px;
}

.btn-close {
    float: right;
    box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
    box-shadow: none;
}

.pop-img {
    aspect-ratio: 2 / 3;
}

.pop-img img {
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.form-label {
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font);
    font-weight: 500;
    margin-bottom: 4px;
}

.form-control,
.form-select,
.SumoSelect>.CaptionCont {
    font-weight: 400;
    border-radius: 5px;
    font-size: 15px;
    padding: 8px 12px;
    color: var(--text-color);
    font-family: var(--font);
    border-color: #e3e3e3;
    height: 45px;
    align-content: center;
}

textarea.form-control {
    min-height: 80px;
    resize: none;
    align-content: start;
}

.form-control:focus {
    border-color: var(--text-light);
    box-shadow: none;
}

.blog-details {
    padding: 60px 0;
}

.blog-details .main-tt,
.blog-details h2,
.blog-details h3 {
    font-size: 22px;
    color: var(--text-color);
    line-height: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-details .img-bx {
    margin: 15px auto;
    max-width: 700px;
}

.blog-details .img-bx img {
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16 / 10;
}

.blog-details .blog-card .img-bx {
    margin: 0;
    margin-bottom: 15px;
}

.blog-details .blog-card .img-bx img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.blog-details .content-bx p {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
    text-align: justify;
    margin-bottom: 10px;
}

.blog-details h2,
.blog-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-sec {
    padding: 60px 0;
}

.contact-container {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 3px;
    overflow: hidden;
    padding: 30px 25px;
}

.contact-bx .head-sec {
    margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
    font-size: 20px;
    line-height: 28px;
}

.contact-bx .head-sec .tt::before {
    top: 40px;
}


.contact-bx .con-bx {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.contact-bx .con-bx .ic-bx {
    min-width: 35px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff4f4;
}

.contact-bx .con-bx .ic-bx svg {
    min-width: 15px;
    width: 15px;
    height: 15px;
    color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
    font-family: var(--font);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    margin-bottom: 0px;
}

.contact-bx .con-bx a {
    font-weight: 600;
}

.contact-bx .con-bx a:hover {
    color: var(--pri);
}

.map-bx {
    width: 100%;
    display: block;
}

.sitemap-sec {
    padding: 60px 0;
}


.sitemap {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
    padding: 0px 0px 0px 15px;
    margin-bottom: 5px;
    font-family: var(--font);
    color: var(--text-color);
    font-weight: 500;
}

.sitemap li ul {
    border-left: 1px solid #666;
    padding: 0;
}

.sitemap li a {
    color: #333;
    font-size: 14px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--text-color);
}

.market-sec {
    padding: 60px 0;
    font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
    font-size: 24px;
    color: var(--text-color);
    line-height: 26px;
    margin: 20px 0 15px;
    font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
    font-size: 20px;
    font-weight: 600;
}

.market-sec .market-bx {
    padding: 10px 12px;
    background-color: #E8E8E8;
    color: var(--text-color);
    font-size: 14px;
    transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
    background-color: var(--tri);
    color: white;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 45px;
}

.g-recaptcha {
    transform: scale(0.8);
    transform-origin: 0 0;
}


.business-enq {
    position: fixed;
    bottom: 32px;
    right: 20px;
    z-index: 9;
    border: 0;
    outline: 0;
    background-color: var(--pri);
    color: white;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 5px;
    padding-right: 15px;
    border-radius: 24px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 4px 1px;
}

.business-enq:hover {
    transform: scale(1.03);
}

.business-enq .icon {
    height: 32px;
    width: 32px;
    border-radius: 100%;
    line-height: 32px;
    text-align: center;
    display: inline-block;
    background: #fff;
    color: var(--pri);
}

.business-enq .icon svg {
    height: 18px;
    width: 18px;
}

.whatapp_btn {
    background: #01e675;
    width: 40px;
    height: 40px;
    color: #fff;
    position: fixed;
    right: 20px;
    bottom: 85px;
    cursor: pointer;
    z-index: 9;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.15);
}

.whatapp_btn svg {
    width: 19px;
    height: 19px;
}

.whatapp_btn:hover {
    transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

.error {
    font-size: 14px;
    color: red;
}

.video-sec .sec-heading .tt {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-sec .sec-heading .tt span {
    font-weight: 600;
    /* display: block; */
    background: var(--pri);
    background-color: var(--pri);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.video-sec .sec-heading p {
    font-size: 15px;
    /* text-align: center; */
    line-height: 1.6;
    font-weight: 400;
    /* color: var(--text-light); */
}

.vidBx .imgBx {
    position: relative;
}

.vidBx .imgBx img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, .05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    transition: 0.3s;
}

.vidBx .imgBx:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.vidBx .txBx {
    text-align: center;
    margin-top: 10px;
    padding-inline: 25px;
    font-size: 16px;
    font-weight: 600;
}

.sign-bx .name {
    font-size: 18px;
    font-weight: 600;
    color: var(--pri);
}

.sign-bx p {
    color: var(--text-color);
}

.bod-bx {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
}

.bod-bx .img-bx img {
    width: 100%;
    transition: 0.4s ease-in-out;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.bod-bx:hover .img-bx img {
    transform: scale(1.05);
}

.bod-bx::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 60%;
    left: 0;
    bottom: -20px;
    background: linear-gradient(to top, #16191d 8%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    transition: all 0.5s ease;
}

.bod-bx .tx-bx {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 24px 16px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    font-style: italic;
}

#loader{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    background: white;
}

#loader img{
    max-width: 190px;
}

.accordion-item, .accordion-item:first-of-type, .accordion-item:last-of-type, .accordion-item:not(:first-of-type) {
    margin-bottom: 15px;
    background: #f8f8f8;
    border: 0;
    border-radius: 10px;
    padding: 8px 17px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .07);
}
.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background: transparent;
    border: 0;
    color: #f1464d;
}
.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ed434a'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}
.accordion-item, .accordion-item:first-of-type, .accordion-item:last-of-type, .accordion-item:not(:first-of-type) {
    margin-bottom: 15px;
    background: #f8f8f8;
    border: 0;
    border-radius: 10px;
    padding: 8px 17px;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .07);
}
.accordion-button {
    background: transparent;
    font-weight: 600;
    letter-spacing: 0.1px;
    outline: 0 !important;
    color: #333;
    font-size: 17px;
    padding: 5px 0;
}
.accordion-body {
    line-height: 1.5;
    font-size: 15px;
    color: #747272;
    padding: 0;
    padding-bottom: 5px;
}


p.text-jutify {
    text-align: justify;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe00;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}

/* blog details css */
  .blog-bx .des, .blog-details .des { display: flex; align-items: center; list-style: none; padding: 0; margin: 0; gap: 30px; margin-bottom: 5px; } 
.blog-bx .des li, .blog-details .des li { font-size: 14px; color: #777; font-weight: 500; position: relative; } 
.blog-details .main-tt, .blog-details h2, .blog-details h3 { font-size: 22px; color: var(--text-color); line-height: 24px; margin-bottom: 20px; font-weight: 700; } 
.blog-details .img-bx { margin: 15px auto; max-width: 700px; } 
.blog-details .content-bx p { margin-bottom: 10px; font-size: 15px; line-height: 1.6; color: var(--para-color); text-align: justify; font-family: var(--font2); font-weight: 400; } 
.blog-details h2, .blog-details h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; } 
.blog-details .blog-bx .des li::before, .blog-details .des li::before { content: ""; position: absolute; right: -20px; top: 8px; height: 1px; width: 12px; background: var(--pri); } 
.blog-details .blog-bx .des li:last-child:before, .blog-details .des li:last-child:before { content: none; } 
.blog-details .blog-bx .des li a, .blog-details .des li a { display: inline; color: var(--text-color); } 
.blog-details .blog-bx .des li a:hover, .blog-details .des li a:hover { color: var(--sec); } 
.blog-details .blog-bx .tt { font-size: 16px; color: var(--text-color); -webkit-box-orient: vertical; text-overflow: ellipsis; white-space: normal; -webkit-line-clamp: 2; overflow: hidden; margin-bottom: 6px; transition: 0.3s ease-in-out; line-height: 1.5; font-weight: 600; } 
.blog-details .blog-card { display: flex; gap: 10px;    margin-bottom: 0px; } 
.blog-details .blog-bx { position: relative; transition: 0.3s; } 
.blog-details .blog-card .img-bx { margin: 0; margin-bottom: 0px; } 
.blog-details .blog-card .img-bx { width: 110px; overflow: hidden; aspect-ratio: 4 / 3; min-width: 110px; } 
.blog-details .blog-bx.blog-card { margin-bottom: 0px; } 
.blog-details .blog-bx:hover .tt { color: var(--pri); } 
.blog-details .blog-bx p { margin-bottom: 0; font-size: 16px; color: #555; display: -webkit-box; -webkit-box-orient: vertical; text-overflow: ellipsis; white-space: normal; -webkit-line-clamp: 3; overflow: hidden; } 
.blog-details .blog-bx.blog-card p { -webkit-line-clamp: 2; font-size: 15px; margin-bottom: 3px; } 
.blog-details .blog-bx.blog-card .read-mr { font-size: 13px; color: var(--pri); font-weight: bold; }


/* team section */
.team-sections .team-area{ padding-top: 5%; } 
.team-sections .single-team{ background-color: #2e2622; margin-bottom: 10px;border-radius: 10px; position: relative;overflow: hidden; } 
.team-sections .single-team:hover .social{ cursor: pointer; opacity: 1; transform: rotateY(0deg) scale(1, 1); } 
.team-sections .img-area{ overflow: hidden; position: relative; } 
.team-sections .img-area img{ width: 100%; } 
.team-sections .img-area:hover img{ transform: scale(1.2) } 
.team-sections .img-area img{ transition: all 0.4s ease 0s; } @media (max-width: 768px){ .img-area img{ display: inline-block; } } 
.team-sections .img-area .social{ background-color:#0000007a; position: absolute; text-align: center; height: 100%; width: 100%; left: 0; top: 0; opacity: 0; transition: .5s; transform: rotateY(180deg) scale(0.5, 0.5); } 
.team-sections .img-area .social ul{ text-align: center; position: relative; top: 0px; display: flex ; align-items: center; justify-content: center; } 
.team-sections .img-area .social ul li { list-style: none; } 
.team-sections .img-area .social ul li a { border: 0px solid #fff; color: #fff; display: block; font-size: 26px; height: 30px; width: 30px; line-height: 20px; text-align: center; margin: 2px; } 
.team-sections .img-area:hover .social img { transform: scale(1); } 
.team-sections .img-area .social img:hover  { filter: grayscale(1); } 
.team-sections .img-area .social ul li a:hover{ background-color:#ffffff00; color: #000; border: 1px solid transparent; } 
.team-sections .img-text{ padding: 10px; color: #fff; text-align: center; position: absolute; bottom: 0px; width: 100%; background: #000000ba; } 
.team-sections .img-text .title4{ margin: 0 0 5px; letter-spacing: 1px; color: #ffffff; font-size: 18px; font-weight: 600; } 
.team-sections .img-text .title5{ margin: 0 0 5px; letter-spacing: 1px; color: #ffffff; font-size: 16px; font-weight: 600; }


/* award  css */
.achievement { width: 100%; margin: 0; padding: 50px 0; background: #fff } 
.achievement .vd_Bx { position: relative; margin-bottom: 25px; overflow: hidden; border: 1px solid #eee; border-radius: 12px; } 
.achievement .vd_Bx::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.0); z-index: 1; transition: .4s } 
.achievement .vd_Bx .video-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--bs-danger); border-radius: 100% } 
.achievement .video-text .tt { font-size: 20px; font-weight: 600; color:#ee3137; line-height: 1.2; margin-bottom: 2px; } 
.achievement .video-text { text-align: center; padding: 10px 0px; } 
.achievement .vd_Bx .video-btn svg { height: 20px; width: 20px } 
.achievement .vd_Bx img { width: 100%; object-fit: cover; object-position: center; transition: .4s linear } 
.achievement .vd_Bx:hover img { transform: scale(1.05) } 
.achievement .vd_Bx:hover::before { background: rgba(0,0,0,.3) }
/* testimonials */
.pr-silder1 .h-400 {
              height: 400px
          }

          .pr-silder1 .gradibox {
              background-image: linear-gradient(#ee3137, #ffeeee);
          }

          .pr-silder1 .h-40 {
              height: 25%
          }

          .pr-silder1 .position-absolute.stu-pic.top-40.start-50.translate-middle.z-index-999 {
              margin-top: 17%;
              z-index: 9;
              width: 100px;
              height: 100px;
          }

          .pr-silder1 .text-info.w-100.position-relative.bottom-30 {
              bottom: 52%;
          }

          .pr-silder1 .text-info.w-100.position-absolute.bottom-30 {
              bottom: 20px;
              z-index: 9;
              min-height: 250px;
              overflow-y: auto;
          }

          .pr-silder1 .position-absolute.translate-middle-x.start-50.top-d0.w-100.rounded-circle.text-center {
              z-index: 1;
              bottom: 15%;
          }

          .pr-silder1 .top-40.translate-middle.start-50.w-100.position-absolute.text-dark {
              top: 115px;
              padding: 0px 0%;
              z-index: 9;
          }
 
.swiper-pagination-bullet {
    background-color: #000000;
    width: 15px;
    height: 15px;
}
         .swiper-pagination-bullet-active {
    background-color: #ee3137;
}

/* about keyfacts */

  /* ABOUT CSS CUSTOM */ 
   .features {  width: 100%; padding: 50px 0 0; margin: 0; position: relative; background-image: url(../images/backgrounds.jpg); background-attachment: fixed; background-size: cover; background-repeat: no-repeat; background-position: center center; } 
   .features:before {    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: #ee3137f5;
    background-image: -webkit-linear-gradient(90deg, rgba(6, 23, 51, 0) 0%, rgba(29, 42, 77, 0) 0%, #ffa3a624 80%);} 
   .features .h2_title { color: #ffffff; } 
   .features .h2_title { font-weight: 700; margin-bottom: 40px; position: relative; text-transform: uppercase; text-align: center; color: var(--dark-red); font-size: 30px; padding-bottom: 10px; } 
   .features .features-holder { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-column-gap: 25px; } 
   .features .feature-panel-holder { padding-top: 25px; -webkit-transition: .3s ease-in-out; -o-transition: .3s ease-in-out; transition: .3s ease-in-out; } 
   .features .feature-panel-holder:hover .feature-panel.feature-panel-dark a {    border-color: #fff; margin-top: 12px; color: #fff;} 
   .features .feature-panel-holder .feature-panel { position: relative; padding: 20px 10px; 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-align: center; -ms-flex-align: center; align-items: center; text-align: center; overflow: hidden; cursor: pointer; margin-bottom: 33px; border-radius: 8px 0 8px 8px; border-color: rgba(249, 249, 249, .15); -webkit-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;background: #ff3e4452; } 
   .features .h2_title:after { bottom: -10px; content: ""; height: 3px; left: 50%;  background: #d2deff none repeat scroll 0 0; margin-left: -50px; position: absolute; width: 100px; } 
   .features .feature-panel-holder .feature-panel .feature-icon { margin-bottom: 5px; } 
   .features .feature-panel-holder .feature-panel .feature-icon img { width: 40px; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-transition: .3s ease-in-out; -o-transition: .3s ease-in-out; filter: invert(1); transition: .3s ease-in-out; } 
   .features .feature-panel-holder .feature-panel .feature-content { 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-align: center; -ms-flex-align: center; align-items: center; text-align: center; margin-bottom: 10px;     font-weight: 700;
       font-size: 18px;
       line-height: 28px;
       text-transform: inherit;
       margin-bottom: 6px;
       color: #ffffff;
       -webkit-transition: 0.3s ease-in-out;
       -o-transition: 0.3s ease-in-out;
       transition: 0.3s ease-in-out;font-weight: 600;font-size: 16px; line-height: 28px; text-transform: inherit; margin-bottom: 6px; color: #ffffff; -webkit-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out;  } 
   .features .feature-panel-holder .feature-panel .feature-content p { text-align: center; font-size: 15px; line-height: 24px; margin-bottom: 0; color: #ffffff; opacity: 0; visibility: hidden; -webkit-transition: 0.3s ease-in-out; -o-transition: 0.3s ease-in-out; transition: 0.3s ease-in-out; height: 25px;     font-weight: normal !important;} 
   .features .feature-panel-holder:hover .feature-panel.feature-panel-dark { background-color: #ee3137; } 
   .features .feature-panel-holder:hover .feature-panel.feature-panel-dark .feature-content .titleFact { color: #fff; } 
   .features .feature-panel-holder:hover { padding-top: 0; } 
   .features .feature-panel-holder:hover .feature-panel .feature-content p { visibility: visible; opacity: 1; height: 30px; } 
   .features .feature-panel-holder .feature-panel.feature-panel-dark { border: 1px solid rgb(255 255 255 / 18%); } 
   .features .feature-panel-holder .feature-panel a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.5); font-size: 13px; color: #ffffff; margin-top: -32px; -webkit-transition: .3s ease-in-out; -o-transition: .3s ease-in-out; transition: .3s ease-in-out; } 
   .features .features-card .card-panel .panel-body .titleCat {    font-size: 18px;
       line-height: 32px;
       font-weight: 800;
       color: #ee3137;
       margin-bottom: 10px;
       text-transform: capitalize; } 
   .features .features-card .card-panel.reversed .panel-icon { margin-right: 0; margin-left: 40px; display: flex; align-items: center; transform: translateY(-7px); } 
   .features .features-card .card-panel.reversed { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; } 
   .features .features-card .card-panel {     border: 1px solid #eee;display: -webkit-box; display: -ms-flexbox; display: flex; background: #ffffff; border-radius: 8px 0 8px 8px; padding: 30px 40px 34px; -webkit-box-shadow: 0 5px 83px 0 rgb(9 29 62 / 15%); box-shadow: 0 5px 83px 0 rgb(9 29 62 / 15%); position: relative; -ms-flex-preferred-size: 48%; flex-basis: 48%;    align-items: center;} 
   .features .features-card .card-panel .panel-icon img { margin-left: 0; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-transition: .3s ease-in-out; -o-transition: .3s ease-in-out; transition: .3s ease-in-out; min-width: 80px; width: 80px; } 
   .features .more-features { text-align: center; margin-bottom: 20px; } 
   .features .more-features p { font-weight: 700; font-size: 17px; color: #f4f4f4;    position: relative; margin-bottom: 0; } 
   .features .more-features.more-features-2 p a { color: #ffeee9;} 
   .features .more-features p a { position: relative; color:#ffeee9; -webkit-transition: .3s ease-in-out; -o-transition: .3s ease-in-out; transition: .3s ease-in-out; text-transform: capitalize; padding-bottom: 8px; } 
   .features .features-card { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-transform: translateY(100px); -ms-transform: translateY(100px); transform: translateY(100px); margin-top: -100px; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; position: relative; z-index: 9; } 
   .counter-block img { width: 60px;padding: 10px; border-radius: 5px; border: 1px solid #ccc;filter: grayscale(1);} 
   .div-cla p.fs-18.mt-0 { text-align: justify; } 
   .counter-block p { text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; } 
   /* career css */
label.form-check-label {
    font-size: 14px;
    font-weight: 600;
    color: #333 !important;
    letter-spacing: 1px;
}

label.mt-2.fw-bold.text-start.d-block.mb-3 {
    color: #4a4a4a;
    font-size: 15px;
}


    .job-card {
      background-color: white;
    border-left: 4px solid #ee3137;
    box-shadow: 0px 0px 4px 1px #cccccca6;
    padding: 20px;
    margin-bottom: 0px;
    border-radius: 8px;
    }

    .job-card .title5 {
margin-bottom: 8px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    }

    .job-card small {
           color: #242424;
    font-weight: 600;
    }
/* contact css */
.bg-sky {
        background: var(--pri) !important;
    }

    .corner:hover .bottom_corners:before,
    .corner:hover .bottom_corners:after,
    .corner:hover:before,
    .corner:hover:after {
        border-color: var(--pri);
        height: 100%;
        z-index: 0;
        width: 100%;
        -ms-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -webkit-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    .shadow {
        box-shadow: 0px 0px 5px 1px #ccc !important;
    }

    .z-index-1 {
        z-index: 1;
    }

    .h-170 {
        height: 100%;
    }

    .corner:before {
        content: "";
        position: absolute;
        top: -2px;
        left: -2px;
        width: 30px;
        height: 30px;
        z-index: 0;
        border: 2px solid var(--pri);
        border-width: 2px 0 0 2px;
        border-radius: 2px 0 0 0;
    }

    .fs-18 {
        font-size: 20px;
    }

    .corner:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -2px;
        z-index: 0;
        width: 30px;
        height: 30px;
        border: 2px solid var(--pri);
        border-width: 2px 2px 0 0;
        border-radius: 0 2px 0 0;
    }

    .corner .bottom_corners:before {
        content: "";
        position: absolute;
        bottom: -2px;
        left: -2px;
        z-index: 0;
        width: 30px;
        height: 30px;
        border: 2px solid var(--pri);
        border-width: 0 0 2px 2px;
        border-radius: 0 0 0 2px;
    }

    .corner .bottom_corners:after {
        content: "";
        position: absolute;
        bottom: -2px;
        right: -2px;
        z-index: 0;
        width: 30px;
        height: 30px;
        border: 2px solid var(--pri);
        border-width: 0 2px 2px 0;
        border-radius: 0 0 2px 0;
    }

    .base-header2 {
        position: relative;
        z-index: 9;
    }

    .z-index-9 {
        z-index: 9;
    }

    .icon-holder {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .home_slider .banner_info {
        max-width: 46%;
        margin: 0;
        padding: 0 100px;
        padding-right: 20px;
        text-align: left;
    }

    .home_slider .slide .banner_info2 {
        float: right;
    }

/* team section no */
.col-md-5c{width:20%;padding: 0px 15px;}
.featured-icon-box.style1 {
    padding: 25px 25px 25px;
    background-color: #ee313714;
    border-radius: 5px;
    position: relative;
    margin: 6px 0;
}
.featured-icon-box.style1.icon-align-before-content .featured-icon {
    vertical-align: top;
    padding-top: 5px;
    margin-bottom: 10px;
}
.ttm-icon.ttm-icon_element-onlytxt {
    height: auto;
    width: auto;
    line-height: 1;
}

.featured-icon-box.icon-align-before-content .featured-icon i {
       vertical-align: middle;
    background: #fff;
    border-radius: 50px;
    width: 90px;
    height: 90px;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.featured-icon-box.icon-align-before-content .featured-content, .featured-icon-box.icon-align-before-title .featured-title {
    padding-left: 15px;
}
.featured-icon-box.style1 .featured-title .title2 {
    font-size: 35px;
    line-height: 42px;
    color: #ee3137;
    margin-bottom: 0;
    font-weight: 700;
}
/* .team-sectionsd .pr-silder1 .h-400 {
    height: 285px;
}
.team-sectionsd .pr-silder1 .position-absolute.translate-middle-x.start-50.top-d0.w-100.rounded-circle.text-center {
    z-index: 1;
    bottom: -25%;
}
.team-sectionsd .pr-silder1 .text-info.w-100.position-absolute.bottom-30 {
    bottom: 10px;}
 
    .team-sectionsd .pr-silder1 .position-absolute.stu-pic.top-40.start-50.translate-middle.z-index-999 {
    margin-top: 17%;}
   
    .team-sectionsd .pr-silder1 .h-40 {
    height: 35%;
}
.team-sectionsd .pr-silder1 .text-info.w-100.position-absolute.bottom-30 {
    bottom: 0px;
}
.team-sectionsd .pr-silder1 .text-info.w-100.position-absolute.bottom-30 { 
    min-height: 160px; 
} */
 .single-team{
     background-color: #ee3137;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 5px;
}
.team-area.section .single-team:hover .social{
    cursor: pointer;
    opacity: 1;
    transform: rotateY(0deg) scale(1, 1);
}
.team-area.section .img-area{
    overflow: hidden;
    position: relative;
}
.team-area.section .img-area img{
    width: 100%;
}
.team-area.section .img-area:hover img{
    transform: scale(1.2)
}
.team-area.section .img-area img{
    transition: all 0.4s ease 0s;
}
@media (max-width: 768px){
    .team-area.section .img-area img{
        display: inline-block;
    }
}
.team-area.section .img-area .social{
    background-color: rgba(0,0,0,0.7);
    position: absolute;
    text-align: center;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .5s;
    transform: rotateY(180deg) scale(0.5, 0.5);
}
.team-area.section .img-area .social ul{
    text-align: center;
    position: relative;
    top: 175px;
}
 
.team-area.section .img-text{
    padding: 10px;
    color: #fff;
    text-align: center;
}
  
/* indestry we serve */
.blog-2 {
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    background: #fff;
    border: 0px solid #e9e9e9;
    box-shadow: 0px 0px 5px 0px #0000001c !important;
    overflow: hidden;
}
.blog-2 .blog-photo img.img-fluid.bp {
    height: auto;
    object-fit: cover;
    width: 100%;
}
.blog-2 img {
    transition: all 0.5s ease;
}
.blog-2 .detail.pt-3.pb-1 {
    text-transform: capitalize;
    position: absolute;
    bottom: 15px;
    width: 90%;
    background:#ee3137;
    left: 5%;
    text-align: center;
    border-radius: 5px;
    transition: all 0.5s ease;
    display: flex
;
    padding: 10px !important;
    justify-content: center;
    align-items: center;
    height: 45px;
    color: #fff;
    font-size: 15px;;
}
.blog-2:hover img {
    transform: scale(1.1);
}
.blog-2:hover .detail.pt-3.pb-1 {
    background: #ff7272;
}
ul.social li {
    margin: 0px 3px;
    display: inline-block;
    border-radius: 5px;
}
ul.social li.twitter a {
    background: #6a6a6a;
}
ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 0px solid #ffffff;
}
ul.social li.facebook a {
    background: #3C5B9B;
}
ul.social li.youtube a {
    background: #f70000;
}
ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
ul.social li a svg {
    color: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}
.blog-photo.clip-home0 {
    height: auto;
    aspect-ratio: 1;
    min-width: 100%;
    min-height: 100%;
}
ul.social{padding: 0px 0px;}
.single-item a:hover {
    color: #ee3137 !important;
}
.counter-sec .images, .counter-sec .images img{
    aspect-ratio: 1;object-fit: cover;min-width: 100%;min-height: 100%;
}
          .head-sec ul {
                            padding: 0px;
                            display: flow-root;
                            margin-top: 15px;
                        }

                        .head-sec ul li {
                            font-size: 15px;
                            list-style: square; 
                            float: left;
                            margin-left: 20px;
                            margin-right: 20px;
                            margin-bottom: 7px;
                            font-weight: 600;
                            letter-spacing: 0.4px;
                        }
                        .d-flow-root{display: flow-root;}
@media (min-width:1024px) {
.abt-tx.about-sec .content-sec {
    height: 525px;
    overflow-y: auto;
    margin-bottom: 15px;
    padding-right: 15px;
}
/* .abt-img-bx img { 
    margin-top: -68px;
} */
.abt-img-bx { 
    /* height: 400px; */
    overflow: hidden;}
  .head-sec ul li { 
                            width: 26%;}
}






.error { 
    display: block;
    margin: 5px 0px 0px;
    text-align: left;
}
.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.form-check-inline.fs-13.px-2 {
    position: relative;
}
.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.form-check-inline.fs-13.px-2 label.error {
    position: absolute;
    top: -4px;
    left: 204px;
    width: 300px;
}
.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.fs-13.text-start.d-flex.justify-content-start.mb-0.w-100.mx-1.align-items-center.p-0 {
    position: relative;
}


.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.fs-13.text-start.d-flex.justify-content-start.mb-0.w-100.mx-1.align-items-center.p-0 label.error {
    position: absolute;
    top: 20px;
    left: 0px;
    width: 300px;
}
.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.text-muted.form-check-inline.fs-13 {
    position: relative;
}
.default-form-area.p-4.rounded-3.shadow.text-center.border-bottom.border-3.border-sky.bg-white .form-check.text-muted.form-check-inline.fs-13 label.error {
    position: absolute;
    width: 300px;
    top: -2px;
    left: 135px;
}

.approach.company-core-value.py-5.w-100.mt-5.float-starte .counter-block p {
    text-overflow: ellipsis;
  display: block;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: visible;
}
.approach.company-core-value.py-5.w-100.mt-5.float-starte .counter-block.bg-light.rounded.p-3.text-center.h-350.pt-4 {
    height: 100%;
}