@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --pri: #154057;
    --sec: #3a789b;
    --black: #222429;
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    --light: #eef1f6;
    --font: "Work Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--black);
    font-family: var(--font);
    font-size: 15px;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    color: #0c0c0c;
    margin: 0 0 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: #0c0c0c;
}

p a {
    color: #363636;
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 15px;
    line-height: 25px;
    font-size: 15px;
    color: var(--black);
    font-weight: 400;
}

a {
    color: #7f7f7f;
    text-decoration: none;
    outline: none;
    display: block;
}

strong {
    font-weight: 600;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

iframe {
    border: 0;
    width: 100%;
}

blockquote {
    padding: 0;
    border: 0;
}

label {
    color: #7f7f7f;
    display: block;
    font-weight: 400;
    margin: 0;
}

textarea {
    height: 100px !important;
}

textarea,
select,
input {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 14px !important;
}

.txt-canwin {
    color: #1eb8ab;
}

.txt-red {
    color: #ff0000;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-control::-moz-placeholder {
    color: #555;
}

.form-control:focus::-moz-placeholder {
    color: var(--pri);
    ;
}

.form-control:focus {
    border-color: var(--pri);
    box-shadow: none;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    margin: 0 0 30px;
    font-weight: bold;
}

h3 span {
    padding: 0 10px 0 0;
    position: relative;
}

h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    text-transform: capitalize;
    padding: 15px 0;
    color: #fff;
}

h5 {
    text-transform: capitalize;
}

.header {
    float: left;
    width: 100%;
    position: absolute;
    z-index: 10;
    padding: 10px 50px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(10, 35, 46, 0.8) 100%);
}

.header .container-fluid {
    position: relative;
}

.header .int_logo {
    padding: 3px 0;
    max-width: 150px;
    position: relative;
}

.header .int_logo img {
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.2));
}

.menu-bar {
    float: left;
    width: 100%;
}

.top-bar {
    float: left;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0;
    padding-left: 50px;
    background-color: var(--pri);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .top-bar::before,
.navigation::before {
    content: '';
    height: 100%;
    width: 100%;
    background-color: var(--pri);
    position: absolute;
    top: 0;
    right: -100%;
    pointer-events: none;
} */

.navigation::before {
    background: #f5f5f5;
}

.top-bar .top-nav {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.top-bar .top-nav svg {
    width: 15px;
    height: 15px;
    animation: tada 1.5s ease infinite;
}

.top-bar .top-nav li a,
.top-bar .top-nav li {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: 0.2s;
}


.top-bar .top-nav li a:hover {
    color: #ddd;
}

.top-bar .top-nav li a::before {
    content: "|";
    position: absolute;
    top: -1px;
    left: -14px;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
}

.top-bar .top-nav li:first-child a:before {
    content: none;
}

.top-bar ul.social {
    display: flex;
}

.top-bar ul.social li {
    margin: 0;
}

.top-bar ul.social li:first-child a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar ul.social li a {
    background: transparent !important;
    height: 43px;
    width: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar ul.social li a:hover {
    background: #fff !important;
}

.top-bar ul.social li a:hover svg {
    color: var(--pri);
}

.menu-bar.stricky-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    background: #fff;
    padding: 0;
}

.menu-bar.stricky-fixed .int_logo::before {
    content: none;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.navigation {
    float: left;
    width: 100%;
    /* background: #f4f4f4; */
    position: relative;
    z-index: 1;
}



.navigation .nav-header {
    display: none;
    padding: 12px 20px
}

.navigation .navbar button {
    float: right;
    width: 40px;
    height: 40px;
    background: transparent;
    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: var(--pri);
    ;
    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 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: right;
    display: block;
    /* white-space: nowrap; */
}

.navigation .menu ul li {
    display: inline-block;
    position: relative;
}

.navigation .menu ul li a {
    padding: 25px 9px 20px;
    display: block;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 15px;
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: #fff;
    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 ul.cs-dropdown.mg {
    width: 550px;
}

.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: 215px;
}

.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 #ddd;
    width: 100%;
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    border-bottom: 0
}

.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: var(--black);
    font-size: 14px;
    padding: 8px 14px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    background: #fff;
    transition: all 0.3s ease;
    text-shadow: none;
    letter-spacing: 0;
}

.navigation .menu ul li ul.cs-dropdown li ul.cs-dropdown li a {
    font-size: 14px;
}


.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: 14px;
    height: 14px;
    transition: 0.3s;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: #fff;
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #fff
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #fff;
}

.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: var(--pri);
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: rgba(10, 36, 49, 0.9);
    transition: all 0.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: white;
    outline: 0;
    border: 0;
    color: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.search-close:hover {
    background: var(--pri);
    color: white;
}

.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: transparent;
    color: white;
}

.search-form button {
    background: transparent;
    border: 0;
    outline: 0;
    color: white;
    padding-inline: 10px;
}

.search-btn {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background: var(--pri);
    outline: 0;
    border: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.search-btn:focus,
.search-btn:hover {
    background: white;
    color: var(--pri);
}

/* 
.search-navbar {
    position: relative;
    top: 5px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}

.search-navbar .search {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;

}

.search-navbar .search-label {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: var(--pri);
    color: white;
    border-radius: 100%;
    transition: 0.5s all ease;
    z-index: 2;
    cursor: pointer;
}

.search-navbar .search-label:hover,
.search-navbar .search-label:focus {
    background: #fff;
    color: var(--pri);
}

.search-icon,
.exit-icon {
    height: 20px;
    width: 20px;
}

.exit-icon {
    display: none;
}

.search-navbar .search:checked+.search-label .search-icon {
    display: none;
}

.search-navbar .search:checked+.search-label .exit-icon {
    display: block;
}

.search-section {
    position: fixed;
    opacity: 0;
    z-index: -1;
    transition: 0.5s all ease-in-out;
}

.search-box {
    background: rgba(0, 0, 0, 0.8);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    width: 70%;
    border: 2px solid #ffffff;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.search-input .input-textarea {
    position: relative;
    background: transparent;
    width: 100%;
    height: 40px;
    padding: 10px;
    outline: 0;
    color: white;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.search-input button {
    margin-right: 10px;
    border: 0;
    outline: 0;
    color: white;
    background: transparent;
}

.search-section.open {
    opacity: 1;
    z-index: 10;
    transition: 0.5s all ease-in-out;
} */

.topcon-sec {
    float: left;
    width: 100%;
    padding: 60px 0 65px;
    text-align: center;
}

.home_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    overflow: hidden;
}


.home_slider .slider-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    max-width: 800px;
    background: white;
    z-index: 10;
}

.home_slider #nislider::before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    /* background-image: url(../images/rrdiagonal-line.png); */
    z-index: 8;
    background: black;
    opacity: 0.1;
    pointer-events: none;
}

.home_slider .nivo-directionNav a {
    background: var(--liner);
    background-color: var(--pri);
    color: white;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: 0.2s;
}

.home_slider .nivo-directionNav a:focus {
    opacity: 1;
}

.home_slider .nivo-directionNav a:hover {
    background: white;
    color: var(--pri);
}

.home_slider .nivo-directionNav a.nivo-prevNav {
    left: 25px;
}

.home_slider .nivo-directionNav a.nivo-nextNav {
    right: 25px;
}

.nivo-html-caption {
    display: none;
}

.nivo-caption {
    top: 55%;
    transform: translateY(-50%);
    bottom: auto;
    left: auto;
    right: 0px;
    padding: 30px 40px;
    background: linear-gradient(90deg, rgba(19, 67, 119, 0) 0, rgba(17, 63, 86, 0.9) 30%);
    z-index: 8;
    max-width: 500px;
    opacity: 1;
    text-align: right;
    /* pointer-events: none; */
}

.nivo-caption .sub-tt {
    background: var(--liner);
    background-color: var(--pri);
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.nivo-caption .main-tt {
    font-size: 22px;
    line-height: 33px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    margin-bottom: 5px;
}

.nivo-caption p {
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.5px;
    padding: 0;
    text-shadow: 1px 0px 2px #000;
}

.nivo-caption .sub-tt {
    opacity: 1;
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .2s;
}

.nivo-caption .main-tt {
    opacity: 1;
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .6s;
}

.nivo-caption p {
    opacity: 1;
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}

.nivo-controlNav {
    position: absolute;
    z-index: 8;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    padding: 0;
}

.nivo-control {
    border-radius: 0;
    margin: 0 5px;
    background: #eee;
    opacity: 1;
    height: 9px;
    width: 9px;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    transition: 0.4s ease-in-out;
}

.nivo-control.active {
    background: var(--pri);
    width: 20px;
}

.feature-icon-sec {
    float: left;
    width: 100%;
    padding: 30px 0 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.fect-icon-bx {
    border-right: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.fect-icon-bx .img {
    width: 60px;
    margin: 0 auto 8px;
}

.fect-icon-bx .tx {
    margin-bottom: 0;
    font-weight: 500;
}

.abt-sec {
    float: left;
    width: 100%;
    /* background-image: url(../images/bg/about-bg.webp);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover; */
    background-color: #f4f5f8;
    padding: 70px 0;
}


.abt-sec .tx_bx .main-tt {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 31px;
    line-height: 42px;
}

.abt-sec .tx_bx .main-tt span {
    font-weight: 700;
    display: inline;
    background: var(--liner);
    background-color: var(--pri);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-sec .tx_bx p {
    text-align: justify;
    color: #222;
    margin-bottom: 10px;
}

.abt-sec ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.abt-sec ul li {
    margin-bottom: 12px;
    font-weight: 400;
    padding-left: 38px;
    position: relative;
    color: #222;
    text-align: justify;
}

.abt-sec ul li::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="white" class="bi bi-check" viewBox="0 0 16 16"> <path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/> </svg>');
    position: absolute;
    top: 4px;
    /* transform: translateY(-50%); */
    left: 0;
    width: 25px;
    height: 25px;
    background: var(--liner);
    background-color: var(--pri);
    display: flex;
    justify-content: center;
    line-height: 35px;
    border-radius: 100%;
}

.about-two__image__inner {
    position: relative;
    width: 100%;
    max-width: 385px;
}

.about-two__image__inner__inner {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    width: 100%;
    max-width: 260px;
    border: 10px solid var(--floens-white, #ffffff);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-two__experience {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    padding: 10px;
    background: white;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 1;
    animation: zump 3s linear infinite;
}

.experience__inner {
    display: flex;
    align-items: center;
    background-color: var(--pri);
}

.experience__year {
    padding: 10px 18px;
    height: 100%;
    text-align: center;
    font-size: 55px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    background-image: url(../images/shape/reliable-shape-1-1-1.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    margin-bottom: 0;
}

.experience__text {
    transform: rotate(180deg);
    padding: 9px 0;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    writing-mode: vertical-rl;
    text-align: center;
}


.category-sec {
    float: left;
    width: 100%;
    margin: 0;
    position: relative;
    padding: 50px 0px 40px;
    background: #fff;
}

.c_bx {
    text-align: center;
    margin-bottom: 25px;
    background: #f6f6f6;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
}

.c_bx .img_bx {
    position: relative;
    overflow: hidden;
}

.c_bx .img_bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0;
    transition: 0.4s;
}

.c_bx:hover .img_bx::before {
    opacity: 0;
}

.c_bx .img_bx img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.4s linear;
}

.c_bx:hover .img_bx img {
    transform: scale(1.08);
}

.c_bx .des {
    font-size: 13px;
    color: var(--pri);
    padding: 10px 0;
    font-weight: 500;
    transition: 0.4s;
}

.c_bx:hover .des {
    background: var(--pri);
    color: #fff;
}

.sec_bx {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.sec_bx .sec_h {
    font-size: 27px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    position: relative;
    text-transform: capitalize;
}

.sec_bx .sec_h span {
    color: var(--pri);
}

.sec_bx p {
    max-width: 850px;
    margin: 0 auto;
    color: #333;
    line-height: 23px;
    font-weight: 400;
}

.title_1 {
    margin: 0;
    color: var(--pri);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.readMore_2,
.readMore_2:focus {
    color: #fff;
    font-weight: 600;
    padding: 10px 23px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    text-align: center;
    border: 2px solid var(--pri);
    text-transform: uppercase;
    background: var(--pri);
    letter-spacing: 0.3px;
    transition: 0.2s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.readMore_2:hover {
    background: transparent;
    color: var(--pri);
}


.portfolio {
    float: left;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0
}

.portfolio.full-bg {
    position: relative;
}

.portfolio.full-bg .cluom {
    height: 80vh;
    padding: 0;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, .3);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.portfolio.full-bg .cluom.current {
    background: rgba(0, 0, 0, .3)
}

.portfolio.full-bg .cluom:hover .info {
    color: inherit
}

.portfolio.full-bg .cluom:hover .info:after {
    height: 100%
}

.portfolio.full-bg .cluom.current .info:after {
    height: 100%
}

.portfolio.full-bg .cluom:hover .more {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.portfolio.full-bg .cluom .info {
    padding: 40px 10px 40px 20px;
    color: #fff;
    position: relative;
    z-index: 2;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    overflow: hidden
}

.portfolio.full-bg .cluom .info:after {
    content: '';
    position: absolute;
    top: 0;
    left: -2%;
    width: 104%;
    height: 0;
    background: #212529;
    z-index: -1;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

.portfolio.full-bg .cluom .info .portfolioName {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
    font-family: Oswald, sans-serif
}

.portfolio.full-bg .cluom .info .portfolioTitle {
    font-size: 21px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 500
}

.portfolio.full-bg .cluom .info .portfolioTitle a {
    color: #fff
}

.portfolio.full-bg .cluom.current .info .portfolioName {
    color: #fff
}

.portfolio.full-bg .cluom.current .info .portfolioTitle a {
    color: #c6a47e
}

.portfolio.full-bg .cluom .more {
    position: absolute;
    bottom: 50px;
    right: 25px;
    left: 0;
    margin: 0 auto;
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    text-align: center
}

.portfolio.full-bg .bg-img,
.portfolio.full-bg .glry-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.portfolio.full-bg .glry-img {
    overflow: hidden
}

.portfolio.full-bg .glry-img .bg-img {
    -webkit-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    opacity: 0;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
    background-size: cover;
    background-position: center center
}

.portfolio.full-bg .glry-img .bg-img.current {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.cta-sec {
    float: left;
    width: 100%;
}

.cta-sec .cta-sec1,
.cta-sec .cta-sec2 {
    background: url(../images/bg/cat-bg-1.jpg);
    background-size: cover;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.cta-sec .cta-sec2 {
    background-image: url(../images/bg/cat-bg-2.jpg);
    position: relative;
    z-index: 1;
}

.cta-sec .cta-sec2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pri);
    z-index: -1;
    opacity: 0.9;
}

.cta-sec .cta-sec1 .tx-bx,
.cta-sec .cta-sec2 .tx-bx {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-sec .cta-sec1 .tx-bx .tt,
.cta-sec .cta-sec2 .tx-bx .tt {
    font-size: 30px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: normal;
    font-weight: 700;
}

.cta-sec .cta-sec2 .tx-bx .tt {
    color: #fff;
}

.cta-sec .cta-sec1 .tx-bx p,
.cta-sec .cta-sec2 .tx-bx p {
    font-weight: 400;
    color: #555;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 28px;
}

.cta-sec .cta-sec2 .tx-bx p {
    color: #fff;
}

.categroy-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 55px 0;
    background: url(../images/bg/hormigon.jpg);
    background-size: cover;
    background-position: center;
}

.categroy-sec .sec_bx .sec_h {}


.product1 {
    float: left;
    width: 100%;
    transition: .4s ease-in-out;
    position: relative;
    margin-bottom: 10px;
}

.product1 .iconTop {
    width: 44px;
    height: 44px;
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    border-radius: 100%;
    text-decoration: none;
    background: #fff;
    padding: 4px;
}


.product1 .img-bx {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 0;
}

.product1 .img-bx:before {
    content: "";
    background: radial-gradient(ellipse at center, rgba(53, 0, 252, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .3s ease-in-out;
    z-index: 1;
}

.product1:hover .img-bx:before {
    opacity: 1;
}

.product1 .img-bx img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.product1 .product1Info {
    border-radius: 4px;
    padding: 10px 15px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    z-index: 2;
}

.product1 .product1Info .title4 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
    text-align: center;
}

.product1:hover .product1Info {
    background: #fff;
}

.product1:hover .product1Info .title4 {
    color: var(--pri);
}


.product1:hover .iconTop {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pro-cont-bx {
    background: #ffff;
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 2px 0px;
    height: 100%;
    overflow: hidden;
    text-align: left;
}

.pro-img-bx {
    position: relative;
    height: 100%;
}

.pro-img-bx .img {
    height: calc(100% - 40px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 5px 0px;
    overflow: hidden;
    position: relative;
}

.pro-img-bx .des {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: left;
    width: 95%;
    background: white;
    padding: 15px 20px;
    padding-top: 25px;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 2px 0px;
}

.pro-img-bx .des .sub-tt {
    background: var(--liner);
    background-color: var(--pri);
    padding: 5px 13px;
    display: inline-block;
    margin-bottom: 10px;
    /* font-style: italic; */
    position: absolute;
    top: -15px;
    left: 20px;
    letter-spacing: 0.5px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.pro-img-bx .des .tt {
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.pro-img-bx .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.pro-img-bx:hover .img img {
    transform: scale(1.05);
}

.pro-img-bx:hover .read-mr {
    left: 50%;
}

.pro-cont-bx .min-tt {
    color: #333;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 15px;
}

.pro-cont-bx .tt {
    color: var(--black);
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 20px;
    position: relative;
}

.pro-cont-bx .tt::before {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 70px;
    height: 3px;
    background: var(--pri);
}

.pro-cont-bx p {
    color: #333;
}

.h2_title_1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--pri);
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.h2_title_1:after {
    background: var(--black);
    bottom: -10px;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}

/* counter */

.counter-sec {
    float: left;
    width: 100%;
    background: url(../images/bg/counter.jpg);
    background-attachment: fixed;
    display: block;
    overflow: hidden;
    padding: 60px 0px;
    position: relative;
    z-index: 1;
}

.counter-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--pri);
    z-index: -1;
    opacity: 0.98;
}

.counter-sec .tt {
    color: white;
    font-weight: 600;
    text-align: right;
    letter-spacing: 1px;
    font-size: 40px;
    line-height: 53px;
}

.counter-sec p {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #fff;
}

.counter-bx {
    position: relative;
    padding-top: 8px;
    /* text-align: center; */
}

.counter-bx .title {
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 40px;
    line-height: 53px;
}

.counter-bx p {
    font-style: italic;
}

.counter-bx::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 40px;
    height: 2px;
    background-color: #ffffff;
}

.counter-sec .btm-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.counter-sec .btm-bar p {
    font-weight: 400;
    font-size: 17px;
}

.counter-sec .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);
}


.gallery_page .gallery_item_info2 {
    background: var(--liner);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 12px;
}

.electricVehicle {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 20px;
    background: #fff;
    overflow: hidden;
}

.electricVehicle .c_bx .img_bx img {
    width: 100%;
    height: auto;
    max-height: 300px;
}

.electricVehicle .c_bx .des {
    font-size: 16px;
}

.title_2 {
    padding: 0 0 0px;
    margin: 0;
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    color: #333;
    font-size: 27px;
    font-style: normal;
    line-height: 1.25;
}

.title_2:after {
    bottom: -10px;
    content: "";
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
    background: var(--black);
}

.title_2 span {
    color: var(--pri);
}

.ourBest {
    float: left;
    width: 100%;
    position: relative;
}

.bestItem {
    overflow: hidden;
    text-align: center;
    border: 1px solid #eee;
}

.bestItem .image img {
    width: 100%;
}

.bestItem:hover .bestItem_info h3 a {
    color: var(--pri);
    ;
}



.bestItem .bestItem_info .readMore_2 {
    margin-left: -30px;
    height: 45px;
    line-height: 45px;
}

.bestItem .bestItem_info .btn_caret {
    height: 45px;
    line-height: 44px;
}



.ourBest .swiper-button-prev,
.ourBest .swiper-button-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 45px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #333;
    border: 0;
    outline: 0;
    background: var(--pri);
    z-index: 9;
    transition: 0.3s;
    color: #fff;
}


.ourBest .swiper-button-prev {
    left: -1px;
    border-radius: 0px 4px 4px 0px;
}

.ourBest .swiper-button-next {
    right: -1px;
    border-radius: 4px 0px 0px 4px;
}


.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 12px;
    font-weight: 600;
}

.ourBest .swiper-button-prev:hover,
.ourBest .swiper-button-next:hover {
    background: var(--sec);
    color: #fff;
}


#ourBest .owl-dots {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    margin: 0 auto
}

#ourBest .owl-dots span {
    background: #dddddd;
    width: 21px;
    height: 21px;
    border: 6px solid #050708;
    border-radius: 0;
    outline: 1px solid transparent;
}

#ourBest .owl-dots .active span {
    border-color: #c4261c;
}

.btn-curve:hover {
    background: #111;
    border-color: #000;
    color: #fff;
}












.chooseVehicle {
    float: left;
    background: #f8f8f8;
    display: block;
    position: relative;
    margin-bottom: 20px;

}

.chooseVehicle:hover,
.chooseVehicle:focus,
.chooseVehicle:active {
    background: #ffffff;
    -webkit-box-shadow: 0 5px 32px rgb(0 0 0 / 10%);
    box-shadow: 0 5px 32px rgb(0 0 0 / 10%);
}

.chooseVehicle .topInfo {
    padding: 25px;
}

.chooseVehicle .topInfo .title3 {
    font-size: calc(14px + 8 * (100vw / 1920));
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    color: #222222;
    text-transform: uppercase;
    transition: 0.3s;
    margin: 0 0 5px;
}

.chooseVehicle .topInfo .title3 .all_btns {
    float: right;
    color: #fff;
    font-size: 16px;
}

.chooseVehicle .topInfo span {
    font: normal 300 12px/1.1 Oswald;
    color: #666666;
    text-transform: uppercase;
}

.chooseVehicle .image {
    display: block;
    position: relative;
    padding: 0 10px;
}

.chooseVehicle .image svg {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 9;
}

.chooseVehicle:hover .image:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' fill='white' viewBox='0 0 16 16'><path d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/></svg>");
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.chooseVehicle .vehicleInfo {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.chooseVehicle .vehicleInfo .listInfo {
    list-style: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    padding: 25px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.chooseVehicle .vehicleInfo .listInfo li {
    text-align: center;
}

.chooseVehicle .vehicleInfo .listInfo li+li {
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #dddddd;
}

.chooseVehicle .vehicleInfo .listInfo li .title {
    font: normal 600 16px/1.1 Oswald;
    margin-bottom: 10px;
    color: #222222;
    text-transform: uppercase;
    display: block;
}

.chooseVehicle:hover .topInfo .title3 {
    color: var(--pri);
    ;
}

.chooseVehicle .vehicleInfo .listInfo li .value {
    font: normal 400 16px/1.1 Oxygen;
    color: #777777;
}

.chooseVehicle .vehicleInfo .specifications {
    display: block;
    position: relative;
    padding: 25px 25px 5px;

}

.chooseVehicle .vehicleInfo .specifications ul {
    list-style: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.chooseVehicle .vehicleInfo .specifications ul li {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 50%;
    margin-bottom: 25px;
    align-items: center;
}

.chooseVehicle .vehicleInfo .specifications ul li .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.chooseVehicle .vehicleInfo .specifications ul li .specificationsDesc {
    padding-left: 10px;
}

.chooseVehicle .vehicleInfo .specifications ul li .specificationsDesc .title {
    font: normal 300 14px/1.1 Oswald;
    margin-bottom: 5px;
    color: #222222;
    text-transform: uppercase;
    display: block;
}

.chooseVehicle .vehicleInfo .specifications ul li .specificationsDesc .value {
    font: normal 400 13px/1.1 Oxygen;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    color: #777777;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.friendlyNature {
    float: left;
    width: 100%;
    display: block;
    position: relative;
    padding: 100px 0 100px;
}

.friendlyNature_img {
    display: block;
    margin: 0 auto;
}

.friendlyNature_info {
    display: block;
    position: relative;
}

.friendlyNature_info::before {
    background: url(../images/decor-logo.svg);
    display: block;
    position: absolute;
    top: -130px;
    top: -2.77vw;
    left: 310px;
    left: 16.1vw;
    width: 468px;
    width: 24.4vw;
    height: 181px;
    height: 9.43vw;
    content: '';
}


.friendlyNature_title {
    display: block;
    position: relative;
    margin-bottom: 25px;
}

.friendlyNature_title span {
    font: normal 700 18px/normal Oswald;
    display: block;
    margin-bottom: 10px;
    color: var(--pri);
    ;
    text-transform: uppercase;
}

.friendlyNature_title .title11 {
    margin: 0;
    color: #000000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.friendlyNature_content .marginTop {
    margin-top: 40px !important;
}

.friendlyNature_block {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    justify-content: center;
}

.friendlyNature_block .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.friendlyNature_block .icon img {
    width: 60px;
    height: 60px;
}

.friendlyNature_blockTitle {
    font: normal 700 16px/1.63 Oswald;
    margin: 0;
    color: #222222;
    text-align: left;
    text-transform: uppercase;
    font-size: calc(12px + 4 * (100vw / 1920));
    padding-left: 12px;
}

.project-sec {
    float: left;
    width: 100%;
    background-color: #fff;
    padding-top: 50px;
}

.project-bx {
    position: relative;
    overflow: hidden;
}

.project-bx .img-bx img {
    transition: 0.4s ease-in-out;
    display: block;
    width: 100%;
}

.project-bx .overlay-bx {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    transition: 0.6s ease-in-out;
    opacity: 0;
    pointer-events: none;
    left: -110%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px;
}

.project-bx:hover .overlay-bx {
    left: 0;
    opacity: 1;
}

.project-bx .overlay-bx .title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
}

.project-bx .overlay-bx p {
    margin-bottom: 0;
    color: #7ebee1;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 16px;
    text-shadow: 1px 1px 1px black;
}

.testimonials-area {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    position: relative;
    /* background: url(../images/bg/pic-c-1bg.png) no-repeat;
    background-size: cover;
    background-position: bottom center; */
    z-index: 1;
}

.testimonials-area .test-bx {
    background: white;
    border: 1px solid #ddd;
    padding: 30px;
}

.test-bx .profile-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.test-bx .profile-row::before {
    position: absolute;
    content: "";
    right: 5px;
    top: 10px;
    z-index: -1;
    background-image: url(../images/icon/quote.svg);
    background-repeat: no-repeat, repeat;
    width: 55px;
    height: 45px;
    z-index: 2;
}

.test-bx .profile-row .img {
    position: relative;
    z-index: 1;
    display: inline-block;
    height: 80px;
    width: 80px;
    padding: 0;
    background: #fff;
    border-radius: 100%;
    overflow: hidden;
    min-width: 80px;
    border: 5px solid #ddd;
}

.test-bx .profile-row .name-row {
    padding-left: 15px;
}

.test-bx .profile-row .name-row .name {
    color: var(--black);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 3px;
    display: block;
}

.test-bx .profile-row .name-row .des {
    color: var(--pri);
    font-weight: 500;
    font-size: 16px;
}

.swiper-pagination {
    position: unset;
    margin-top: 13px;
}

.swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    transform: scale(1.2);
    margin: 0 6px !important;
    background: #888;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--pri);
}

.homeBlog {
    float: left;
    width: 100%;
    padding: 60px 0 50px;
    margin: 0;
    background-image: url(../images/bg/bg-4.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    background-color: #fff;
}

.blog-bx {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    height: calc(100% - 25px);
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    background: white;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-bx .blog-img img {
    transition: 0.2s ease-in-out;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-bx:hover .blog-img img {
    transform: scale(1.05);
}

.blog-des {
    color: #fff;
    width: 100%;
    padding: 20px;
}

.blog-des a {
    transition: 0.4s;
    font-size: 14px;
    color: var(--pri);
    display: inline-block;
    font-weight: 500;
}

.blog-bx .blog-des ._re_mr svg {
    transition: 0.1s;
}

.blog-bx .blog-des ._re_mr:hover svg {
    transform: translateX(3px);
}

.blog-des .head a {
    font-size: 19px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--black);
}

.blog-bx:hover .blog-des .head a {
    color: var(--pri);
}

.blog-des p {
    font-size: 15px;
    line-height: 23px;
}

.postDate {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 13px;
    color: var(--black);
    width: 60px;
    height: 60px;
    text-align: center;
    padding-top: 15px;
    border-radius: 4px;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.15) 0px 1px 2px 0px;
    font-weight: 600;
    z-index: 2;
}

.postDate span {
    font-size: 20px;
    display: block;
    line-height: 15px;
    color: var(--pri);
}

.webpule_quote {
    float: left;
    width: 100%;
    background: url(../images/shape/pt5.png);
    background-color: var(--pri);
    display: block;
    overflow: hidden;
    padding: 30px 0px;
}


.banner-contact {
    float: right;
    display: flex;
    align-items: center;
}

.banner-contact span {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
}

.banner-content h4 {
    float: left;
    margin-bottom: 0;
    color: #fff;
    font-size: 22px;
    max-width: 600px;
    line-height: 32px;
    text-align: left;
    padding: 7px 0px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.call-us {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin-right: 15px;
    display: inline-block;
}

.call-us svg {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 24px;
}

.call-us:hover {
    color: #212529;
}

.banner-content .readMore_2 .btn_caret {
    margin-left: 14px;
}

.footer_area {
    float: left;
    width: 100%;
    position: relative;
    background: #111;
    background-image: url(../images/pt15.png);
    padding-top: 70px;
    overflow: hidden;
}

.ft-logo {
    max-width: 180px;
    margin-bottom: 18px;
}

.footer_area img.footer_shape {
    position: absolute;
    right: 0;
    top: 65px;
}

.footer_area .footer_widget .widget_title {
    color: #fff;
    text-transform: capitalize;
    text-align: left;
    padding: 0px 0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer_area .footer_widget .widget_title::before {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 45px;
    height: 2px;
    background: var(--sec);
    left: 14px;
}

.footer_area .footer_widget .widget_title::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--sec);
}

.footer_area .footer_widget p {
    margin-bottom: 15px;
    line-height: 22px;
    color: #dedede;
    font-size: 14px;
    font-weight: 400;
}

.footer_area .footer_widget .flex_widget_links {
    display: flex;
    align-items: flex-start;
}

.footer_area .footer_widget .flex_widget_links .link {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;

}

.footer_area .footer_widget .flex_widget_links .link li {
    display: block;
    line-height: 22px;
    margin-bottom: 8px;
}

.footer_area .footer_widget .flex_widget_links .link li a {
    display: block;
    line-height: 22px;
    color: #dedede;
    font-size: 14px;
    font-weight: 400;
    padding-left: 15px;
    position: relative;
}

.footer_area .footer_widget .flex_widget_links .link li a::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--sec);
}

.footer_area .footer_widget .flex_widget_links .link li a:hover {
    color: var(--sec);
}

.footer_area .footer_widget.question {
    padding-right: 0px;
}

.footer_area .footer_widget .address {
    display: flex;
    align-items: center;
}

.footer_area .footer_widget .question_bx {
    margin-bottom: 15px;
    float: left;
    width: 100%;
}

.footer_area .footer_widget .question_bx svg {
    color: var(--sec);
    margin-top: 5px;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    float: left;
    min-width: 22px;
}

.footer_area .footer_widget .question_bx .number,
.footer_area .footer_widget .question_bx .email,
.footer_area .footer_widget .question_bx .address_place {
    line-height: 15px;
}

.footer_area .footer_widget .question_bx p,
.footer_area .footer_widget .question_bx p a {
    color: #dedede;
    font-size: 14px;
    display: inline-block;
    line-height: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 0;

}

.footer_area .footer_widget .question_bx .number a {
    font-size: 15px;
    line-height: 32px;
    font-weight: 400;
}

.footer_area .footer_widget .question_bx p a:hover {
    color: var(--sec);
    text-decoration: none;
}

.footer_area .footer_widget .question_bx h4 {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    line-height: 30px;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer_area .footer_widget .question_bx span a {
    color: #fff;
    display: inline-block;
}

.footer_area .footer_widget .question_bx span a:hover,
.footer_area .footer_widget .question_bx span a:focus {
    color: var(--pri);
}

.footer_area .footer_widget .question_bx:last-child {
    margin-bottom: 0;
}


ul.social {
    float: left;
    margin: 0;
    padding: 0;
}

ul.social li {
    margin: 0px 0 0 3px;
    display: inline-block;
}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 1px;
}

ul.social li a svg {
    color: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

ul.social li.facebook a {
    background: #3C5B9B;
}

ul.social li.twitter a {
    background: var(--liner);
    background-color: #0e1419;
}

ul.social li.linkedin a {
    background: #027ba5;
}

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%);
}



.footer_area .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0 5px 0;
    margin-top: 60px;
    color: #fff;
    background: #111;
}

.footer_area .copyright a {
    color: var(--sec);
    display: inline-block;
}

.footer_area .copyright p {
    color: #ffffff;
    font-size: 14px;
}

.footer_area .copyright p a {
    color: #ffffff;
}

.footer_area .copyright a:hover {
    color: white;
}

.text-right {
    text-align: right;
    font-size: 16px;
}

.footer_area .text-right {
    text-align: right;
    font-size: 14px;
}

.footer_area .copyright .footer_social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer_area .copyright .footer_social li {
    margin-left: 57px;
}

.footer_area .copyright .footer_social li:first-child {
    margin-left: 0;
}

.footer_area .copyright .footer_social li a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.footer_area .footer_widget .question_bx .number,
.footer_area .footer_widget .question_bx .email,
.footer_area .footer_widget .question_bx .address_place {
    line-height: 15px;
}

.progress-wrap {
    position: fixed;
    bottom: 35px;
    right: 20px;
    height: 49px;
    width: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'><path fill-rule='evenodd' d='M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z'></path></svg>");
    text-align: center;
    font-weight: 900;
    color: var(--pri);
    ;
    left: 2px;
    top: 2px;
    text-decoration: none;
    height: 45px;
    background: #282d32;
    border-radius: 100%;
    width: 45px;
    cursor: pointer;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    line-height: 55px;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--pri);
    ;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

.whatapp_btn {
    background: #01e675;
    width: 37px;
    height: 37px;
    color: #fff;
    position: fixed;
    left: 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: 18px;
    height: 18px;
}

.whatapp_btn:hover {
    transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

#whatsapp .modal-dialog {
    margin-top: 15%;
}


.send_enquiry {
    border-radius: 2px;
    bottom: 35px;
    color: #ffffff;
    display: table;
    height: 43px;
    left: 15px;
    min-width: 43px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    transition: all 0.2s linear;
    background: var(--liner);
    background-color: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
    display: none;
}

.send_enquiry svg {
    width: 20px;
    height: 20px;
    line-height: 50px;
}

.send_enquiry:hover {
    color: #fff;
    padding: 0 20px;
}

.send_enquiry:focus {
    color: #fff;
}

.send_enquiry span {
    display: table-cell;
    vertical-align: middle;
    font-size: 15px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all 0.5s;
    text-transform: uppercase;
}

.send_enquiry:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
}

.modal-content {
    border-radius: 0;
}

.modal-header {
    padding: 0 15px;
    background: var(--pri);
    ;
    color: #fff;
    border-radius: 0;
}

.modal-header h5 {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.modal-header h6 {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
}

.modal-header .modal-title {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    padding: 15px 0;
    text-transform: initial;
    letter-spacing: 0.2px;
    font-weight: 600;
    font-family: var(--font);
}

.btn-close {
    width: 1em;
    height: 1em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    outline: 0;
}

.send_p {
    font-size: 13px;
    line-height: 18px;
    text-align: center;
}

.g-recaptcha {
    transform: scale(0.80);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0
}


/* Inner Heading Banner*/
.heading_banner {
    float: left;
    width: 100%;
    position: relative;
    background-size: 100%;
    background-position: top center;
    padding: 165px 0 100px;
    margin: 0;
}

.heading_banner:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    top: 0;
    left: 0;
    z-index: 0;
    content: '';
}

.heading_banner .container {
    position: relative;
    z-index: 9;
}

.heading_banner h1 {
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.heading_banner h2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: normal;
    color: #eee;
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

.heading_banner .cat_title {
    margin: 0 0 0px;
    text-transform: capitalize;
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 9px 20px;
    border-radius: 2px;
    background: var(--pri);
}

.heading_banner .cat_title2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: normal;
    color: #eee;
    text-align: center;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}



/* Breadcrumb*/
.inner_breadcrumb {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
    margin: 0;
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2); */
    border-bottom: 1px solid #ddd;
}

.inner_breadcrumb .breadcrumb {
    background: none;
    border-radius: 0;
    border: none;
    list-style: none;
    padding: 0;
    float: left;
    display: inline-block;
    text-transform: capitalize;
    margin: 0;
}

.inner_breadcrumb .breadcrumb li {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    float: left;
    display: inline-block;
    line-height: 49px;
}

.inner_breadcrumb .breadcrumb li a {
    float: left;
    padding: 0;
    color: #666;
    letter-spacing: 0.3px;
}

.inner_breadcrumb .breadcrumb li:before {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    padding: 0 14px;
    color: #fff;
    display: inline-block;
}

.inner_breadcrumb .breadcrumb li.active {
    color: var(--pri);
}

.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    color: #fff;
    padding: 0 14px;
}

.inner_breadcrumb .breadcrumb li+li:before {
    float: left;
    padding: 18px 10px;
    color: #aaa;
}

.title_h2 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--liner);
    background-color: var(--pri);
    padding: 10px 15px;
    font-size: 20px;
    border-radius: 1px;
}

.right_side .title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

/* About Us */
.about_page {
    float: left;
    width: 100%;
    background: white;
    padding: 60px 0;
}

.about_page .title_2 {
    color: var(--pri);
}

.about_page .title_2:after {
    background: #282d32;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}

.about_page .abt-img {
    background: url(../images/about/abt-banner2.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}

.about_page .abt-cont {
    padding: 50px;
    background: #f4f5f8;
}

.about_page .abt-cont p {
    text-align: justify;
    margin-bottom: 10px;
    line-height: 25px;
    font-size: 15px;
    color: #333;
}

.about_page .abt-cont h1 {
    color: var(--black);
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 10px;
}

.about_page .abt-cont h1 span {
    display: inline;
    color: var(--pri);
}

.about_page .abt-cont h2,
.about_page .abt-cont h3 {
    font-size: 22px;
    margin-bottom: 7px;
    font-weight: 700;
}

.left_sidebar {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.left_sidebar .left_title {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}


.left_sidebar ul {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--pri);
    ;
}

.left_sidebar ul li {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #444;
    list-style: none;
}

.left_sidebar ul li a {
    color: #FFF;
    padding: 10px;
    font-weight: 500;
    line-height: 20px;
    font-size: 14px;
}

.left_sidebar ul li a:hover,
.left_sidebar ul li a:focus,
.left_sidebar ul li a.active {
    background: #050708;
    color: #fff;
}

.left_sidebar ul li ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.left_sidebar ul li ul li {
    border-bottom: 1px dashed #CCC;
    list-style-type: none;
    position: relative;
}

.left_sidebar ul li ul li a {
    display: block;
    font-weight: 500;
    color: #333;
    text-align: left;
    font-size: 14px;
    padding: 4px 15px;
    text-decoration: none;
    line-height: 24px;
}

.left_sidebar ul li ul li a:hover,
.left_sidebar ul li ul li a:focus,
.left_sidebar ul li ul li a.active {
    background: #050708;
    color: #fff;
}

.left_sidebar ul li ul li a i {
    float: right;
    line-height: 24px;
}

.left_sidebar ul li ul li ul {
    display: none;
    transition: all 2s;
    position: absolute;
    left: 98%;
    top: 0px;
    z-index: 200;
    background: #fff;
    width: 200px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}

.left_sidebar ul li ul li:hover ul {
    display: block;
    transition: all 2s;
}

.left_sidebar ul li ul li ul li a {
    display: block;
    font-weight: 400;
    color: #333;
    text-align: left;
    font-size: 13px;
    padding: 4px 15px;
    text-decoration: none;
    text-transform: initial;
    line-height: 24px;
}

.left_sidebar ul li ul li ul li a:hover,
.left_sidebar ul li ul li ul li a:focus,
.left_sidebar ul li ul li ul li a.active {
    background: #050708;
    color: #fff;
}

.left_sidebar form {
    float: left;
    width: 100%;
    background: #fff;
    padding: 10px 10px 10px;
}

.right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.right_side h2 {
    padding: 0px;
    margin: 20px 0 5px;
    line-height: 30px;
    font-size: 22px;
    color: var(--pri);
    ;
    font-weight: 600;
}

.right_side h3 {
    padding: 0px;
    margin: 10px 0 5px;
    line-height: 30px;
    font-size: 20px;
    color: var(--pri);
    ;
    font-weight: 600;
}

.wps_right {
    float: left;
    width: 100%;
    /*👉 background: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 20px;👈*/
}

.wps_right p {
    line-height: 24px;
    margin-bottom: 10px;
    text-align: justify;
    font-size: 15px;
    font-weight: normal;
    color: #333;
}

.wps_right ul {
    margin: 0 0 25px;
    padding: 0;
}

.wps_right ul li {
    line-height: 28px;
    font-size: 16px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.wps_right ul li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

.left_image {
    float: left;
    width: 340px;
    margin: 0px 15px 15px 0;
    text-align: center;
}

.left_image .left_centered {
    width: 100%;
    position: relative;
    padding: 0px;
    min-height: 338px;
    overflow: hidden;
    border: 1px solid #eee;
}

.left_image .left_centered .image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 338px;
    transition: transform .5s ease;
}

.left_image .left_centered .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}



.right_image1 {
    float: right;
    width: 340px;
    margin: 0px 0px 15px 15px;
    text-align: center;
}

.right_image1 .left_centered {
    width: 100%;
    position: relative;
    padding: 0px;
    min-height: 338px;
    overflow: hidden;
    border: 1px solid #eee;
}

.right_image1 .left_centered .image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 338px;
    transition: transform .5s ease;
}

.right_image1 .left_centered .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.category_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f5f5f5;
}

.category_page .title_2:after {
    background: #282d32;
    bottom: -13px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}


.category_page .wps_right ul {
    margin: 0 0 25px;
    padding: 0;
}

.category_page .wps_right ul li {
    display: block;
    list-style: none;
    line-height: 24px;
    color: #423f3f;
    font-size: 16px;
    font-weight: normal;
}

.category_page .wps_right ul li:before {
    margin-right: 5px;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='currentColor' viewBox='0 0 16 16'><path d='m12.14 8.753-5.482 4.796c-.646.566-1.658.106-1.658-.753V3.204a1 1 0 0 1 1.659-.753l5.48 4.796a1 1 0 0 1 0 1.506z'/></svg>");

}

.product_right_image {
    float: right;
    max-width: 450px;
    width: 100%;
    margin: 0px 0 25px 25px;
    text-align: center;
}

.product_right_image .detail_image {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 450px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.product_right_image .detail_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.product_right_image .product_dimage {
    width: 100%;
    text-align: center;
    overflow: hidden;
    height: 400px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.product_right_image .readMore_2 {
    margin-left: -40px;
}

.more_images {
    float: left;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}


#thumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 10px;
    overflow: hidden;
    text-align: center;
}

#thumbs img {
    width: 65px;
    border: 1px solid #ccc;
    cursor: pointer;
    margin: 0;
}

#thumbs .item.youtube a {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--liner);
    background-color: #f70000;
    border-radius: 1px;
}

#thumbs .item.youtube svg {
    height: 25px;
    width: 25px;
    color: white;
}

#thumbs img.active {
    border: 1px solid var(--pri);
}



.wps_right h2 {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--pri);
}

.wps_right .title_h2 {
    color: #fff;
}

.wps_right h3 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--pri);
}

.wps_right h4 {
    font-size: 18px;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--pri);
    ;
    text-align: left;
    padding: 0;
}

.wps_right table {
    margin: 0;
}

.wps_right table tbody tr td {
    vertical-align: middle;
    padding: 8px 10px;
    font-size: 15px;
    line-height: normal;
    text-align: left;
}

.wps_right table tbody tr td {
    border: 1px solid #e0e0e0;
    width: 60%;
}

.wps_right table tbody tr td:first-child {
    color: var(--pri);
    ;
    width: 40%;
}

.imageAbout {
    width: 100%;
    clear: both;
    margin-bottom: 15px;
    text-align: center;
}

.imageAbout img {
    width: auto;
    display: inline-block;
    margin: 0 auto;
    border: 1px solid var(--pri);
    ;
}

.interested_section {
    float: left;
    width: 100%;
    text-align: center;
    margin: 20px 0
}

.interested_section .interested_btn {
    font-size: 16px;
    color: #fff;
    background: var(--pri);
    border: 1px solid var(--pri);
    border-radius: 0px;
    padding: 10px 0;
    width: 258px;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
}

.interested_section .interested_btn svg {
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.interested_section .interested_btn:hover {
    background: #333;
    color: #fff;
    border: 1px solid #333
}

.product_listing {
    float: left;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0px 3px 5px 0px rgba(210, 210, 210, 0.75);
    transition: all 0.35s ease-in-out;
    border-style: solid;
    border-width: 1px 1px 0px 1px;
    border-color: #eee;
    background: #fff;
}

.product_listing .product {
    width: 100%;
    position: relative;
    padding: 0;
    text-align: center;
    min-height: 200px;
    overflow: hidden;
    border-right: 1px solid #eee;
    display: inline-block;
}

.product_listing .product .image1 {
    width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: 374px;
    transition: all 0.4s ease-in-out;
    margin-bottom: 0px;
}

.product_listing .product .image1 img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.product_listing .product .small {
    padding-top: 10px;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
}

.product_listing .product .small img,
.product_listing .product .largeImage img {
    padding: 0;
    cursor: pointer;
    border: 1px solid #eee;
}

.product_listing .product .small .item {
    display: inline-block;
    margin-right: 6px;
    width: 60px;
    cursor: pointer;
}

.product_listing .product .small .item:last-child {
    margin: 0;
}

.product_listing .product .small .item.active {
    border-color: var(--pri);
    ;
}

.product_listing .product .small .item.youtube {
    width: 60px;
    height: 60px;
    background: #f70000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_listing .product .small .item.youtube a {
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-li {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 1px 3px;
    transition: 0.2s;
    background: white;
}

.pr-li:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px;
}

.pr-li a {
    height: 100%;
}

.pr-li .img_bx {
    padding: 10px;
    border-right: 1px solid #eee;
    height: 100%;
}

.pr-li .g_100 .img_bx {
    border: 0;
}

.pr-li .tx-bx {
    padding: 20px;
}

.grid.pr_view .pr-li .tx-bx {
    padding-top: 0;
}


.pr-li .tx-bx .title {
    color: var(--pri);
    border-bottom: 1px solid #eee;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 22px;
}

.grid.pr_view .pr-li .tx-bx .title {
    text-align: center;
    border: none;
    margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
    text-align: center;
}

.pr-li .tx-bx .title a {
    font-size: 20px;
    color: var(--black);
    transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
    color: var(--pri);
}

.pr-li .tx-bx .info {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 10px;
}

.grid.pr_view .pr-li .tx-bx .info {
    display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
    background-color: var(--pri);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.g_100 {
    width: 100% !important;
}

.youtube svg {
    width: 40px;
    height: 40px;
}

.product_listing .product p {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px;
}

.product_listing .product .all_btns {
    margin-top: 0;
}

.product_listing .right-content .readMore_2 {
    margin-top: 10px;
    margin-right: 50px;
}

.padding0 {
    padding: 0;
}

.right-content {
    position: relative;
    padding: 10px;
    padding-right: 15px;
}

.right-content h3 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.right-content h3 a {
    color: #333;
}

.right-content h4 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
}

.right-content .head {
    line-height: 24px;
    padding: 15px 0;
    text-align: left;
    font-size: 20px;
    margin-bottom: 0;
    color: #333;
}

.right-content .head a {
    color: #333;
}

.right-content:hover .head a {
    color: var(--pri);
}

.right-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.blue-line1 {
    width: 100%;
    display: block;
    height: 1.1px;
    background: #eee;
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px;
}

.product_listing:hover .right-content h3 a {
    color: var(--pri);
}

.product_listing:hover .right-content h4 a {
    color: var(--pri);
}

.right-content .table-responsive {
    float: left;
    width: 100%;
    overflow: hidden;
    max-height: 230px;
    overflow: auto;
    padding-right: 5px;
    margin-bottom: 15px;
}

.detailsPage .right-content .table-responsive {
    max-height: 300px;
}

.right-content table {
    margin-bottom: 15px;
}

.right-content table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 15px;
    line-height: normal;
    text-align: left;
}

.right-content table tbody tr td {
    border: 1px solid #eee;
    width: 60%;
}

.right-content table tbody tr td:first-child {
    color: var(--pri);
    ;
    width: 40%;
}

.product_listing .right-content .specifications {
    display: block;
    position: relative;
    padding: 0 0 5px;

}

.product_listing .right-content .specifications ul {
    list-style: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.product_listing .right-content .specifications ul li {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 25%;
    margin-bottom: 0px;
    align-items: center;
    border: 1px solid #eee;
    padding: 10px;
}

.product_listing .right-content .specifications ul li::before {
    content: "";
    width: 0;
    height: 0;
}

.product_listing .right-content .specifications ul li .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.product_listing .right-content .specifications ul li .specificationsDesc {
    padding-left: 10px;
}

.product_listing .right-content .specifications ul li .specificationsDesc .title {
    font: normal 300 14px/1.1 Oswald;
    margin-bottom: 5px;
    color: #222222;
    text-transform: uppercase;
    display: block;
}

.product_listing .right-content .specifications ul li .specificationsDesc .value {
    font: normal 400 13px/1.1 Oxygen;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    color: #777777;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.you_may {
    float: left;
    width: 100%;
    color: var(--pri);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.you_may button {
    font-size: 13px;
    outline: none;
    padding: 8px 12px;
    border: none;
    background: var(--black);
    border-radius: 1px;
    color: #fff;
    transition: .2s;
}

.you_may button.active,
.you_may button:hover {
    background: var(--pri);
}

.team_member {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    box-shadow: 0px 3px 5px 0px rgba(210, 210, 210, 0.75);
    transition: all 0.35s ease-in-out;
    border-style: solid;
    border-width: 1px 1px 0px 1px;
    border-color: #eee;
}

.team_member .image {
    width: 100%;
    position: relative;
    padding: 15px 15px 15px 0;
    text-align: center;
    min-height: 268px;
    overflow: hidden;
    border-right: 1px solid #eee;
    display: inline-block;
}

.team_member .image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}

.team_info {
    position: relative;
    padding-right: 15px;
}

.team_info h3 {
    line-height: 24px;
    padding: 10px 0;
    text-align: left;
    margin: 0;
}

.team_info h3 small {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}



/*  Testimonial Page  */

.testimonial_block {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.testimonial_text_box {
    margin: 0 0 30px;
    padding: 32px 20px 35px 0;
    background: #eee;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
    display: table;
    position: relative;
    border-radius: 4px;
}

.testimonial_text_box .this-quote {
    margin: 0 20px;
    width: 30px;
}

.testimonial_text_box .this-quote img {
    width: auto;
}

.testimonial_text_box:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -25px;
    left: 69px;
    border-top: 25px solid #eee;
    border-right: 25px solid transparent;
}

.testimonial_text_box .this-texts {
    display: table-cell;
    width: calc(100% - 70px);
    vertical-align: top;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

.testimonial_author .media-left {
    padding-right: 20px;
    float: left;
}

.testimonial_author .media-left img {
    border: 1px solid var(--pri);
    ;
    border-radius: 4px;
}

.testimonial_author .media-left a {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.testimonial_author .media-body {
    vertical-align: middle;
}

.testimonial_author .this-title {
    font-size: 18px;
    color: var(--pri);
    ;
    text-align: left;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 0;
}

.testimonial_author .loc {
    color: #050708;
    line-height: 20px;
    margin: 0;
}


.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #F2EEEA;
}

.gallery_page .title_2 {
    color: #050708;
}

.gallery_page .gallery_item {
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 0.98px 0.02px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.gallery_page .gallery_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery_item_info {
    text-align: center;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #eee;
}

.gallery_item_info .title_h3 {
    margin: 0;
    font-size: 16px;
    color: var(--pri);
}

.gallery_item_info h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
}

.gallery_item_info p {
    font-size: 13px;
    margin: 0;
    margin-top: 4px;
    color: #333;
    max-width: 100%;
}

.hover_effect {
    display: block;
    position: relative;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 280px;
}

.hover_effect:after {
    color: #fff;
    position: absolute;
    font-size: 1.6em;
    text-align: center;
    line-height: 40px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.hover_effect img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: auto;
    height: auto;
}

.hover_effect:hover:after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=60);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.hover_effect:hover img {
    filter: alpha(opacity=40);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    -moz-opacity: 0.4;
    -khtml-opacity: 0.4;
    opacity: 0.4;
}

.hover_effect:hover {
    background: var(--pri);
}

.hover_effect:after {
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' fill='white' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M6.5 12a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11zM13 6.5a6.5 6.5 0 1 1-13 0 6.5 6.5 0 0 1 13 0z'/><path d='M10.344 11.742c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1 6.538 6.538 0 0 1-1.398 1.4z'/><path fill-rule='evenodd' d='M6.5 3a.5.5 0 0 1 .5.5V6h2.5a.5.5 0 0 1 0 1H7v2.5a.5.5 0 0 1-1 0V7H3.5a.5.5 0 0 1 0-1H6V3.5a.5.5 0 0 1 .5-.5z'/></svg>");
}

/* Video Gallery */
.video_gallery {
    float: left;
    width: 100%;
    margin: 0 0 20px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    border: 1px solid #eee;
    transition: all .3s ease-in-out
}

.video_gallery:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .5);
}

.video_gallery i {
    line-height: inherit;
    color: #ff4f47;
    font-size: 20px;
}

.video_gallery iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 5px;
}

.video_gallery h3 {
    font-size: 16px;
    color: #333;
    padding: 0;
    line-height: normal;
    font-weight: normal;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.video_gallery h3 svg {
    width: 50px;
    height: 50px;
    padding: 10px;
    background: #e02f2f;
    border: 1px solid #ce2626;
    text-align: center;
    line-height: 45px;
    float: left;
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
}


.blog_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f3f3f3;
}

.blog_page .title_2 {
    color: var(--black);
}

.sharethis-inline-share-buttons {
    margin-bottom: 20px;
}

.blog_page .blog_left h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.blog_page .singleBlog {
    margin-bottom: 50px;
    position: relative;
}

.blog_page .homeSingle .image {
    margin: 0;
}

.blog_page .homeSingle .blogIntro {
    padding: 15px;
}

.blog_page .homeSingle .blogIntro ul {
    margin-bottom: 10px;
}

.blog-2 {
    background: #fff;
    margin-bottom: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    overflow: hidden;
}

.blog-2 .blog-photo img {
    height: 370px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-2 .detail {
    padding: 30px;
}

.blog-2 .detail .tt a {
    font-size: 19px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.blog-2:hover .detail .tt a {
    color: var(--pri);
}

.blog-2 .detail p {
    margin-bottom: 15px;
}

.mini-blogs ul {
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    padding-bottom: 0;
}

.mini-blogs ul li {
    padding-top: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.mini-blogs ul li:last-child {
    border-bottom: 0;
}

.mini-blogs ul .tt {
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.mini-blogs ul .tt span {
    color: var(--pri);
}

.mini-blogs .tx-bx .title {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 3px;
}

.mini-blogs ul li:hover .tx-bx .title {
    color: var(--pri);
}

.mini-blogs .tx-bx p {
    line-height: normal;
    font-size: 13px;
    color: #555;
    line-height: 18px;
}

.left_title1 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;

}

.single-post2 {
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-thumb2 {
    overflow: hidden;
    width: 100%;
}

.blog-thumb2 img {
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
}

.blog-content2 {
    background: #fff;
    padding: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 2.5px 4.33px 15px 0px rgb(0 0 0 / 9%);
    width: 90%;
    margin: auto;
    margin-top: -115px;
    margin-bottom: 15px;
}

.blog-content2 .b-meta {
    margin-bottom: 10px;
    font-size: 14px;
}

.blog-content2 .b-meta ul {
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
}

.b-meta ul li {
    display: inline-block;
    margin-right: 8px;
    border-right: 2px solid #f5f5f5;
    padding-right: 8px;
}

.b-meta svg {
    margin-right: 5px;
    color: #554c86;
}

.b-meta ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}

.blog-content2 .title_h5 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: normal;
    padding: 0;
    height: 90px;
    position: relative;
    font-weight: normal;
    text-align: left;
    display: flex;
    align-items: center;
}

.blog-content2 .title_h5 a {
    text-decoration: none;
    line-height: normal;
    color: var(--pri);
    ;
}

.blog-content2 .title_h5 a:hover {
    color: var(--pri);
    ;
}

.blog-content2 h5 span {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100%;
    line-height: 25px;
}


/* New Blog Details Page */
.blog_details {
    float: left;
    width: 100%;

}

.blog_details ul {
    display: inline-block;
    margin: 0px 0 20px;
    padding: 0;
}

.blog_details ul li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
}

.blog_details ul li:before {
    content: none;
    margin: 0;
}

.blog_details ul li a {
    color: #333333;
    transition: all 0.5s ease-out;
}

.blog_details ul li i {
    margin-right: 5px;
}

.blog_details1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog_details1 img {
    margin-bottom: 15px;
}

.blog_details_img img {
    display: block;
    max-height: 500px;
    margin: 10px auto;
}

.blog_details1 p {
    text-align: justify;
    line-height: 24px;
}

.blog_details1 .block-quote {
    padding: 25px 30px;
    margin-bottom: 20px;
    background: #fff;
    border-left: 3px solid var(--pri);
    ;
}

.blog_details1 .block-quote p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

.blog_details1 h3 {
    margin: 0 0 5px;
    padding: 0;
    line-height: 30px;
}

.blog_details1 ul {
    float: left;
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.blog_details1 ul li {
    line-height: 28px;
    font-size: 15px;
    margin: 0;
    vertical-align: middle;
    text-align: left;
    padding: 0;
    display: flex;
    align-items: center;
}

.blog_details1 ul li:before {
    width: 20px;
    height: 20px;
    color: #4e4e4e;
    font-weight: 400;
    margin-top: 0;
    margin-right: 5px;
    float: left;
    content: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='currentColor' viewBox='0 0 16 16'><path d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/></svg>");
}

.fb-comments {
    width: 100%;
}

/* Blog Details  */
.blogdetails img {
    width: 100%;
}

.blog_news .content_details {
    float: left;
    width: 100%;
    background: #eee;
    padding: 20px 20px 20px;
}

.blog_news .content_details h2 {
    text-transform: capitalize;
    line-height: 30px;
    font-size: 20px;
    margin: 0 0 10px;
}

.blog_news .content_details h2 a {
    color: #333333;
    transition: all 0.5s ease-out;
}

.blog_news .content_details ul {
    display: inline;
    margin: 0px;
}

.blog_news .content_details ul li {
    display: inline-block;
    margin-right: 15px;
}

.blog_news .content_details ul li:before {
    content: none;
    margin: 0;
}

.blog_news .content_details ul li i {
    margin-right: 5px;
}

.blog_news .block-quote {
    padding: 30px 40px;
    margin-bottom: 20px;
    background: #fdfdfd;
    border-left: 3px solid var(--pri);
    ;
}

.blog_news .block-quote p {
    font-size: 15px;
    line-height: 24px;
}

.blog_news .content_details ol {
    width: 100%;
    margin: 0 0 25px;
    padding: 0;
}

.blog_news .content_details ol li {
    list-style: none;
    line-height: 24px;
    color: #423f3f;
    font-size: 15px;
    font-weight: normal;
}

.blog_news .content_details ol li::before {
    content: "\f0da";
    font-family: "FontAwesome";
    margin-right: 5px;
}


.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;

}

#contact_form label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

#quick_form label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

#quick_enquiry label.error,
.output {
    color: #FB3A3A;
    font-weight: normal;
    margin-bottom: 15px;
}

.pac-container {
    z-index: 100000;
}


.contact_map {
    float: left;
    width: 100%;
    height: 550px;
}

.contact_form_grid1 {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 4px;
    overflow: hidden
}

.contact_form_grid1 .contactTitle {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--pri);
}

.contact_details .address_list li {
    clear: both;
    list-style: none;
    color: #333;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}


/*👉.contact_details {
    background: var(--pri);;;
    border-radius: 4px 0 0 4px;
    padding: 40px 40px 50px 30px;
}👈*/

.contact_details .title_h2_2 {
    color: var(--pri);
    ;
    font-size: 20px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact_details p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

.contact_details .address_list {
    clear: both;
    margin: 0 0 20px;
    padding: 0;
}

.contact_details .address_list li {
    clear: both;
    font-weight: 500;
    list-style: none;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

.contact_details .address_list li svg {
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 7px;
}

.contact_details .address_list li a {
    color: #333;
    display: flex;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 0px;
    display: inline-block;
}

.contact_details .address_list li a span {
    font-size: 30px;
    margin-right: 13px;
}

.contact_details .address_list li:first-child {
    display: flex;
    align-items: center;
}

.contact_details .address_list li span {
    font-size: 30px;
    margin-right: 13px;
}

.contact_details .address_list li a:hover,
.contact_details .address_list li a:focus {
    color: var(--pri);
}

.social_list {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.social_list li {
    list-style: none;
    display: inline-block;
}

.social_list li a {
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid #fff;
    text-align: center;
    margin-right: 10px;
}

.social_list li a:hover {
    color: #050708;
    border: 1px solid #050708;
}

.contact_form_grid .form_grid {
    background-color: #ffffff;
    padding: 30px;
}

.form_grid .title_h2_2 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
    color: var(--pri);
    ;
}


/* Sitemap page */
.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #eee;
    position: relative;
}


.sitemap_page .title_2 {
    color: var(--pri);
    ;
}

.sitemap_page .title_2:after {
    background: #282d32;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}


.sitemap_right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #050708;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.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;
}

.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: #050708;
}

.market_area h3 {
    float: left;
    display: block;
    margin: 15px 0;
}

.market_area h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--pri);
    ;
}

.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.market-list li {
    list-style: none;
    padding-right: 10px;
    line-height: 20px;
    width: 25%;
    float: left;
}

.market-list li:before {
    content: none !important;
    margin-right: 0 !important;
}

.market-list li a {
    width: 97%;
    height: auto;
    padding: 10px 0 10px 12px;
    margin: 0 0 9px;
    display: block !important;
    color: #333 !important;
    font-size: 14px;
    background-color: #ddd;
}

.market-list li a:hover {
    background: var(--pri);
    ;
    color: #fff !important;
}


/* Products Poup */
.product_popup {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.product_popup_image {
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    position: relative;
    height: 430px;
}

#callback .product_popup_image {
    height: 176px;
}

.product_popup_image img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: 100%;
    margin: auto;
}

.product_popup .popupTitle {
    color: var(--pri);
    ;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
    padding: 0;
    font-family: var(--font);
}

.product_popup p {
    font-size: 14px;
    line-height: 24px;
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

#product_enquiry label.error {
    color: #FB3A3A;
    font-weight: normal;
}

.product_right_image .read_more {
    margin-top: 0;
}


.logob {
    border-radius: 14px;
    padding: 5px 5px;
    background-color: #fff;
}

.video_section iframe {
    width: 100%;
    height: 415px;
}


.latest {
    font-size: 26px;
    font-weight: bold;
    font-family: var(--font);
    color: #0c0c0c;
    margin: 0 0 20px;
}

.webpulse-home_blog h6 span {
    color: #050708;
}

.webpulse-home_blog h6 {
    text-transform: uppercase;
}

.feature_height {
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    height: 140px;
}

.thumb {
    text-align: center;
    width: 100%;
    display: inline-block;
    padding: 0px;
}

.fadeImg {
    animation-name: fadeimg;
    animation-duration: 2s;
}

@keyframes fadeimg {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zump {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    50% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.privacy_policy {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    background: #fff;
}

.privacy_policy h2 {
    font-size: 22px;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.privacy_policy h3 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 8px;
    font-weight: 600;
    color: #8e5341;
}

.privacy_policy p {
    font-size: 14px;
    line-height: 22px;
}

.privacy_policy ul {
    margin: 0;
    padding: 0;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.moreBtn {
    padding: 10px 20px;
    color: #fff;
    background: var(--pri);
    display: inline-block;
    outline: none;
    border: 0;
}

.moreBtn svg {
    width: 18px;
    height: 18px;
}

.moreBtn:hover {
    color: #fff;
    background: var(--black);
}

.form-control {
    border-radius: 0px;
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 43px;
    height: 43px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    border-radius: 1px;
    z-index: 2;
    transition: 0.2s ease-in-out;
    background: #fff;
    opacity: 1;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CF7B69'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CF7B69'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-next:hover,
.carousel-control-next:focus,
.carousel-control-prev:hover,
.carousel-control-prev:focus {
    opacity: 1;
    background: var(--pri);
}

.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-next:focus .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-prev:focus .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 18px;
    width: 18px;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.iti {
    width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    height: 40px;
}


.productBrochureandvideo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #999;
    color: #666;
    padding: 4px 10px;
    font-weight: 500;
    transition: 0.3s;
}

.productBrochureandvideo a svg {
    color: #fd002c;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a:hover {
    color: #fd002c;
    border: 1px dashed #fd002c;
}

.pro-des .pr-tt {
    font-size: 25px;
    line-height: normal;
    margin-bottom: 10px;
    font-family: var(--pri-font);
    color: var(--pri);
    font-weight: bold;
    margin-bottom: 15px;
}

.pro-des .price {
    margin-bottom: 3px;
    font-weight: 500;
}

.pro-des .des span {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--black);
    display: inline-block;
}

.pro-des .des p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 23px;
    color: #333;
    text-align: justify;
}

.pro-des .des ul {
    margin-bottom: 15px;
    list-style: square;
    padding-left: 30px;
    color: #333;
    font-size: 14px;
}

.pro-des .des ul li {
    font-weight: 400;
    color: #555;
    line-height: 24px;
}

.pro-des .des ul li strong {
    font-weight: 500;
    color: #333;
}

.btn-grp {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.btn-grp .v-btn {
    background: var(--liner);
    background-color: #f70000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 51px;
    border-radius: 6px;
}

.btn-grp .w-btn {
    position: relative;
    z-index: 1;
    background: var(--liner);
    background-color: #01e675;
    display: inline-block;
    color: #fff;
    padding: 10px 12px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    font-size: 16px;
    text-transform: capitalize;
    overflow: hidden;
    transition: 0.4s;
    border: 0;
}

.btn-grp .w-btn svg {
    width: 20px;
    height: 20px;
}

.custom-from-row {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    background: white;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    position: relative;
}

.frm-info {
    background-color: var(--pri);
    color: white;
    position: absolute;
    top: 50%;
    max-width: 300px;
    border-radius: 10px;
    transform: translateY(-50%);
    left: -90px;
}

.frm-info .tt {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
}

.info-row {
    padding: 25px 30px;
    float: left;
    width: 100%;
}

.info-row .info-bx {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.info-row .info-bx svg {
    width: 18px;
    height: 18px;
}

.info-row .info-bx p,
.info-row .info-bx a {
    width: calc(100% - 18px);
    margin-bottom: 0;
    color: white;
    font-size: 15px;
    font-weight: 400;
    padding-left: 10px;
    line-height: 22px;
}

.info-row .info-bx a:hover {
    color: #333;
}

.info-row ul.social {
    margin-top: 10px;
}

.custom-from-row .custom-frm {
    padding: 30px;
}

.custom-from-row .custom-frm .tt {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.custom-from-row .custom-frm .form-control {
    background: #eee;
    border: none;
    border-radius: 5px;
    height: 46px;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
    line-height: 34px;
}

.custom-from-row .custom-frm textarea {
    padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
    height: 46px;
}

.process-bx {
    text-align: center;
    position: relative;
    margin: 0 auto;
    padding: 20px 10px;
    padding-bottom: 0;
    height: 100%;
}

.process-bx .step-num {
    display: inline-block;
    text-align: center;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: white;
    background: var(--liner);
    background-color: var(--pri);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
}

.process-bx .img {
    border-radius: 5px;
    overflow: hidden;
    height: calc(100% - 45px);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.process-bx .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.process-bx:hover .img img {
    transform: scale(1.1);
}

.process-bx .tt {
    line-height: 45px;
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    transition: 0.2s ease-in-out;
}

.process-bx:hover .tt {
    color: var(--pri);
}

.video-sec {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.video-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.25;
}

.video-sec #myVideo {
    max-width: 100%;
    min-width: 100%;
    height: 450px;
    object-position: center;
    object-fit: cover;
    display: block;
}

.video-sec .overlay-bx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    width: 100%;
    max-width: 750px;
}

.video-sec .overlay-bx .tt {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: normal;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 10px black;
}

.video-sec .overlay-bx p {
    font-weight: 500;
    color: white;
    text-shadow: 1px 1px 2px black;
    margin-bottom: 25px;
    font-size: 19px;
    line-height: 28px;
}

.video-sec .overlay-bx .readMore_2 {
    font-size: 15px;
}

.video-sec .overlay-bx .readMore_2:hover {
    background: #fff;
    color: var(--pri);
    border-color: #fff;
}


.client-sec {
    float: left;
    width: 100%;
    background-image: url(../images/bg/about-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #f4f5f8;
    padding: 70px 0;
}

.client-sec .img-bx {
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.product-sec {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 70px 0 50px;
}

.product-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: url(../images/bg/service-background.jpg);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.bx-pr {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.bx-pr .img {
    display: block;
    overflow: hidden;
}

.bx-pr .img img {
    transition: 0.5s;
}

.bx-pr:hover .img img {
    transform: scale(1.1);
}

.bx-pr .des {
    position: absolute;
    z-index: 1;
    bottom: -100px;
    text-align: center;
    width: 100%;
    padding: 60px 10px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    transition: 0.3s ease-in-out;
}

.bx-pr:hover .des {
    bottom: 0;
}

.bx-pr .des .tt,
.bx-pr .des .tt a {
    color: #fff;
    font-weight: 600;
    font-size: 19px;
    text-shadow: 1px 1px 1px black;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bx-pr .des p {
    color: #fff;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.bx-pr .des .read-more {
    color: white;
    height: 30px;
    width: 50px;
    background: var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: 0.2s;
}

.bx-pr .des .read-more:hover {
    background: white;
    color: var(--pri);
}

.bx-pr .des .read-more svg {
    width: 20px;
    height: 20px;
}

.business-enq {
    position: fixed;
    bottom: 35px;
    left: 20px;
    z-index: 20;
    border: 0;
    outline: 0;
    background: var(--liner);
    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 1px 4px;
}

.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;
}


.clientSlider {
    overflow: hidden;
}

.clientSlider .swiper-wrapper {
    transition-timing-function: linear;
}

.clientSlider .client-img {
    border: 1px solid #e0e0e0;

}

.clientSlider .client-img img {
    width: 100%;
    mix-blend-mode: color-burn;
}

.abt-video-sec {
    float: left;
    width: 100%;
    padding: 70px 0;
    position: relative;
    z-index: 1;
    background: url(../images/bg/bg1.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.abt-video-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    z-index: -1;
    opacity: 0.6;
}

.abt-video-sec.chairman-sec {
    background: url(../images/chairman/bg1.jpg);
    background-size: cover;
    background-position: center bottom;
    /* background-attachment: fixe  d; */
    padding: 0;
}

.abt-video-sec.chairman-sec::before {
    background: #fff;
    opacity: 0.9;
}

.chairman-sec .emp-tx-bx .sub-tt {
    text-decoration: none;
}

.chairman-sec .emp-tx-bx .quotes,
.qut-sec .emp-tx-bx .quotes {
    font-size: 22px;
    line-height: 33px;
}

.qut-sec .emp-tx-bx .sub-tt,
.qut-sec .emp-tx-bx .tt,
.qut-sec .emp-tx-bx p {
    color: white;
    text-decoration: none;
}

.qut-sec .emp-tx-bx .quotes::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="%23ffffff" class="bi bi-quote" viewBox="0 0 16 16"> <path d="M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z"/> </svg>');
}


.abt-video-sec .av-tx-bx .tt {
    color: var(--pri);
    font-weight: bold;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.abt-video-sec .av-tx-bx p {
    margin-bottom: 10px;
}

.branch-sec {
    float: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.branch-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    /* background-image: url(../images/rrdiagonal-line.png); */
    background-color: #a3a3a3;
    z-index: 2;
    opacity: 0.1;
}

.branch-sec .br-tx-bx {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    width: 100%;
    z-index: 3;
}

.branch-sec .br-tx-bx .tt {
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
    color: var(--pri);
}

.branch-sec .video-bx {
    width: calc(100% + 4px);
    margin-left: -2px;
    padding: 50px 0;
}

.branch-sec::after {
    content: "";
    position: absolute;
    height: 58px;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: #f5f5f5;
}

.branch-sec ul {
    padding-left: 20px;
    list-style: square;
}

.branch-sec ul.braches-ul li {
    text-align: justify;
    list-style: square;
}

.branch-sec ul.braches-ul li {
    float: left;
    width: 50%;
}

.sign-bx .name {
    font-size: 18px;
    font-weight: 600;
    color: var(--pri);
}

.sign-bx p {
    color: var(--black);
}

.abt-video-sec .vd_bx {
    position: relative;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    display: block;
    margin: auto;
    transition: all .5s;
}

.video-play-icon svg {
    width: 60px;
    height: 60px;
}

.video-play-icon:hover {
    animation: none;
    color: #fff;
}

.cta-sec.cta-sec2 .cta-sec1 .tx-bx,
.cta-sec.cta-sec2 .cta-sec2 .tx-bx {
    max-width: 550px;
}

.cta-sec.cta-sec2 .cta-sec1 .tx-bx .tt,
.cta-sec.cta-sec2 .cta-sec2 .tx-bx .tt {
    font-size: 28px;
    margin-bottom: 13px;
}

.cta-sec.cta-sec2 .cta-sec1 .tx-bx p,
.cta-sec.cta-sec2 .cta-sec2 .tx-bx p {
    margin-bottom: 0px;
    font-size: 16px;
    line-height: 28px;
}

.qut-sec {
    float: left;
    width: 100%;
    background: url(../images/bg/counter.jpg);
    background-attachment: fixed;
    display: block;
    overflow: hidden;
    padding: 60px 0px;
    position: relative;
    z-index: 1;
}

.qut-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--pri);
    z-index: -1;
    opacity: 0.98;
}

.qut-sec .sec_h {
    color: #fff;
}

.qut-sec .sec_h span {
    color: #fff;
}

.qut-sec p {
    color: #fff;
    text-align: justify;
}

.sign-row {
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: right;
    color: white;
    margin-top: 35px;
}



.sign-row .sign-bx {
    border-top: 3px solid rgba(255, 255, 255, 0.7);
    border-bottom: 3px solid rgba(255, 255, 255, 0.7);
    padding: 5px 12px;
}

.sign-row.dark .sign-bx {
    border-top: 2px solid rgba(39, 39, 39, 0.7);
    border-bottom: 2px solid rgba(39, 39, 39, 0.7);
}

.sign-row.dark .sign-bx .name {
    color: var(--pri);
}

.sign-row .sign-bx .name {
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.sign-row .sign-bx .post {
    color: rgba(255, 255, 255, 0.7);
}

.sign-row.dark .sign-bx .post {
    color: var(--black);
}


.feat-sec {
    float: left;
    width: 100%;
    background: #f0f3f9;
    padding: 50px 0;
}

.feat-sec .feat-bx {
    overflow: hidden;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
    margin-bottom: 25px;
}

.feat-sec .feat-bx.h-100 {
    height: calc(100% - 25px) !important;
}

.feat-sec .feat-bx .tx-bx {
    padding: 25px;
    text-align: center;
}

.feat-sec .feat-bx .tx-bx .icon {
    width: 90px;
    margin: 0 auto 10px;
}

.feat-sec .feat-bx .tx-bx .tt {
    color: var(--black);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.feat-sec .feat-bx .tx-bx p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 24px;
    color: #332;
}

.feat-sec .feat-bx .tx-bx ul {
    text-align: left;
    margin-top: 25px;
    list-style: circle;
}

.feat-sec .feat-bx .tx-bx ul li {
    font-weight: 600;
    font-size: 16px;
    line-height: 30px;
}

.branch-bx {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    height: 100%;
}

.branch-bx .map {
    height: 280px;
    border: 1px solid #e0e0e0;
}

.branch-bx .des .tt {
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0;
    color: var(--pri);
}

.branch-bx .des .des-li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.branch-bx .des .des-li li {
    line-height: normal;
    color: var(--black);
    display: flex;
    margin-bottom: 10px;
    line-height: 23px;
    font-weight: 500;
}

.branch-bx .des .des-li li .icon {
    min-width: 24px;
}

.branch-bx .des .des-li li .icon svg {
    color: var(--pri);
    margin-top: 2px;
}

.branch-bx .des .des-li li .con {
    color: var(--black);
}

.branch-bx .des .des-li li a.con:hover {
    color: #555;
}

.project-page {
    background: #f2f2f2;
}

.project-page .project-bx .img-bx img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.filter-button-grp {
    text-align: center;
    margin-bottom: 25px;
}

.filter-pro-button {
    border: 0;
    border-radius: 0;
    font-weight: 600;
    color: #555;
    padding: 4px 10px;
    margin: 0 3px;
}

.filter-pro-button:hover,
.filter-pro-button:focus {
    box-shadow: none;
    color: var(--pri);
}

.filter-pro-button.active {
    border-bottom: 3px solid var(--pri);
    color: var(--pri);
}

.career-page {
    background: #f8f8f8;
}

.career-page .pointer-li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.career-page .pointer-li li {
    background-color: #f3f2f1;
    color: #595959;
    font-size: 15px;
    font-weight: 500;
    padding: 3px 12px;
    border-radius: 3px;
}

.career-page .pointer-li li strong {
    color: #2d2d2d;
}

.career-page .jd-li {
    list-style: circle;
    font-size: 15px;
}

.career-page p {
    margin-bottom: 10px;
}

.current-opening-bx {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    border-radius: 2px;
    transition: 0.2s;
    margin-bottom: 25px;
}

.current-opening-bx:hover {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 12px;
}

.current-opening-bx .tt a {
    padding: 8px 15px;
    background: #f2f2f2;
    color: #2d2d2d;
    font-weight: 600;
    font-size: 20px;
}

.current-opening-bx:hover .tt a {
    color: var(--pri);
}

.current-opening-bx .des {
    padding: 15px 20px 18px;
}

.current-opening-bx .des p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 10px;
}

.current-opening-bx .des-li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.current-opening-bx .des-li li {
    background-color: #f3f2f1;
    color: #595959;
    font-size: 14px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
}

.current-opening-bx .des .readMore_2 {
    padding: 10px 15px;
}



.video-testimonials-sec {
    float: left;
    width: 100%;
    background: #fff;
    padding: 50px 0;
}

.videoFeedback {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-bottom: 20px;
}

.videoFeedback .image {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
    transition: .3s ease-in-out;
}

.videoFeedback .image img {
    height: 100%;
    object-fit: cover;
}

.videoFeedback .image:before {
    content: "";
    background: radial-gradient(ellipse at center, rgba(53, 0, 252, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transition: .2s ease-in-out;
    z-index: 1;
    opacity: 0.4;
}

.videoFeedback:hover .image:before {
    opacity: 0.7;
}

.feedbackStar {
    position: absolute;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid #ffa929;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-bottom: 0.25rem;
    padding-top: 0.25rem;
    color: #ffa929;
    z-index: 9;
    top: 10px;
    left: 10px;
    border-radius: 20px;
}

.videoFeedback .image span {
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    position: absolute;
    z-index: 99;
}

.videoFeedback .image span svg {
    color: #fff;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #ffffff;
    border-radius: 100%;
    padding: 7px;
    background: var(--pri);
}

.videoTitle {
    display: flex;
    align-items: center;
    justify-content: center;

}

.videoTitle .vidoIcon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 24px;
    color: var(--logoColor);
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.videoName {
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #333;
    line-height: normal;
}

.videoFeedback:hover .videoName {
    color: var(--pri);
}

.timeline-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background-image: url(../images/shape/bg-5.png);
}

.timeline-sec .img-bx {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-sec ul {
    --col-gap: 2rem;
    --row-gap: 2rem;
    --line-w: 0.25rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
    padding: 0;
    margin-bottom: 0;
}

/* line */
.timeline-sec ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 25;
    background: rgb(225, 225, 225);
    border-radius: calc(var(--line-w) / 2);
}

/* columns*/

/* row gaps */
.timeline-sec ul li:not(:last-child) {
    margin-bottom: var(--row-gap);
}

/* card */
.timeline-sec ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    display: grid;
    grid-template-rows: min-content min-content min-content;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, .09);
}

/* date */
.timeline-sec ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);
    text-align: center;
    background-color: var(--pri);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: grid;
    place-content: center;
    position: relative;
    border-radius: calc(var(--dateH) / 2) 0 0 calc(var(--dateH) / 2);
}

/* date flap */
.timeline-sec ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--pri);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;

    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

/* circle */
.timeline-sec ul li .date::after {
    content: "";
    position: absolute;
    width: 1.4rem;
    aspect-ratio: 1;
    background: #fff;
    border: 0.3rem solid var(--pri);
    border-radius: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);
}

.timeline-sec ul li .title {
    padding-top: 15px;
    padding-inline: 22px;
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    color: var(--pri);
}

.timeline-sec ul li .descr {
    padding-top: 15px;
    padding-inline: 22px;
    padding-bottom: 17px;
    font-size: 15px;
    line-height: 22px;
    color: #444;
}



@media (min-width: 40rem) {
    .timeline-sec ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }

    .timeline-sec ul::before {
        grid-column: 2;
    }

    .timeline-sec ul li:nth-child(odd) {
        grid-column: 1;
    }

    .timeline-sec ul li:nth-child(even) {
        grid-column: 3;
    }

    /* start second card */
    .timeline-sec ul li:nth-child(2) {
        grid-row: 2/4;
    }

    .timeline-sec ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        left: 0;
    }

    .timeline-sec ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
    }

    .timeline-sec ul li:nth-child(odd) .date {
        border-radius: 0 calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0;
    }
}

.bod-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    background-image: url(../images/bg/about-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #f4f5f8;
}

.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;
}

.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, #282f3b 8%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    transition: all 0.5s ease;
}

.bod-bx .desgi {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 25px 20px;
}

.bod-bx .desgi .name {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-shadow: 1px 1px 5px black;
}

.bod-bx .desgi .post {
    color: white;
    text-shadow: 1px 1px 10px black;
}

.team-bx {
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.team-bx .img {
    max-width: 200px;
    margin: 0 auto 10px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid var(--pri);
}

.team-bx .p-name {
    position: absolute;
    right: 0;
    bottom: 45px;
    background: var(--liner);
    background-color: var(--pri);
    color: #fff;
    border-radius: 3px;
    padding: 5px 18px;
    transform: skewX(-30deg);
}

.team-bx .p-name span {
    display: block;
    transform: skewX(30deg);
}

.team-bx .p-post {
    font-weight: 600;
    font-size: 16px;
}

.diff-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 60px 0;
    background: #f1f2f2;
}

.diff-sec .main-tt {
    background: var(--liner);
    background-color: var(--pri);
    color: white;
    border-radius: 5px 5px 0 0;
    padding: 10px 12px;
    font-size: 18px;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
}

.diff-sec td {
    font-weight: 500;
    background: white;
}

.diff-sec td .tt {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: var(--pri);
    display: block;
}

.diff-sec td ol {
    padding: 10px 20px;
    padding-left: 30px;
    margin: 0;
}

.diff-sec td ol li {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}


.cmmt_nav .nav-tabs {
    margin: 0;
    padding: 0;
    border: 0;
}

.cmmt_nav .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-bottom: 0;
    border-radius: 0;
    color: #3d3d3d;
    outline: 0;
    margin-right: 5px;
    padding: 8px 20px;
}

.cmmt_nav .nav-tabs .nav-link.active,
.cmmt_nav .nav-tabs .nav-link:hover {
    background: var(--liner);
    background-color: var(--pri);
    color: #fff;
}

.cmmt_nav .tab-content {
    /* float: none; */
    border: 0;
    border-top: 1px solid #e0e0e0;
    padding: 0;
}

.cmmt_nav .tab-content .tab-pane {
    padding: 0;
    border-radius: 4px;
    outline: 0;
    border: 0;
    padding-bottom: 5px;
}

.cmmt_nav p {
    color: var(--black);
    font-size: 15px;
}

.cmmt_nav .tab-content .tab-pane.active p {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .4s;
}

.cmmt_nav .tab-content .tab-pane .tt {
    font-size: 27px;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 5px;
    margin-top: 25px;
    position: relative;
    text-transform: capitalize;
}

.cmmt_nav .tab-content .tab-pane.active .tt {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .2s;
}

.cmmt_nav .tab-content .tab-pane .read-mr {
    transition: 0.4s;
    font-size: 14px;
    color: var(--pri);
    display: inline-block;
    font-weight: 500;
}


.cmmt_nav .tab-content .tab-pane.active .read-mr {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: .7s;
}

.cmmt_nav .tab-content .tab-pane .read-mr svg {
    width: 14px;
    height: 14px;
    transition: 0.1s ease-in-out;
    color: var(--pri);
}

.cmmt_nav .tab-content .tab-pane .read-mr:hover {
    color: var(--black);
}

.cmmt_nav .tab-content .tab-pane .read-mr:hover svg {
    margin-left: 2px;
    color: var(--black);
}

.cmmt_nav .tab-content .tab-pane .img {
    margin-top: 20px;
}

.cmmt_nav .tab-content .tab-pane.active .img {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.8s;
}

.cmmt_nav .tab-content .tab-pane .img img {
    width: 100%;
}


.why-bx {
    background: white;
    height: 100%;
    position: relative;
    padding: 30px;
    overflow: hidden;
    transition: 0.4s;
    border-radius: 15px;
}

.why-bx:hover {
    transform: translateY(-10px);
}

.why-bx .count-bx {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(177, 177, 177, 0.7);
    opacity: 0.3;
    line-height: 90px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.5s linear;
}

.why-bx:hover .count-bx {
    color: var(--pri);
    opacity: 1;
}


.why-bx .icon-bx {
    width: 80px;
    margin-bottom: 15px;
    transition: 0.7s;
}

.why-bx:hover .icon-bx {
    transform: rotateY(360deg);
}

.why-bx .tt {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 0.4s;
}


.why-bx p {
    color: #666;
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}


.img-wrap {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 25px;
    height: 330px;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.service_content {
    position: relative;
    height: 330px;
    border: 1px solid #eee;
    color: #9f9f9f;
    font-size: 16px;
    line-height: 24px;
    background: #fff;
    margin-bottom: 25px;
    border-radius: 0px 0px 0px 50px;
}

.home_bgrid_1:nth-child(2) .service_content {
    border-radius: 0px 50px 0px 0px;
}

.service_content .center_box {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: 100%;
    padding: 0 55px;
}

.service_content .center_box .sTitle_h4 {
    font-size: 25px;
    text-transform: capitalize;
    color: var(--pri);
    margin-bottom: 10px;
    padding: 0;
    font-weight: 600;
}

.service_content .center_box .sTitle_h4 a {
    color: var(--pri);
}

.service_content .center_box p {
    margin-bottom: 20px;
    color: var(--black);
}

.offer-bx {
    padding: 20px;
}

.offer-bx .count-bx {
    right: 15px;
    font-size: 80px;
    line-height: 80px;
    top: 15px;
}

.offer-bx .icon-bx {
    background: var(--liner);
    background-color: var(--pri);
    padding: 12px;
    border-radius: 10px;
}

.offer-bx .tt {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
}

.adv-bx {
    background: linear-gradient(180deg, #f7f7f7 0%, rgba(209, 209, 209, 0.35) 100%);
    border-radius: 15px;
    border: 1px solid #eee;
    padding: 20px;
    transition: 0.3s ease;
    text-align: center;
}

.adv-bx:hover {
    transform: scale(1.05);
}

.adv-bx .img {
    width: 70px;
    margin: 0 auto;
    margin-bottom: 10px;
}

.adv-bx .tt {
    font-weight: 600;
    font-size: 16px;
}

.contact-banner {
    float: left;
    width: 100%;
}

.contact-banner img {
    width: 100%;
}

.job-search-row {
    max-width: 1000px;
    margin: 0 auto 25px;
}

.job-search-row input,
.job-search-row select {
    width: 100%;
    outline: none;
    border: 1px solid #e6e9ec;
    height: 45px;
    box-shadow: none;
    font-weight: 500;
    border-radius: 0;
}

.form-select:focus {
    border-color: var(--pri);
    box-shadow: none;
}

.employee-sec {
    width: 100%;
    float: left;
    padding: 60px 0;
}

.employee-sec .img-bx {
    overflow: hidden;
    border-radius: 10px;
}

.employee-sec .container {
    max-width: 1100px;
}

.emp-tx-bx .sub-tt {
    font-size: 18px;
    font-weight: 600;
    color: var(--pri);
    text-decoration: underline;
}

.emp-tx-bx .tt {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.emp-tx-bx p {
    color: #4a4e56;
}

.emp-tx-bx .quotes {
    color: #4a4e56;
    font-size: 18px;
    line-height: 30px;
    padding-left: 70px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.emp-tx-bx .quotes::before {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="%23154057" class="bi bi-quote" viewBox="0 0 16 16"> <path d="M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z"/> </svg>');
    position: absolute;
    top: 0;
    left: 0;
}

.emp-tx-bx .post {
    color: #444;
    font-weight: 400;
    font-size: 16px;
}

.emp-tx-bx .post span {
    color: var(--pri);
    font-weight: 600;
}


.socialIcons {
    position: absolute;
    left: 0;
    top: 55%;
    width: auto;
    padding: 0;
    margin: 0;
    z-index: 9;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.socialIcons a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 4px 0;
    margin-right: 0px;
    position: relative;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    margin-left: -23px;
    line-height: 55px;
    text-align: left;
    padding-left: 27px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.socialIcons a svg {
    width: 16px;
    height: 16px;
}

.socialIcons a span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    position: absolute;
    white-space: nowrap;
    padding: 0 20px;
    left: 0;
    top: 12px;
    bottom: 12px;
    opacity: 0;
    z-index: -100;
    background-color: #443f7d;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.socialIcons a span:before {
    content: "";
    z-index: 1;
    border: 6px solid transparent;
    border-left-width: 6px;
    border-left-style: solid;
    border-left-color: transparent;
    border-left-color: transparent;
    border-left: 0;
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
    border-right-color: #ff623f !important;
}

.socialIcons a.facebook,
.socialIcons a.facebook span {
    background-color: #3b5998 !important;
}

.socialIcons a.facebook span:before {
    border-right-color: #3b5998 !important;
}

.socialIcons a.twitter,
.socialIcons a.twitter span {
    background-color: #000 !important;
}

.socialIcons a.twitter span:before {
    border-right-color: #000 !important;
}

.socialIcons a.instagram,
.socialIcons a.instagram span {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
}

/* .socialIcons a.instagram span:before{
    background-color: #d6249f !important;
} */
.socialIcons a.linkedin,
.socialIcons a.linkedin span {
    background-color: #0077B5 !important;
}

.socialIcons a.linkedin span:before {
    border-right-color: #0077B5 !important;
}

.socialIcons a.youtube,
.socialIcons a.youtube span {
    background-color: #f70000 !important;
}

.socialIcons a.youtube span:before {
    border-right-color: #f70000 !important;
}

.socialIcons a:hover span {
    opacity: 1;
    transform: translateX(80%);
}

.employee-sec .swiper-button-next,
.employee-sec .swiper-button-prev {
    background: var(--pri);
    color: white;
    height: 32px;
    width: 32px;
    border-radius: 2px;
}

.employee-sec .swiper-button-prev{
    left: -6px;
}

.employee-sec .swiper-button-next{
    right: -6px;
}