@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Philosopher:wght@400;700&display=swap');

:root {
    --liner: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --dark-pink: #2e3092;
    --blue: #1f71b7;
    --dark-blue: #0f5a9a;
    --pink: #2e3092;
    --light-pink: #2e3092;
    --text-color: #222;
    --light-text: #666;
    --main-font: 'Philosopher', sans-serif;
    --sec-font: 'Dancing Script', cursive;
}

html {
    overflow-x: hidden;
}

body {
    background: #fff;
    color: var(--text-color);
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--main-font);
    color: var(--text-color);
    margin: 0 0 20px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--text-color);
}

p a {
    color: var(--text-color);
    width: auto;
    display: inline-block;
}

p a:hover {
    text-decoration: underline;
    outline: none;
}

p {
    letter-spacing: normal;
    margin-bottom: 10px;
    line-height: 20px;
    font-size: 15px;
    color: var(--text-color);
}

a {
    color: var(--text-color);
    text-decoration: none;
    outline: none;
    display: block;
}

a:hover,
a:focus,
a:active {
    color: var(--text-color);
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

iframe {
    border: 0;
    width: 100%;
}

.bg-light {
    background: #f1f1f1 !important;
}

/* ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: whitesmoke; } ::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 1px; } */
blockquote {
    padding: 0;
    border: 0;
}

label {
    color: #f10b0b;
    display: block;
    font-weight: 400;
    margin: 0;
}

textarea {
    background: #fff;
    height: 100px !important;
}

textarea,
select,
input {
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 0;
    background: #fff;
    line-height: 40px;
    box-shadow: none;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px !important;
    width: 100%
}

.form-group {
    position: relative;
    margin-bottom: 15px
}

.form-group .form-control {
    padding: 0.375rem 0.75rem !important;
    border: none;
    border-radius: 0px !important;
    border: 1px solid #ddd;
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
}

.form-control::-moz-placeholder {
    color: #555;
}

.form-control:focus::-moz-placeholder {
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--light-pink);
    box-shadow: none;
    outline: 0;
}

.login-bg button[type=submit] {
    border: none;
    display: block;
    background-color: var(--light-pink) !important;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    font-size: 18px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 4px;
}

.login-bg button[type=submit]:hover {
    background-color: #9f9da7;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

h2 {
    font-size: 26px;
    font-weight: bold;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h3 span {
    padding: 0 10px 0 0;
    position: relative;
}

h4 {
    font-size: 16px;
    font-weight: bold;
}

h5 {
    text-transform: capitalize;
}

/* Header*/
.header {
    float: left;
    width: 100%;
    z-index: 10;
    padding: 0;
}

.welbar {
    color: var(--dark-pink);
    font-size: 16px;
    font-weight: normal;
    padding: 8px 0 8px;
    background: #fff;
    text-align: center;
    /* border-bottom: 1px solid #eee; */
}

.welbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welbar a {
    display: inline-block;
    color: #fff;
    transition: 0.2s linear;
}

.welbar a:hover {
    display: inline-block;
    color: var(--text-color);
}

.welbar .wel-ic ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0
}

.welbar .wel-ic ul li {
    padding: 0 5px;
    position: relative;
}

.topbar {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.logoDiv {
    display: flex;
    align-items: center;
}

.topbar .logo {
    
    min-width: 140px;
    padding: 3px 0 3px;
    margin-right: 20px;
}

.topbar .franchiseBtn {
    display: inline-block;
    animation: blink 1.5s infinite;
    background-color: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    line-height: normal
}

.topbar .franchiseBtn a {
    color: #fff;
}

@keyframes blink {
    0% {
        opacity: 1.0
    }

    50% {
        opacity: 1.0;
        background-color: var(--light-pink);
    }

    100% {
        opacity: 1.0
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1.0
    }

    50% {
        opacity: 1.0;
        background-color: var(--light-pink);
    }

    100% {
        opacity: 1.0
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1.0
    }

    50% {
        opacity: 1.0;
        background-color: var(--light-pink);
    }

    100% {
        opacity: 1.0
    }
}

.right-options {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
    margin-right: 0px;
}

.right-options li a {
    font-size: 16px;
    color: #555;
    font-weight: bold;
    transition: 0.2s all ease-in-out;
    text-transform: capitalize;
}

.right-options li a:hover {
    color: var(--light-pink);
}

.right-options li a .icon {
    font-size: 19px;
    color: var(--light-pink);
    margin-right: 7px;
}

.right-options li .brochure-btn {
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    background: var(--liner);
    background-color: var(--light-pink);
    padding: 10px 25px;
    color: white;
    transition: 0.2s ease-in-out;
}

.right-options li .brochure-btn:hover {
    background-color: var(--blue);
    color: white;
}

.topbar .top-right,
.welbar .top-right {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--light-text);
    padding: 0;
    margin: 0;
    /* border: 2px solid red; */
}

.topbar .top-right li,
.welbar .top-right li {
    padding-right: 10px;
    position: relative;
}

.topbar .top-right li.call-now {
    display: flex;
    align-items: center;
}

.topbar .top-right li.call-now .img-bx {
    max-width: 39px;
    margin-right: 4px;
    background: #fff;
    padding: 10px;
    border-radius: 100%;
    border: 1px solid var(--light-pink);
}

.topbar .top-right li.call-now .con-bx {
    text-align: right;
}

.topbar .top-right li.call-now .con-bx span {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: var(--light-text);
}

.topbar .top-right li.call-now .con-bx span a {
    font-size: 18px;
    padding-left: 5px;
    font-weight: bold;
    color: var(--text-color);
    margin-top: 3px;
}

.topbar .top-right li.call-now .con-bx span a:hover {
    color: var(--dark-pink);
}

.topbar ul li.cart_drop,
.welbar ul li.cart_drop {
    padding: 0 8px;
}

.topbar ul li.cart_drop svg,
.welbar ul li.cart_drop svg {
    color: var(--light-text);
    height: 21px;
    width: 21px;
}

.welbar ul li.cart_drop svg {
    color: #333;
    height: 14px;
    width: 14px;
}

.welbar ul li.cart_drop svg:hover {
    color: #333;
}

.topbar ul li.cart_drop .count,
.welbar ul li.cart_drop .count {
    display: block;
    text-align: center;
    min-width: 16px;
    height: 16px;
    position: absolute;
    right: -7px;
    top: -2px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bolder;
    background: var(--light-pink);
    color: white;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.05);
    line-height: 16px;
    border: 1px solid var(--light-pink);
}

.welbar ul li.cart_drop .count {
    background: #eee;
    color: var(--light-pink);
    border: 1px solid var(--light-pink);
}

.topbar .content-search {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-pink);
    border-radius: 4px;
    overflow: hidden;
    /* justify-content: center; */
}

.topbar .content-search select {
    width: auto;
    max-width: 140px;
    padding: 0 10px;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--light-text);
    font-weight: bold;
    height: 35px;
}

.topbar .content-search input {
    width: 100%;
    max-width: 100%;
    padding: 0 10px 0 20px;
    outline: none !important;
    border: none !important;
    /* border-left: 1px solid var(--light-pink) !important; */
    box-shadow: none !important;
    color: var(--light-text);
    font-weight: bold;
    height: 35px;
}

.topbar .content-search button {
    outline: none;
    border: none;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    background-color: var(--light-pink);
    color: white;
}

.topbar .content-search button:hover {
    background: var(--dark-pink);
}

ul.social {
    float: left;
    margin: 0;
    padding: 0;
}

ul.social li {
    margin: 0px 1px;
    display: inline-block;
}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #231573;
}

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: #000;
}

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%);
}

.topbar ul.social li {
    margin: 0;
}

.topbar ul.social li a {
    background: transparent !important;
    width: 22px;
}

.topbar ul.social li a svg {
    color: #333;
    width: 16px;
    height: 16px;
}

.topbar ul.social li a:hover svg {
    color: var(--light-pink);
}

.menubar {
    float: left;
    width: 100%;
    position: relative;
    /*-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .1); box-shadow: 0 3px 5px rgba(0, 0, 0, .1);*/
    background: #fff;
}

.menubar.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;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.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;
    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(--light-pink);
    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: center;
    display: block;
    position: relative;
}

.navigation .menu ul li {
    display: inline-block;
    position: relative
}

.navigation .menu ul li a {
    padding: 13px 14px;
    display: block;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 16px;
    background: transparent;
    font-weight: 700;
    font-family: var(--main-font);
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
    color: var(--light-pink);
    background: transparent;
}

.navigation .menu ul li ul.cs-dropdown {
    top: 100%;
    left: 0;
    text-align: left;
    border: 0;
}

.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%;
}

.navigation .menu ul li:nth-last-child(-n+3) ul.cs-dropdown li ul.cs-dropdown {
    left: auto;
    right: 100%;
}

.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: 215px;
    z-index: 99999;
    box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.16);
    background: #fff;
    margin: 0;
    padding: 0;
    transition: all .3s ease;
    opacity: 0;
    pointer-events: none;
    top: 70px;
}

.navigation .menu ul li:hover ul.cs-dropdown {
    opacity: 1;
    pointer-events: all;
    top: 42px;
    transition: all .4s ease;
}

.navigation .menu ul li:hover ul.cs-dropdown li ul.cs-dropdown {
    opacity: 0;
    top: 10px;
    pointer-events: none;
}

.navigation .menu ul li ul.cs-dropdown li:hover ul.cs-dropdown {
    opacity: 1;
    top: 0;
    pointer-events: all;
}

.navigation .menu ul li:nth-last-child(-n+3) ul.cs-dropdown li:hover ul.cs-dropdown {
    left: auto;
    right: 100%;
}

.navigation .menu ul li ul.cs-dropdown li {
    display: block;
    padding: 0;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.navigation .menu ul li ul.cs-dropdown li:last-child a {
    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(--yellow);
}

.navigation .menu ul li ul.cs-dropdown li:hover a {
    color: #fff;
    background: var(--light-pink)
}

.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(--light-pink);
}

.navigation .menu ul li ul.cs-dropdown li a {
    color: #333;
    font-size: 14px;
    padding: 9px 15px;
    position: relative;
    display: block;
    text-transform: capitalize;
    font-weight: 700;
    background: #fff;
    transition: all 0.2s;
    border-bottom: 0px solid transparent;
}

.navigation ul li.cs-submenu a button {
    border: 0;
    background: transparent;
    outline: 0;
    padding: 0;
    margin: -1px 0 0 3px;
    color: var(--text-color);
}

.navigation ul li.cs-submenu a button svg {
    width: 12px;
    height: 12px;
}

.navigation ul li.cs-submenu:hover svg {
    transform: rotateZ(180deg);
    color: var(--light-pink);
}

.navigation ul li.cs-submenu:hover ul.cs-dropdown li.cs-submenu svg {
    color: #333
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button {
    float: right;
    color: #333;
}

.navigation ul li.cs-submenu ul.cs-dropdown li.cs-submenu:hover svg {
    color: #fff;
}

.navigation ul li.cs-submenu ul.cs-dropdown li a button svg {
    transform: rotateZ(-90deg);
}

.navigation .navbar {
    display: none;
    padding: 12px 0;
    margin: 0
}

/* banner */
.home_slider {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative
}

.home_slider #slider {
    overflow: hidden;
    width: 100%
}

.slide {
    position: relative;
    display: block;
    z-index: 6;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home_slider .slide img {
    width: 100%;
}

#slider .owl-prev,
#slider .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 35px;
    height: 80px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: var(--light-pink);
    border: 0;
    outline: 0;
    background: white;
    z-index: 9;
    opacity: 1;
}

#slider .owl-nav .owl-prev {
    left: 0px;
    border-radius: 0 4px 4px 0;
}

#slider .owl-nav .owl-next {
    right: 0px;
    border-radius: 4px 0 0 4px;
}

#slider .owl-prev:hover,
#slider .owl-next:hover {
    background: var(--light-pink);
    color: white;
}

#slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.title-bx {
    /* border: 2px solid red; */
    text-align: center;
    margin-bottom: 25px;
    line-height: normal;
}

.title-bx .title {
    font-family: var(--sec-font);
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--light-pink);
    text-transform: capitalize;
}

.title-bx .sub-title {
    /* font-family: var(--sec-font); */
    font-size: 25px;
    margin-bottom: 9px;
    font-weight: bold;
    color: var(--dark-pink);
    text-transform: capitalize;
}

/* .title-bx .sub-title::after{ transform: translateY(10px); -webkit-transform: translateY(10px); display: block; margin-right: auto; margin-left: auto; content: " "; height: 0; width: 80px; border-top: 1px solid var(--light-pink); } */
.title-bx .des {
    font-size: 16px;
    margin-bottom: 0px;
    color: #111;
    text-transform: capitalize;
    max-width: 800px;
    margin: 0 auto;
    line-height: 23px;
}

/* start Category */
.category-shop {
    float: left;
    width: 100%;
    background: #fff;
    padding: 50px 0 0;
}

.category-shop .cat-bx {
    /* border: 2px solid red; */
    margin-bottom: 25px;
    position: relative;
    padding: 20px 0 0 20px;
}

.category-shop .cat-bx:before {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 20px;
    top: 0;
    bottom: 20px;
     
    z-index: 2;
}

.category-shop .cat-bx:after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.category-shop .cat-bx .moreBtn {
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.category-shop .cat-bx .moreBtn:hover {
    box-shadow: 5px 5px 0 0 var(--text-color);
}

.category-shop .cat-img {
    overflow: hidden;    border: 1px solid #b1b1b1;
}

.category-shop .cat-img img {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    object-fit: cover;
    object-position: center right;
    transition: 0.6s;
    z-index: 0;
}

.category-shop .cat-bx:hover .cat-img img {
    transform: scale(1.1);
}

.category-shop .cat-des {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 348px 0 0 50px;
    height: 100%;
    width: 100%;
    z-index: 3;    text-align: center;
	
}

.category-shop .cat-des .title {
    font-size: 27px;
    font-family: var(--sec-font);
    color: var(--light-pink);
    font-weight: bold;
    margin-bottom: 11px;
    line-height: normal;
    text-shadow: 0.5px 0.5px 0px rgba(0, 0, 0, 0.8);
}

.category-shop .cat-des .des {
    margin-bottom: 10px;
    font-weight: bold;
}

.homeFeture {
    float: left;
    width: 100%;
    padding: 30px 0 40px;
    background: #fff;
    /* border: 2px solid red; */
}

.homeFeture .productBox {
    /* border: 1px solid #eee; */
    background-color: white;
    margin-bottom: 2px;
}

.homeFeture .productBox img {
     
}

.homeFeture .productBox:hover img {
    
}

.homeFeture .productImg {
    position: relative;
    overflow: hidden;
}

.homeFeture .productImg .off_label {
    background: var(--light-pink);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: bolder;
    color: white;
    border-radius: 2px;
    z-index: 1;
}

.homeFeture .productContent {
     
    text-align: center;
    background-color: white;
    padding: 10px;
}

.homeFeture .productContent .title {
    color: var(--light-pink);
    font-weight: bold;
    font-size: 15px;font-size: 25px;
}

.homeFeture .productContent p {
    margin-bottom: 0;
}

.discount-bar {
    /* margin-top: 40px; */
    background: url(../images/bg/bg2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 10px;
}

.discount-container {
    max-width: 550px;
    margin-right: auto;
}

.discount-bar .title {
    font-family: var(--sec-font);
    font-size: 33px;
    font-weight: bold;
    color: var(--light-pink);
    margin-bottom: 10px;
}

.discount-bar p {
    line-height: normal;
    font-size: 16px;
    color: var(--light-text);
}

.discount-bar .price {
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: capitalize;
}

.discount-bar .price span {
    margin: 0 5px;
    font-family: var(--sec-font);
    font-size: 45px;
    color: var(--light-pink);
    text-decoration: none;
}

.discount-bar .moreBtn {
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
}

.discount-bar .moreBtn:hover {
    box-shadow: 5px 5px 0 0 var(--text-color);
}

/* end Category */
.video_gallery {
    float: left;
    width: 100%;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    z-index: 1;
    /* background: url(../images/bg/qty-bg.jpg); background-position: center; background-size: cover; */
}

/* .video_gallery::before { content: ""; background-color: rgba(225, 53, 56, 0.9); background-color: rgba(164, 153, 154, 0.9); position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; } */
.video_gallery .vd_bx {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin-bottom: 35px;
}

.video_gallery .video-play-icon {
    width: 50px;
    height: 50px;
    line-height: 48px;
}

.abt_con .moreBtn,
.moreBtn.active {
    background: var(--liner);
    background-color: var(--light-pink);
    color: #fff;
    border: 0;
}

.video_gallery .moreBtn {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 0;
}

.video_gallery .moreBtn:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: white;
}

.video_gallery .moreBtn:before,
.video_gallery .moreBtn:after {
    background: #333;
}

.abt_con #thumbs {
    width: 100px;
    background: #fefefe;
    padding: 10px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 2px;
}

.abt_con #thumbs img {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    cursor: pointer;
    display: block;
}

.abt_con #thumbs img.active {
    border: 1px solid var(--dark-pink);
}

/* Start Shop */
.shopHome {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 20px;
    background: #fff;
    /* border: 2px solid red; */
}

.shopHome .pro-bx,
.shophome2 .pro-bx {
    /* border: 1px solid #2c2c2c; */
    /* background-color: #eee; */
    margin-bottom: 25px;
    height: calc(100% - 25px);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.shophome2 .pro-bx {
    margin: 5px 3px;
}

.shopHome .pro-bx .pro-des,
.shophome2 .pro-bx .pro-des {
    border-top: 1px solid #eee;
    text-align: left;
    padding: 15px;
    text-align: center;
}

.shophome2 .pro-bx .pro-des {
    padding-bottom: 0px;
    padding: 10px;
}

.shophome2 .pro-bx .pro-des p {
    margin-bottom: 5px;
}

.shopHome .pro-bx .pro-des .price,
.shophome2 .pro-bx .pro-des .price {
    color: var(--light-pink);
    font-weight: 600;
    font-size: 15px;
}

.shophome2 .pro-bx .pro-des .price {
    font-size: 14px;
}

.shopHome .pro-bx .pro-des .price del,
.shophome2 .pro-bx .pro-des .price del {
    color: var(--light-text);
    font-weight: 400;
    font-size: 13px;
}

.shophome2 .pro-bx .pro-des .price del {
    font-size: 12px;
}

.shopHome .pro-bx .pro-des .title,
.shophome2 .pro-bx .pro-des .title {
    color: var(--text-color);
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 20px;
    text-transform: capitalize;
}

.shophome2 .pro-bx .pro-des .title {
    font-size: 14px;
    margin-bottom: 2px;
}

.shopHome .pro-bx .pro-des .title {
    min-height: 60px;
    display: flex;
    align-items: center;
}

.shopHome .pro-bx .pro-img,
.shophome2 .pro-bx .pro-img {
    overflow: hidden;
    position: relative;
}

.imgAnimate .hoverImg,
.imgAnimate .normalImg {
    width: 100%;
    display: block;
    transition: none !important;
}

.imgAnimate.normalImg {
    opacity: 0;
}

.imgAnimate .hoverImg {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    left: 0;
    bottom: 0;
}

.shopHome .pro-bx .pro-img.imgAnimate:hover img {
    transform: none !important;
}

/* .shopHome .pro-bx .pro-img:hover .normalImg{opacity: 0;} .shopHome .pro-bx .pro-img:hover .hoverImg{transform: scale(1.02); opacity: 1;  z-index: 1;} */
.shopHome .pro-bx .pro-img .cart-btn,
.shophome2 .pro-bx .pro-img .cart-btn {
    background-color: var(--light-pink);
    color: white;
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 8px;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.4s;
    z-index: 2;
    opacity: 0;
    bottom: -50px;
    pointer-events: none;
}

.shophome2 .pro-bx .pro-img .cart-btn {
    padding: 6px;
    font-size: 15px;
}

.shopHome .pro-bx:hover .pro-img .cart-btn,
.shophome2 .pro-bx:hover .pro-img .cart-btn {
    opacity: 1;
    bottom: 10px;
    pointer-events: all;
}

.shopHome .pro-bx .pro-img span,
.shophome2 .pro-bx .pro-img span {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 33px;
    width: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 1px solid #fff;
    color: #fff;
    z-index: 2;
}

.shopHome .pro-bx .pro-img .off_label,
.shophome2 .pro-bx .pro-img .off_label {
    background: var(--light-pink);
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: bolder;
    color: white;
    border-radius: 2px;
    z-index: 1;
}

.shopHome .pro-bx .pro-img span svg,
.shophome2 .pro-bx .pro-img span svg {
    margin-top: 1px;
    height: 15px;
    width: 15px;
}

.shopHome .pro-bx .pro-img img,
.shophome2 .pro-bx .pro-img img {
    transition: all 0.6s;
    /* max-height: 320px; */
    width: 100%;
    /* object-fit: cover; */
}

.shopHome .pro-bx:hover .pro-img img,
.shophome2 .pro-bx:hover .pro-img img {
    transform: scale(1.1);
}

.shopHome .pro-bx:hover .pro-des .title,
.shophome2 .pro-bx:hover .pro-des .title {
    color: var(--light-pink);
}

.pr-details {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 12px;
}

.pr-details li {
    font-weight: bold;
    color: #555;
    line-height: 19px;
}

.pr-details li span {
    font-weight: 400;
    color: var(--light-text);
}

.pro-bx .btn-grp {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn1 {
    background: var(--liner);
    background-color: var(--dark-pink);
    color: #fff;
    padding: 10px 15px;
    border-radius: 2px;
    font-size: 15px;
}

.btn1:hover,
.btn1:focus {
    background: var(--dark-pink);
    color: #fff;
}

.btn2 {
    background: var(--liner);
    background-color: #222;
    color: #fff;
    padding: 10px 15px;
    border-radius: 2px;
    font-size: 15px;
}

.btn2:hover,
.btn2:focus {
    background: #222;
    color: #fff;
}

/* shop2 */
.shophome2 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0px 0 60px;
}

.left-bar {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.left-bar .img-bx {
    position: absolute;
    height: 100%;
    width: 100%;
    background: url(../images/bg/deo-bg2.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.6s;
}

.left-bar:hover .img-bx {
    transform: scale(1.1);
}

.left-bar .bar-des {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    flex-direction: column;
    height: 100%;
}

.left-bar .bar-des .title {
    font-size: 30px;
    font-family: var(--main-font);
    color:#c6c7ff;
    font-weight: bolder;
    line-height: normal;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    font-style: italic;
}

.left-bar:hover .bar-des .title {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.1s;
}

.left-bar .bar-des .sub-title {
    font-size: 30px;
    color: white;
    margin: 22px 0;
    padding: 0 10px;
}

.left-bar:hover .bar-des .sub-title {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.1s;
}

.left-bar .bar-des .moreBtn {
    color: white;
    border-color: white;
    box-shadow: none !important;
}

.left-bar .bar-des .moreBtn:hover {
    border-color: var(--light-pink);
}

.left-bar::before {
    content: "";
    background-color: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shophome2 .shop-sec .shop-title {
    border-bottom: 1px solid #ddd;
}

.shophome2 .shop-sec {
    position: relative;
}

.shophome2 .shop-sec .owl-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    top: -70px;
}

.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-prev,
.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-next {
    border: 1px solid #ccc;
    margin-left: 5px;
    height: 28px;
    width: 28px;
    line-height: 12px;
    color: #606060;
    transition: 0.2s;
}

.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-prev:hover,
.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-next:hover {
    background: var(--light-pink);
    color: white;
    border-color: var(--light-pink);
}

.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-prev svg,
.shophome2 .shop-sec .owl-carousel .owl-nav button.owl-next svg {
    height: 14px;
    width: 14px;
}

.moreBtn {
    position: relative;
    padding: 10px 25px 10px 25px;
    background: transparent;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 19px;
    color: var(--light-pink);
    transition: all 0.3s;
    height: 39px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-pink);
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
    font-weight: bolder;    margin-top: 20px;
}

.moreBtn:before,
.moreBtn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    border-radius: 0;
    z-index: -1;
    height: 110%;
    background: var(--light-pink);
    will-change: transform;
    transform: skew(-45deg) scaleX(0);
    transition: transform .5s ease-in-out;
}

.moreBtn:before {
    right: 75%;
    margin-right: -1px;
    transform-origin: 0% 0%;
}

.moreBtn:after {
    width: 70%;
    left: 75%;
    margin-left: -1px;
    transform-origin: 100% 0%;
}

.moreBtn:hover {
    color: white;
    box-shadow: 5px 5px 0 0 var(--text-color);
}

.moreBtn:hover:before,
.moreBtn:hover:after {
    transform: skew(-45deg) scaleX(1.5);
}

.webpulse_home_featured {
    float: left;
    width: 100%;
    color: #fff;
    padding: 50px 0;
    background: url(../images/background1.jpg) no-repeat fixed;
    text-align: center;
    background-repeat: repeat;
    background-size: 100%;
    position: relative;
}

.webpulse_home_featured:before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.webpulse_home_featured .aboutTitle {
    color: #fff;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffcc29;
        box-shadow: 0 0 0 0 #ffcc29;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffcc29;
        box-shadow: 0 0 0 0 #ffcc29;
    }

    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    70% {
        -webkit-box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 50px rgba(255, 194, 17, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
        box-shadow: 0 0 0 0 rgba(255, 194, 17, 0);
    }
}

.featuredProducts .owl-prev,
.featuredProducts .owl-next {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 27px;
    height: 65px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: white !important;
    border: 0;
    outline: 0;
    background: var(--light-pink) !important;
    border-radius: 100%;
    z-index: 9
}

.owl-prev svg,
.owl-next svg {
    height: 16px;
    width: 16px;
}

.featuredProducts .owl-nav .owl-prev {
    left: 0px;
    border-radius: 0 4px 4px 0;
}

.featuredProducts .owl-nav .owl-next {

    right: 0px;
    border-radius: 4px 0 0 4px;
}

.featuredProducts .owl-prev:hover,
.featuredProducts .owl-next:hover {
    color: var(--light-pink);
    background: #eee;
}

.featuredProducts .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.testimonials_section {
    float: left;
    width: 100%;
    position: relative;
    padding: 60px 0;
    background: url(../images/bg/bg5.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials_section::before {
    content: "";
    background-color: #000;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials_section .testimonials_column {
    padding: 30px;
    position: relative;
    z-index: 2;
    background-color: white;
}

.testimonials_section .testimonials_column .owl-carousel .owl-dots {
    text-align: left;
    margin-top: 20px;
}

.testimonials_section .testimonials_column .owl-carousel .owl-dot {
    margin-right: 5px;
    border-radius: 100%;
}

.testimonials_section .testimonials_column .owl-carousel .owl-dot.active {
    border: 1px solid var(--text-color);
}

.testimonials_section .testimonials_column .owl-carousel .owl-dots .owl-dot span {
    background-color: var(--text-color);
    margin: 5px;
    height: 5px;
    width: 5px;
}

.testimonials_section .testimonials_column .testimonials_bx {
    border: 1px solid var(--text-color);
    padding: 50px;
    position: relative;
    z-index: 0;
}

.testimonials_section .testimonials_column .testimonials_bx::before {
    content: 'â€œ';
    position: absolute;
    z-index: -1;
    top: -20px;
    left: 29px;
    font-size: 280px;
    color: var(--light-pink);
    opacity: 0.2;
}

.testimonials_section .testimonials_column .title {
    font-size: 22px;
    font-family: var(--sec-font);
    color: var(--light-pink);
    font-weight: bold;
    margin-bottom: 8px;
    font-weight: bold;
}

.testimonials_section .testimonials_column .sub-heading {
    font-size: 35px;
    margin-bottom: 15px;
}

.testimonials_section .testimonials_column .test-bx .cmt {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 22px;
    color: var(--light-text);
}

.testimonials_section .testimonials_column .test-bx .name {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.testimonials_section .testimonials_column .test-bx .des {
    color: var(--light-pink);
    font-size: 15px;
}

.webpulse-home_blog {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0 10px;
}

.blog-bx {
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 25px;
    border-radius: 5px;
}

.blog-bx:hover {
    border: 1px solid #666;
}

.blog-bx .lable {
    position: absolute;
    top: 45px;
    left: 0;
    font-weight: 700;
    padding: 5px 10px;
    font-family: var(--sec-font);
    background: var(--light-pink);
    color: white;
    z-index: 1;
}

.blog-bx .img-bx {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

.blog-bx .img-bx img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    object-position: center;
    transition: 0.6s;
}

.blog-bx:hover .img-bx img {
    transform: scale(1.1);
}

.blog-bx .des-bx {
    /* border: 2px solid red; */
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-bx .des-bx .date {
    color: var(--light-text);
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-bx .des-bx .date span {
    background: var(--pink);
    display: inline-block;
    height: 1px;
    width: 10px;
    position: relative;
    top: -3px;
    margin: 0 2px;
}

.blog-bx .des-bx .blog-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.blog-bx:hover .des-bx .blog-title {
    color: var(--light-pink);
}

.blog-bx .des-bx .des {
    color: var(--light-text);
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 20px;
}

.blog-bx:hover .des-bx .des {
    color: var(--text-color);
}

.blog-bx .des-bx .read-more {
    display: inline-block;
    position: relative;
    font-weight: 600;
    color: var(--light-pink);
    font-size: 14px;
    margin-bottom: 2px;
}

.blog-bx .des-bx .read-more::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 30px;
    bottom: -3px;
    left: 0;
    background-color: var(--light-pink);
    transition: 0.3s;
}

.blog-bx .des-bx .read-more:hover::before {
    width: 100%;
}

/* Home Clients */
.webpulse_home_clients {
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px 0 40px;
    background-position: center;
    background-size: cover;
    /* border: 2px solid red; */
}

.webpulse_home_clients .clients img {
    height: 90px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 5px;
    /* border: 2px solid red; */
}

.webpulse_home_clients .vogi-title {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.webpulse_home_clients .vogi-sub-title {
    font-family: var(--sec-font);
    font-size: 20px;
    margin-bottom: 3px;
    font-weight: bold;
    color: var(--light-pink);
    text-transform: capitalize;
    text-align: center;
}

.webpulse_home_clients .vogi-title span {
    font-size: 30px;
    font-weight: bold;
}

.webpulse_home_clients .vogi-title:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 18px;
    width: 37%;
    height: 1px;
    background-color: #ccc;
}

.webpulse_home_clients .vogi-title::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 18px;
    width: 37%;
    height: 1px;
    background-color: #ccc;
}

.faq_section {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0px 0 40px;
    background: #e3f7fd;
}

.title_2 {
    padding: 0 0 0px;
    font-size: 28px;
    margin: 0;
    float: left;
    width: 100%;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 35px;
    position: relative;
    font-weight: 800;
    font-family: var(--main-font);
    /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); */
}

.title_2 span {
    color: var(--light-pink);
}

.title_2:after {
    background: var(--pink);
    bottom: -15px;
    content: "";
    height: 3px;
    left: 0;
    border-radius: 15px;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}

/* newletters */
.news-letter {
    float: left;
    width: 100%;
    padding: 40px 0px;
    background-size: contain;
    position: relative;
    z-index: 0;
    /* border: 2px solid red; */
    background-color: #eee;
    background-attachment: fixed;
}

.news-letter .form-bx .input-bx {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.news-letter .form-bx .input-bx input {
    height: 50px;
    line-height: 50px;
    max-width: 450px;
    border-right: none !important;
    border-radius: 0 !important;
    margin-left: auto;
}

.news-letter .form-bx .input-bx button {
    border: none;
    height: 50px;
    text-align: center;
    padding: 0 25px;
    background-color: var(--light-pink);
    color: white;
    font-size: 15px;
    border-radius: 0;
}

.news-letter .letter-bx {
    position: relative;
    padding-left: 62px;
}

.news-letter .letter-bx::before {
    position: absolute;
    font-family: 'FontAwesome';
    content: "\f1d9";
    font-size: 37px;
    top: 55%;
    transform: translateY(-50%);
    left: 0;
    color: var(--light-pink);
}

.news-letter .letter-bx .title {
    font-size: 32px;
    font-weight: bold;
    color: var(--light-pink);
    margin-bottom: 5px;
}

.news-letter .letter-bx .sub-title {
    font-size: 15px;
    color: var(--text-color);
    font-weight: bold;
}

/* Footer */
.web-pulse-india {
    float: left;
    width: 100%;
    padding: 60px 0px 10px;
    position: relative;
    z-index: 1;
    background: url(../images/bg/bg-abt.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.web-pulse-india::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 240, 240, 0.6);
    z-index: -1;
}

.web-pulse-india .copy .container {
    border-top: 1px solid #aaa;
    padding-top: 12px;
}

.web-pulse-india .copy .copyright i {
    color: var(--light-pink);
}

.web-pulse-india .copy a {
    display: inline-block;
    color: var(--light-text);
    line-height: 20px;
}

.web-pulse-india .copy a:hover {
    display: inline-block;
    color: var(--light-pink);
}

.social-bx {
    margin-top: 25px;
    margin-bottom: 25px;
}

.social-bx ul {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
    display: flex;
}

.social-bx ul li a {
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px dashed var(--light-pink);
    margin-right: 7px;
    color: var(--light-pink);
    transition: 0.4s;
    line-height: 35px;
}

.social-bx ul li a:hover {
    border-color: var(--light-pink);
    background: var(--light-pink);
    color: white;
}

.social-bx ul li a i {
    font-size: 15px;
}

.social-bx .title {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.web-pulse-india .module {
    margin-bottom: 25px;
}

.web-pulse-india .module .module-title {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.web-pulse-india .module .contact-bx {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.web-pulse-india .module .contact-bx img {
    max-width: 25px;
    margin-right: 10px;
}

.web-pulse-india .module .contact-bx .contact {
    font-size: 15px;
    font-weight: bold;
}

.web-pulse-india .module .contact-bx .contact a,
.web-pulse-india .module .contact-bx .contact p {
    display: inline-block;
    color: #444;
    font-size: 15px;
    font-weight: normal;
}

.web-pulse-india .module .contact-bx .contact a:hover {
    color: var(--light-pink);
}

.web-pulse-india .module ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.web-pulse-india .module ul li a {
    font-size: 14px;
    padding: 0;
    font-weight: 400;
    line-height: 25px;
    position: relative;
    padding-left: 17px;
    display: inline-block;
    color: #333;
    transition: 0.4s;
}

.web-pulse-india .module ul li a:hover {
    color: var(--light-pink);
    padding-left: 20px;
}

.web-pulse-india .module ul li a::before {
    font-family: 'FontAwesome';
    content: "\f192";
    font-size: 9px;
    position: absolute;
    top: 0px;
    left: 0;
}

.web-pulse-india .instagram-item {
    float: left;
    margin-bottom: 6px;
    padding: 0 3px;
    position: relative;
    width: 25%;
}

.web-pulse-india .instagram-item img {
    border: 1px solid #eee;
}

.web-pulse-india .instagram-item.first-item {
    width: 75%;
}

.social-icons {
    float: left;
    overflow: hidden;
    margin: 0;
}

.text-right {
    text-align: right;
}

.text-pri {
    color: var(--light-pink) !important;
}

#web-pulse-scroll-up {
    position: fixed;
    z-index: 8030;
    bottom: 115px;
    right: 25px;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    transform: rotate(45deg);
    color: #fff;
    line-height: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;

    transition: all 0.3s;
    display: none;
    background: var(--light-pink);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}

#web-pulse-scroll-up span {
    display: inline-block;
    position: relative;
    transform: rotate(-45deg);
}

#web-pulse-scroll-up::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -6px;
    width: 42px;
    height: 42px;
    border: 1px solid #aaa;
    z-index: 8031;
}

#web-pulse-scroll-up svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s;
}

#web-pulse-scroll-up:hover svg {
    margin-top: -5px;
}

#web-pulse-scroll-up:hover {
    bottom: 120px;
}

.whatapp_btn {
    background: #01e675;
    width: 48px;
    height: 48px;
    color: #fff;
    position: fixed;
    left: 15px;
    bottom: 96px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16), 0px 3px 8px rgba(0, 0, 0, 0.16);
}

.whatapp_btn svg {
    width: 21px;
    height: 21px;
}

.whatapp_btn:focus,
.whatapp_btn:hover {
    background: #01e675;
    color: #fff;
}

#whatsapp .modal-dialog {
    margin-top: 12%;
}

.send_enquiry {
    background: #ffffff;
    border-radius: 40px;
    bottom: 40px;
    color: #ffffff;
    display: table;
    height: 48px;
    left: 15px;
    min-width: 48px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    transition: all 0.2s linear;
    background: var(--liner);
    background-color: var(--dark-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
}

.send_enquiry svg {
    width: 21px;
    height: 21px;
    line-height: 48px;
}

.send_enquiry:hover {
    color: #fff;
    padding: 0 20px;
}

.send_enquiry:focus {
    color: #fff;
}

.send_enquiry span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    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(--pink);
    color: #fff;
    border-radius: 0;
}

.modal-header h4 {
    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;
}

.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-position: center;
    padding: 70px 0 65px;
    margin: 0;
    background-image: url(../images/bredcum-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

.heading_banner:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    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: 0px;
    text-transform: capitalize;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 0px;
    font-family: var(--main-font);
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5)
}

.heading_banner .cat_title2 {
    margin: 0;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: normal;
    color: #eee;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
}

/* Breadcrumb*/
.inner_breadcrumb {
    float: left;
    width: 100%;
    position: relative;
    margin: 0;
}

.inner_breadcrumb2 {
    background: #f3f3f3;
}

.inner_breadcrumb .breadcrumb {
    background: none;
    border-radius: 0;
    border: none;
    list-style: none;
    padding: 0;
    float: right;
    text-transform: capitalize;
    margin: 0;
}

.inner_breadcrumb2 .breadcrumb {
    float: left;
}

.inner_breadcrumb .breadcrumb li {
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
    float: left;
    display: inline-block;
    line-height: 33px;
}

.inner_breadcrumb2 .breadcrumb li {
    line-height: 45px;
    font-size: 13px;
}

.inner_breadcrumb .breadcrumb li a {
    float: left;
    padding: 0;
    color: #fff;
    letter-spacing: 0.3px;
}

.inner_breadcrumb2 .breadcrumb li a {
    color: var(--text-color);
}

.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(--dark-pink);
}

.inner_breadcrumb .breadcrumb li+li:before {
    content: "/";
    float: left;
    padding: 8px 10px;
    color: #fff;
}

.inner_breadcrumb2 .breadcrumb li+li:before {
    padding: 15px 10px;
    color: var(--text-color);
}

.title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: #f7b11b;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.right_side .title_h2 {
    float: left;
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    line-height: 30px;
    background: #f7b11b;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

/* Brand Store */
.brand-store {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
}

.brand-store .client-bx img {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 1px 1px 7px -2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 0px;
    transition: 0.3s;
}

.brand-store .client-bx img:hover {
    transform: scale(1.02);
    /* box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.3); */
    box-shadow: 0px 0px 7px 2px rgba(0, 0, 0, 0.2);
}

/* About Us */
.about_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    /* background: #f3f3f3; */
}

.left_image {
    float: left;
    width: 370px;
    margin: 0 15px 15px 0;
    text-align: center;
}

.left_image .left_centered {
    width: 100%;
    position: relative;
    padding: 0;
    min-height: 338px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* category Page */
.category_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.category_page .title_2:after {
    background: #282d32;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 50px;
}


.wps_right ul {
    margin: 0 0 25px;
    padding: 0;
}

.wps_right ul li {
    display: block;
    list-style: none;
    line-height: 24px;
    color: #423f3f;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 5px;
}

.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='13' height='13' fill='%23666' 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>");
}

.interested_section {
    float: left;
    width: 100%;
    text-align: center;
    margin: 20px 0
}

.interested_section .interested_btn {
    font-size: 16px;
    color: #fff;
    background: var(--light-pink);
    border: 1px solid var(--light-pink);
    border-radius: 0px;
    padding: 12px 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_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 {
    padding-top: 10px;
    overflow: hidden;
    text-align: center;
}

#thumbs img,
#largeImage {
    padding: 0;
    cursor: pointer;
    border: 1px solid #eee;
}

#thumbs img {
    display: inline-block;
    margin-right: 0;
    width: 100%;
}

#thumbs img.active {
    border-color: var(--light-pink);
}

.wps_right h2 {
    font-size: 25px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--dark-pink);
    text-transform: capitalize;
}

.wps_right h3 {
    font-size: 21px;
    font-weight: bold;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--dark-pink);
    text-transform: capitalize;
}

.wps_right h4 {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--light-pink);
    text-align: left;
    padding: 0;
}

.wps_right table {
    margin: 0;
}

.wps_right table tbody tr td {
    vertical-align: middle;
    padding: 6px 10px;
    font-size: 16px;
    line-height: normal;
    text-align: left;
}

.wps_right table tbody tr td {
    border: 1px solid #eaeaea;
    width: 60%;
}

.wps_right table tbody tr td:first-child {
    color: var(--light-pink);
    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(--light-pink);
}

.wps_right p {
    margin-bottom: 10px;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}

.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;
}

.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(--light-pink);
    ;
}

.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_view {
    margin-bottom: 25px;
}

.pr-li {
    border: 1px solid #eee;
    transition: 0.2s;
    height: 100%;
}

.pr-li .img_bx {
    padding: 10px;
    border-right: 1px solid #eee;
}

.pr-li .img_bx .small {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.pr-li .img_bx .small img {
    width: 55px;
    border: 1px solid #aaa;
    cursor: pointer;
}

.pr-li .img_bx .small .item.youtube a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--liner);
    background-color: #f70000;
    border-radius: 1px;
}

.pr-li .img_bx .small .item.youtube svg {
    height: 25px;
    width: 25px;
    color: white;
}

.pr-li .img_bx .small .item.active {
    border: 1px solid var(--light-pink);
}

.productBrochureandvideo {
    margin-right: 15px;
    margin-bottom: 10px;
}

.productBrochureandvideo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #cdcdcd;
    padding: 4px 6px;
    font-weight: bold;
    transition: 0.3s;
}

.productBrochureandvideo a svg {
    color: #fd002c;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.productBrochureandvideo a:hover {
    color: #fd002c;
    border: 1px dashed #fd002c;
}

.pr-li .tx-bx {
    padding: 15px;
    border-right: 1px solid #eee;
}

.grid.pr_view .pr-li .tx-bx {
    padding-top: 0;
}

.pr-li .tx-bx .title {
    color: var(--light-pink);
    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;
}

.pr_view .pr-li .tx-bx .bt_bx {
    display: flex;
    gap: 5px;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
    text-align: center;
    justify-content: center;
}

.pr-li .tx-bx .title a {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
    color: var(--light-pink);
}

.pr-li .tx-bx .info {
    max-height: 270px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 10px;
}

.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(--light-pink);
    -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);
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb:hover {
    background-color: var(--dark-blue);
}

.grid.pr_view .pr-li .tx-bx .info {
    display: none;
}

.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(--light-pink);
}

.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(--light-pink);
}

.product_listing:hover .right-content h4 a {
    color: var(--light-pink);
}

.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(--light-pink);
    ;
    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: #222;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 20px;
}

.bttn {
    font-size: 14px;
    outline: none;
    padding: 10px 13px;
    border: none;
    background: #333;
    border-radius: 2px;
    color: #fff;
    transition: .2s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.bttn.active,
.bttn:hover,
.bttn:focus {
    background-color: var(--light-pink);
    color: #fff;
}

/*  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(--light-pink);
    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(--light-pink);
    text-align: left;
    line-height: 20px;
    margin: 0 0 5px;
    padding: 0;
}

.testimonial_author .loc {
    color: #f7b11b;
    line-height: 20px;
    margin: 0;
}

.gallery_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #f9f3e8;
}

.gallery_page .gallery_item {
    border-radius: 2px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 0.98px 0.02px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.gallery_page .gallery_item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
}

.gallery_item_info {
    text-align: center;
    padding: 15px;
}

.gallery_item_info h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
}

.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: 376px;
}

.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: .6;
    -khtml-opacity: .6;
    opacity: .6;
}

.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(--light-pink);;
}

.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>");
}

.blog_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f5f5f5;
}

.blog_page .blog_left h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #f7b11b;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.blog_page .blog_b {
    margin-bottom: 20px;
    position: relative;
}

.right_news {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    background: #fff;
}

.right_news:last-child {
    margin-bottom: 0;
}

.right_news .image {
    float: left;
    width: 100%;
    margin: 0 0 10px;
    position: relative;
    overflow: hidden;
    height: 180px;
}

.right_news .image img {
    position: absolute;
    max-width: 100%;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: top center;
}

.right_news .title_h4 {
    padding: 10px;
    line-height: 18px;
    font-size: 15px;
    margin: 0px;
    text-align: left;
}

.right_news .title_h4 a {
    color: #333;
}

.right_news:hover .title_h4 a {
    color: var(--light-pink);
}

/* 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: 20px 25px;
    margin-bottom: 20px;
    background: #eee;
    border-left: 3px solid var(--light-pink);
    ;
}

.blog_details1 .block-quote p {
    font-size: 15px;
    line-height: 24px;
}

.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(--light-pink);
    ;
}

.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;
}

.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(--light-pink);
}

.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(--light-pink);
}

.mini-blogs .tx-bx p {
    line-height: normal;
    font-size: 13px;
    color: #555;
}

.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;
}

.contact_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
}

.contact_page ul.social {
    margin-bottom: 15px;
}

#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 {
    width: 100%;
    height: 425px;
    position: relative;
    display: block;
}

.contact_form_grid1 {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
}

/* .contact_form_grid1 textarea{ height: 150px !important; } */
.contact_page .contactTitle {
    color: var(--light-pink);
    font-size: 21px;
    text-align: left;
    padding: 0;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.contact_details p {
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact_details .address_list {
    clear: both;
    margin: 0 0 20px;
    padding: 0;
}

.contact_details .address_list li {
    clear: both;
    list-style: none;
    color: #333;
    margin-bottom: 2px;
    font-size: 16px;
}

.contact_details .address_list li svg {
    min-width: 22px;
    height: 22px;
    margin-right: 8px;
    color: var(--light-pink);
}

.contact_details .address_list li a {
    color: #333;
    display: flex;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 10px;
    display: inline-block;
}

.contact_details .address_list li a span {
    font-size: 30px;
    margin-right: 13px;
}

.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(--light-pink);
}

.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: #f7b11b;
    border: 1px solid #f7b11b;
}

.contact_form_grid .form_grid {
    background-color: #ffffff;
}

.form_grid .title_h2_2 {
    font-size: 20px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 20px;
    padding: 0;
    color: var(--light-pink);
}

.adress-bx {
    padding: 20px;
    border: 1px solid #ccc;
    transition: 0.4s;
    margin-top: 25px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.adress-bx:hover {
    border: 1px solid var(--text-color);
}

.adress-bx .adress {
    margin-bottom: 0;
    color: var(--light-text);
    position: relative;
    padding-left: 18px;
}

.adress-bx .adress::before {
    content: "\f041";
    font-family: 'FontAwesome';
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    color: var(--light-pink);
}

.adress-bx .adress a {
    color: var(--light-pink);
    text-decoration: underline;
}

.adress-bx .title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: capitalize;
}

/* Sitemap page */
.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
    position: relative;
}

.sitemap_right_side h1 {
    padding: 8px 10px;
    margin: 0 0 10px;
    line-height: 30px;
    background: #f7b11b;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
}

.sitemap_page .title_h2 {
    margin-bottom: 15px;
    color: #fff;
}

.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: 16px;
    padding-bottom: 5px;
    display: block;
}

.sitemap li a:hover {
    color: var(--light-pink);
}

.market_area h3 {
    float: left;
    display: block;

}

.market_area h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--light-pink);
}

.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}

.market-list li {
    list-style: none;
    padding-right: 10px !important;
    line-height: 20px;
    width: 25% !important;
    float: left;
}

.market-list li:before {
    content: none !important;
    margin-right: 0 !important;
}

.market-list li a {
    width: 100%;
    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(--light-pink);
    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 #ccc;
    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 h4 {
    color: var(--light-pink);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: left;
    padding: 0;
}

.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;
}

.video_section iframe {
    width: 100%;
    height: 415px;
}

.latest {
    font-size: 26px;
    font-weight: bold;
    font-family: 'Catamaran', sans-serif;
    color: #0c0c0c;
    margin: 0 0 20px;
}

.webpulse-home_blog h6 span {
    color: #f7b11b;
}

.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;
    }
}

.client_image {
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px;
    overflow: hidden;
    position: relative;
    height: 120px;
    border: 1px solid #cde9f7;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
}

.client_image .client_logo {
    overflow: hidden;
    position: relative;
    height: 100px;
    transition: transform .5s ease;
}

.client_image:hover .client_logo {
    transform: scale(1.1);
}

.client_image .client_logo img {
    position: absolute;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    max-height: 100%;
    width: auto;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--light-pink);;
}

.mb-phn {
    display: none;
}

.stButton {
    margin-bottom: 10px;
}

.terms-conditions a {
    text-decoration: underline;
    color: var(--light-pink);
    display: inline-block;
}

.terms-conditions h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark-pink);
}

.terms-conditions h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.terms-conditions p {
    text-align: justify;
    margin-bottom: 13px;
    font-size: 16px;
    line-height: 22px;
}

.terms-conditions p a {
    display: inline;
}

.terms-conditions ul li {
    line-height: 22px;
    margin-bottom: 3px;
    font-size: 16px;
}

.terms-conditions table {
    width: 100%;
    margin: 20px 0;
    border-color: #ccc;
}

.terms-conditions table tr td {
    color: var(--light-text);
}

.terms-conditions table tr:first-child td {
    color: var(--text-color);
    font-weight: 600;
}

.login-form {
    margin: 0 auto;
    position: relative;
    background-color: #fff;
    max-width: 600px;
    width: 45%;
    margin: 30px auto;
    text-align: center;
    padding: 20px 0px 0px;
    border-radius: 4px;
    box-shadow: 0 30px 50px 0 rgba(0, 0, 0, .2);
    overflow: hidden;
}

.login-form form {
    padding: 0px 60px;
}

.login-form .thumbur {
    width: 140px;
    height: 140px;
    position: relative;
    background-color: #efefef;
    background-image: linear-gradient(to right, #efefef 0, #efefef 50%, #e1e1e1 50%, #e1e1e1 100%);
    margin: auto;
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form .thumbur i {
    position: relative;
    font-size: 65px;
    color: var(--light-pink);
}

.login-form .login-title {
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    color: var(--light-pink);
    margin: 20px 0;
}

.login-form .change-type {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translatey(-50%);
    border: 0;
    outline: 0;
    background-color: transparent;
}

.login-form .submit {
    position: absolute;
    right: -25px;
    top: 50%;
    width: 50px;
    height: 45px;
    border: 0;
    outline: 0;
    color: white;
    background: var(--light-pink);
    font-size: 20px;
    transition: 0.4s;
}

.login-form .submit:hover {
    transform: scale(1.1);
}

.login-form a {
    text-decoration: underline;
    display: inline-block;
    font-weight: 500;
}

.login-form a:hover,
.login-form a:focus {
    color: var(--light-pink);
}

.login-form .shift {
    color: var(--light-text);
    background: #eeedf1;
    height: 60px;
    line-height: 60px;
    margin-top: 30px;
    padding: 0px 60px;
}

/* listing */
.product_listing {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: #fff;
}

.product_listing #sidebar {
    overflow: hidden;
    overflow-y: auto;
    padding: 0 15px 0 10px;
}

.product_listing .price_filter {
    margin: 0 0 20px;
    padding: 10px 20px 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    background: #fff;
}

.product_listing .left_title1 {
    padding: 0px 0 5px;
    color: var(--light-pink);
    line-height: 24px;
    font-size: 18px;
    width: 100%;
    display: inline-block;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
}

.product_listing label {
    margin-bottom: 10px;
    display: inline-block;
}

.product_listing #amount {
    border: 0 !important;
    outline: 0 !important;
    color: var(--light-pink);
    font-weight: 600;
    text-align: right;
    font-family: FontAwesome;
    width: 130px;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    font-size: 16px;
}

.ui-slider-handle.ui-corner-all.ui-state-default:focus,
.ui-slider-handle.ui-corner-all.ui-state-default:active {
    background-color: #eee;
    border: 1px solid #aaa;
    outline: none;
}

.ui-widget-header {
    background: var(--light-pink);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
}

.ui-widget.ui-widget-content {
    border: none;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #f5f5f5;
}

.product_filter {
    float: left;
    width: 100%;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
}

.left_title {
    padding: 7px 12px;
    color: var(--light-pink);
    line-height: 24px;
    font-size: 18px;
    width: 100%;
    display: inline-block;
    font-weight: 600;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.product_filter ul {
    margin: 10px 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.product_filter ul::-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;
}

.product_filter ul::-webkit-scrollbar {
    width: 7px;
    background-color: #f5f5f5;
}

.product_filter ul::-webkit-scrollbar-thumb {
    background-color: var(--light-pink);
    -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);
}

.product_filter ul li {
    text-transform: capitalize;
    display: block;
    color: #888;
    font-size: 14px;
    line-height: 34px;
    position: relative;
    padding: 0 10px;
}

.product_filter ul li:last-child {
    border-bottom: 0;
}

.product_filter li label {
    font-size: 14px;
    cursor: pointer;
    color: var(--text-color);
    display: block;
    line-height: 30px;
    margin: 0;
    padding-top: 1px;
}

.product_filter li label:hover {
    color: var(--light-pink);
}

.product_filter li label input[type=checkbox] {
    visibility: hidden;
    position: absolute;
    height: 14px;
}

.product_filter li label input[type=checkbox]:checked+span {
    color: var(--light-pink);
}

.product_filter li label>span {
    display: block;
    position: relative;
    padding-left: 27px;
}

.product_filter li label>span:before {
    content: '';
    width: 15px;
    height: 14px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    border: 1px solid #ccc;
}

.product_filter li label input[type="checkbox"]:checked+span:before {
    background: var(--light-pink);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/checked.png);
    border: 1px solid var(--light-pink);
}

.product_filter li label:after {
    clear: both;
}

.product_filter li label:before,
.product_filter li label:after {
    content: "";
    display: table;
}

/* .left-pro-bx .des-bx{ border: 2px solid red; } */
.left-pro-bx .des-bx .title {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 5px;
    line-height: normal;
}

.left-pro-bx .des-bx .price {
    color: var(--light-pink);
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
}

.left-pro-bx .des-bx .price del {
    color: var(--light-text);
    font-weight: 400;
    font-size: 13px;
}

.page_show {
    float: left;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
}

.page_show ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.page_show ul li {
    display: inline-block;
    list-style: none;
    margin: 0 0 0 10px;
}

.page_show ul li {
    display: inline-block;
    list-style: none;
    margin: 0 0 0 10px;
}

.page_show ul li:nth-child(2) {
    float: right;
}

.page_show ul li select {
    border: 0;
    background: transparent;
    width: auto;
    font-size: 12px;
    height: auto;
    outline: none;
    padding: 0;
}

.page_show ul li:last-child {
    float: right;
}

/* product-details */
.selectors .mz-thumb img {
    max-width: 85px;
    width: 100%;
    margin-bottom: 10px;
}

.product_details .protitle {
    color: var(--text-color);
    line-height: 28px;
    font-size: 20px;
    width: 100%;
    font-weight: bold;
    margin-bottom: 10px;
}

.product_details .sku {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 10px;
    float: left;
    margin-right: 15px;
}

.product_details .sku span {
    font-weight: bold;
    color: var(--text-color);
}

.product_review {
    margin-bottom: 12px;
}

.product_review .rating {
    display: inline-block;
    padding-right: 5px;
}

.product_review .rating i {
    color: #ffba0a;

}

.product_review .rating_count {
    display: inline-block;
    color: var(--light-pink);
    line-height: initial;
}

.product_details .price {
    font-size: 17px;
    color: var(--light-pink);
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    display: inline-block;
    line-height: 24px;
    transition: all 0.3s ease;
}

.product_details .price .old_price {
    font-size: 15px;
    color: #666;
    text-decoration: line-through;
    font-weight: normal;
    margin-right: 7px;
}

.product_details .price .off_label {
    position: absolute;
    right: 0;
    top: 0px;
    left: 125px;
    display: block;
    width: 90px;
    text-align: center;
    z-index: 5;
    font-size: 15px;
    background: var(--light-pink);
    color: #fff;
    border-radius: 3px;
    padding: 3px 10px;
    line-height: normal;
}

.product_info {
    list-style-type: none;
    padding: 0;
    margin-bottom: 10px;
}

.product_info li {
    font-size: 14px;
    color: #222222;
    margin-bottom: 10px;
}

.product_info li span {
    color: var(--text-color);
}

.product_info li small,
.product_info li a {
    display: inline-block;
    font-weight: 500;
    color: var(--light-text);
    font-size: 14px;
}

.product_info li a:hover {
    color: var(--light-pink);
}

.product_info li small.stock {
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
}

.product_info_btn {
    margin-bottom: 15px;
}

.product_info_btn a {
    color: #333;
    text-transform: uppercase;
    font-weight: normal;
    display: inline-block;
    position: relative;
    line-height: initial;
    font-size: 12px;
    margin-right: 5px;
}

.product_info_btn a i {
    margin-right: 5px;
    font-size: 14px;
}

.details_qty {
    width: auto;
    display: flex;
    margin-bottom: 20px;
    gap: 5px;
}

.details_qty input.minus,
.details_qty input.plus {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0px;
    text-align: center;
    border: 1px solid var(--light-pink);
    display: inline-block;
    background: white;
    color: var(--light-pink);
    font-size: 20px !important;
    font-weight: bold;
    outline: none;
}

.details_qty input.minus:hover,
.details_qty input.plus:hover,
.details_qty input.minus:focus,
.details_qty input.plus:focus {
    background: var(--light-pink);
    color: white;
}

.details_qty input.qty {
    display: inline-block;
    width: 60px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    outline: none;
}

.add_to_button {
    color: white;
    font-weight: normal;
    text-transform: capitalize;
    background: var(--light-pink);
    display: inline-block;
    line-height: normal;
    padding: 12px 25px;
    position: relative;
    margin-right: 5px;
    border: 1px solid var(--light-pink);
    outline: none;
}

.add_to_button:hover,
.add_to_wishlist:hover {
    color: white;
    background: #333;
    border-color: #333;
}

.add_to_wishlist {
    color: var(--light-pink);
    font-weight: normal;
    text-transform: capitalize;
    background: white;
    display: inline-block;
    line-height: normal;
    padding: 12px 25px;
    position: relative;
    border: 1px solid var(--light-pink);
    outline: none;
}

.form-group.check {
    margin-top: 15px;
    width: 100%;
    max-width: 400px;
    position: relative;
    font-size: 15px;
    color: #666;
}

.form-group.check i {
    position: absolute;
    left: 0px;
    top: 14px;
    color: var(--light-pink);
}

.form-group.check input {
    padding-left: 20px;
    background-color: transparent;
}

.check_btn {
    border: 0;
    background: transparent;
    color: var(--light-pink);
    padding: 10px 0px;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    font-size: 14px;
}

.product_overview .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #fff;
    border: 0;
    border-top: 2px solid var(--light-pink);
    border-radius: 0;
    background: var(--light-pink);
}

.product_overview .nav-tabs .nav-link {
    color: var(--text-color);
    background: #e9ecef;
}

.product_overview .tab-pane {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    color: var(--light-text);
}

.product_overview .tab-pane p {
    color: var(--light-text);
    line-height: normal;
    margin-bottom: 10px;
}

.product_overview .tab-pane .bx-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product_overview .tab-pane .dl-horizontal dt {
    text-align: left;
    font-size: 15px;
    line-height: normal;
    font-weight: normal;
}

.product_overview .tab-pane .dl-horizontal dd {
    font-size: 14px;
    line-height: normal;
    font-weight: normal;
}

.tab-pane .product_rate {
    font-size: 14px;
    background: var(--light-pink);
    border: 1px solid var(--light-pink);
    padding: 8px 20px;
    color: #fff;
}

.tab-pane .review {
    margin-bottom: 20px;
    text-transform: none;
    background: #fff;
    padding: 20px;
}

.tab-pane .review .review-title {
    margin-bottom: 10px;
}

.tab-pane .review .review-title .summary {
    color: var(--text-color);
    font-size: 15px;
    font-weight: normal;
    margin-right: 10px;
}

.tab-pane .review .review-title .date {
    font-size: 14px;
}

.tab-pane .review .review-title .date span {
    margin-left: 6px;
    color: var(--light-pink);
}

.tab-pane .review .product_ratings {
    margin-bottom: 8px;
    color: #ffba0a;
}

.cart_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 30px 0;
    background: #fff;
}

.cart_page .cart_left .bx-title {
    background: var(--light-pink);
    padding: 10px 12px;
    color: #fff;
    line-height: 24px;
    font-size: 20px;
    width: 100%;
    font-weight: 600;
    display: inline-block;
}

.cart_left table {
    border: 0px solid #ccc !important;
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 820px;
}

.cart_left table tr {
    border: 1px solid #ddd;
    padding: 5px;
}

.cart_left table th {
    border: 0px solid #ddd;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    font-size: 14px;
    color: var(--light-pink);
    background: #eee;
}

.cart_left table th {
    border: 0px solid #ddd;
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: middle;
    font-size: 14px;
    color: var(--light-pink);
    background: #eee;
}

.cart_left table tr {
    border: 1px solid #ddd;
    padding: 5px;
}

.cart_left table td {
    font-size: 13px;
    border: 1px solid #ddd;
    border: 1px solid #eee;
    padding: 8px 10px;
    line-height: 1.42857143;
    vertical-align: middle;
}

.cart_left table tbody tr td:first-child {
    width: 50%;
}

.cart_image {
    float: left;
    margin-right: 3%;
    position: relative;
    height: 65px;
    width: 110px;
    border: 1px solid #eee;
    border-radius: 3px;
    overflow: hidden;
}

.cart_image a img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    width: auto;
    transform: translate(-50%, -50%);
    max-height: 100%;
}

.cart_left table tbody tr td .price {
    position: relative;
    color: var(--light-pink);
    font-size: 13px;
    display: inline-block;
    line-height: 24px;
    transition: all 0.3s ease;
}

.cart_info a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 22px;
}

.cart_info p {
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    margin-bottom: 0;
}

.cart_off_label {
    display: block;
    text-align: center;
    background: var(--light-pink);
    color: #fff;
    padding: 2px 10px;
}

.price span {
    color: #666;
    text-decoration: line-through;
    margin-right: 10px;
}

.cart_remove {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #333;
    font-size: 14px;
    height: 25px;
    text-align: center;
    width: 25px;
    line-height: 25px;
    display: inline-block;
}

.cart_right_title {
    background: var(--light-pink);
    padding: 10px 12px;
    color: #fff;
    line-height: 24px;
    font-size: 20px;
    width: 100%;
    font-weight: 600;
    display: inline-block;
}

.cart_right {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #eee;
    background: #fff;
}

.coupon_form {
    position: relative;
    margin-bottom: 5px;
}

.coupon_form input {
    border: 1px #dedede solid;
    border-radius: 0px;
    width: 100%;
    font-size: 12px;
    margin: 0;
    height: 34px;
}

.coupon_form .apply_btn {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--light-pink);
    color: #fff;
    border: 0;
    height: 34px;
    padding: 6px 15px;
    font-size: 13px;
}

.coupons_text {
    font-size: 12px;
    color: var(--text-color);
}

.coupons_text a {
    display: inline-block;
    color: var(--light-pink);
}

.cart_right .table {
    border: 0;
    margin-bottom: 15px;
}

.table.table-totals tr {
    border: 0;
}

.cart_page .cart_right table tr td:nth-child(1) {
    width: auto !important;
}

.cart_right .table tr th,
.cart_right .table tr td {
    border: 0;
    padding: 5px 0;
    font-size: 14px;
}

.table.table-totals tr {
    border: 0;
}

.cart_right .table tbody tr:last-child td {
    padding-bottom: 15px;
}

.cart_right .table tr td.free {
    color: var(--light-pink);
    text-transform: uppercase;
}

.cart_right .table tfoot {
    border-top: 1px solid #ccc;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.cart_right .table tfoot tr td {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    color: #333;
    width: auto !important;
}

.payable {
    color: var(--light-pink);
}

.order_btn {
    width: 100%;
    padding: 10px 25px;
    background: var(--light-pink);
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid var(--light-pink);
    font-weight: 600;
}

.order_btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.cart_right .safe_info {
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
}

.cart_right .safe_info i {
    font-size: 36px;
    color: var(--light-pink);
    float: left;
    margin-top: 4px;
    margin-right: 8px;
}

.shopping_btn {
    padding: 10px 20px;
    background: #fff;
    color: var(--light-pink);
    border-radius: 3px;
    text-decoration: none;
    width: auto;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    border: 1px solid var(--light-pink);
}

.shopping_btn:hover {
    background: var(--light-pink);
    color: white;
}

.checkout_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #f1f3f6;
    position: relative;
}

.checkout_page .bx-title {
    background: var(--light-pink);
    padding: 10px 12px;
    color: #fff;
    line-height: 24px;
    font-size: 20px;
    width: 100%;
    font-weight: 600;
    display: inline-block;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    content: none;
}

.checkout_page .accordion-item {
    margin-bottom: 10px;
    border-radius: 2px !important;
    overflow: hidden;
}

.checkout_page .accordion-button {
    padding: 10px 15px;
    border-radius: 0 !important;
}

.checkout_page .accordion-body {
    padding: 10px 15px;
}

.checkout_page .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--light-pink);
    box-shadow: none;
}

.checkout_page .accordion-button:not(.collapsed) span {
    background: #fff;
    color: var(--light-pink);
    font-weight: bold;
}

.checkout_page .accordion-button span {
    background-color: #aaa;
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 3px;
}

.checkout_page .form-group+.form-group {
    margin-top: 10px;
}

.checkout_page .forgot-password {
    padding-top: 14px;
    display: inline-block;
    color: var(--light-pink);
    position: absolute;
    top: -4px;
    right: 7px;
}

.panel-body form .radio_btn {
    font-size: 13px;
    line-height: 25px;
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

.panel-body form .radio_btn input {
    float: left;
    height: 17px;
    line-height: 25px;
    margin: 5px 0 0;
    margin-right: 10px;
}

.checkout_page .step_login_btn {
    padding: 10px 25px;
    background: var(--light-pink);
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 15px;
    border: 0;
}

.checkout_page .step_login_btn:hover {
    background: #333;
}

.checkout_page .checkout_right {
    padding: 15px;
    background: #eee;
}

.checkout_page .checkout_right h4 {
    text-align: left;
    margin: 0 0 10px;
    padding: 0;
}

.checkout_page .checkout_right ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.checkout_page .checkout_right ul li {
    font-size: 13px;
    list-style: none;
    line-height: 22px;
}

.checkout_page .checkout_right ul li i.fa-check {
    background: transparent !Important;
    color: var(--light-pink);
}

.cart_right ul {
    background: #fff;
    margin: 0;
    padding: 0;
}

.cart_right ul li {
    line-height: 1;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dee5e8;
    list-style: none;
}

.cart_right ul li i {
    float: left;
    color: var(--light-pink);
    min-width: 40px;
    line-height: 1;
    margin-left: 0.7rem;
    margin-top: 0.3rem;
    font-size: 34px;
    min-width: 40px;
    margin-right: 10px;
    text-align: center;
}

.cart_right ul li h4 {
    text-align: left;
    color: #333;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.cart_right ul li:last-child {
    border-bottom: 0;
}

.dashboard_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
}

.dashboard_page .dashboard-links {
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 0;
    padding: 20px;
}

.dashboard_page .dashboard-links li a {
    box-shadow: 1px 1px 4px -1px #ccc;
    border-radius: 5px;
    padding: 13px 15px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dashboard_page .dashboard-links li:last-child a {
    margin-bottom: 0;
}

.dashboard_page .dashboard-links li a:hover,
.dashboard_page .dashboard-links li a.active {
    background: var(--light-pink);
    color: white;
}

.dashboard_page .dashboard-bx {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
}

.dashboard_page .dashboard-bx .profile-bar {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 #ccc;
    background-color: #eee;
}

.profile-bx {
    display: flex;
    align-items: center;
}

.profile-bx .profile-icon {
    color: var(--light-pink);
    border: 5px solid;
    border-radius: 100%;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: bolder;
    background: white;
    margin-right: 15px;
}

.profile-bx .profile-des .title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.profile-bx .profile-des a {
    color: var(--light-text);
    font-size: 13px;
    line-height: 18px;
}

.edit-profile {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-pink);
    color: white;
    text-align: center;
}

.edit-profile:hover {
    color: white;
    background: #333;
}

.recent-order-bar {
    padding: 20px;
    border-radius: 3px;
    border: 1px solid #eee;
    box-shadow: 0 0px 5px -1px #ccc;
}

.recent-order-bar .recent-order-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-pink);
    margin-bottom: 5px;
}

.recent-order-bar .order-details {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-order-bar .order-details li {
    color: var(--text-color);
    line-height: 18px;
}

.recent-order-bar .order-details li span {
    color: var(--light-text);
    font-weight: 500;
}

.recent-order-bar .upload-btn {
    outline: 0;
    border: 2px dashed var(--light-pink);
    color: var(--light-pink);
    background: white;
    font-weight: bold;
    width: 100%;
    padding: 8px 0;
    text-align: center;
}

.dashboard-bx .address-bar {
    padding: 20px;
    border-radius: 3px;
    border: 1px solid #eee;
    box-shadow: 0 0px 5px -1px #ccc;
    margin-bottom: 20px;
}

.dashboard-bx .address-bar .add-title {
    color: var(--light-text);
    font-weight: bold;
    font-size: 15px;
    color: var(--text-color);
}

.dashboard-bx .address-bar .add-title a {
    float: right;
    padding: 3px 6px;
    color: var(--light-pink);
    border-radius: 3px;
    background-color: #eee;
    font-size: 14px;
}

.dashboard-bx .address-bar .add-title a i {
    font-size: 12px;
}

.dashboard-bx .address-bar .name {
    font-weight: bold;
    margin: 5px 0;
    font-size: 17px;
    color: var(--light-pink);
}

.dashboard-bx .address-bar p {
    margin: 0;
    color: var(--light-text);
}

.dashboard-bx .dashboard-title {
    color: var(--light-pink);
    font-size: 18px;
    text-align: left;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: bold;
}

.cart_left.wishlist-bx table {
    border-radius: 5px;
    border: 1px solid #eee !important;
}

.cart_left.wishlist-bx table th {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    padding: 12px 10px;
}

.in-stock {
    padding: 3px 6px;
    background: forestgreen;
    font-size: 13px;
    color: white;
    border-radius: 3px;
}

.out-stock {
    padding: 3px 6px;
    background: #ff2020;
    font-size: 13px;
    color: white;
    border-radius: 3px;
}

.wishlist-bx .cart_add {
    border-radius: 2px;
    height: 30px;
    width: 30px;
    font-size: 14px;
    display: inline-block;
    line-height: 30px;
    margin: 0;
    padding: 0;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
    color: var(--light-pink);
}

.wishlist-bx .cart_add:hover {
    background: var(--light-pink);
    color: white;
}

.wishlist-bx .cart_remove {
    border-radius: 2px;
    height: 30px;
    width: 30px;
    font-size: 14px;
    display: inline-block;
    line-height: 30px;
    margin: 0;
    padding: 0;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
}

.order-details-bar .details-bx,
.order-details-bar .address-bx {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 #ccc;
    background-color: #f3f3f3;
}

.order-details-bar .details-bx .Order-id {
    font-size: 18px;
    font-weight: 700;
}

.order-details-bar .details-bx .Order-date {
    font-size: 14px;
    font-weight: 500;
    color: grey;
    margin-bottom: 8px;
}

.order-details-bar .table.table-totals tr {
    border: 0;
}

.order-details-bar .table tr th,
.order-details-bar .table tr td {
    border: 0 !important;
    padding: 5px 0;
    font-size: 14px;
    line-height: normal;
}

.order-details-bar table tr td:nth-child(1) {
    width: auto !important;
}

.order-details-bar .table tbody tr:last-child td {
    padding-bottom: 1rem;
}

.details-bx .table tr td.free {
    color: forestgreen;
    text-transform: uppercase;
}

.order-details-bar .table tfoot {
    border-top: 1px solid #ccc;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}

.order-details-bar .table tfoot tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
    color: var(--text-color);
    width: auto !important;
}

.order-details-bar .address-bx .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.order-details-bar .address-bx .name {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
}

.order-details-bar .address-bx .address-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-details-bar .address-bx .address-details li {
    font-size: 14px;
    color: var(--light-text);
    padding-top: 8px;
}

.order-details-bar .address-bx .address-details li span {
    color: var(--text-color);
    font-weight: 500;
}

.abt_con {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background: url(../images/bg/bg-abt.webp) no-repeat;
    background-position: center;
    background-size: cover;
}

.abt_con h1 {
    position: relative;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--text-color);
}

.abt_con h1 span {
    color: var(--dark-pink);
}

.abt_con h1::before {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 60px;
    height: 2.5px;
    border-radius: 1px;
    background: var(--dark-pink);
}

.abt_con h2 {
    font-size: 25px;
    margin-bottom: 7px;
    font-weight: bold;
    color: var(--text-color);
}

.abt_con h3 {
    font-size: 20px;
    margin-bottom: 7px;
    font-weight: bold;
    color: var(--text-color);
}

.abt_con p {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 22px;
    color: #333;
}

.abt_con ul {
    list-style: none;
    padding: 0;
}

.abt_con ul li {
    text-align: justify;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
    line-height: 20px;
    position: relative;
    padding-left: 34px;
}

.abt_con 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;
    left: 0;
    width: 22px;
    height: 21px;
    background: var(--liner);
    background-color: var(--light-pink);
    display: flex;
    justify-content: center;
    line-height: 29px;
    border-radius: 100%;
}

.abt_con .tx-bx {
        position: relative;
    z-index: 1;
    padding: 111px;
    padding-bottom: 170px;
    padding-left: 10px;
}

.abt_con::before {
    content: "";
    background-color: rgba(245, 245, 245, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.abt_con .left-bar::before {
    /* background: #000; opacity: 0.1; */
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: calc(100% - 50px);
    height: 100%;
    background-image: url(../images/rrdiagonal-line.png);
    background-color: rgba(32, 47, 62, 0.3);
    z-index: 3;
    opacity: 0.1;
}

.abt_con .left-bar .img-bx {
    /* background: url(../images/bg/abt-bg.jpg) no-repeat; */
    /* background-position: center; background-size: cover; */
    background: none;
    width: calc(100% - 50px);
    z-index: 2;
    overflow: hidden;
}

.abt_con .left-bar .img-bx img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.abt_con .left-bar:hover .img-bx {
    transform: scale(1);
}

/* .abt_con .left-bar:hover .img-bx img { transform: scale(1.1); } */
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 65px;
    height: 65px;
    border-radius: 80px;
    text-align: center;
    line-height: 65px;
    color: #fff;
    display: block;
    margin: auto;
    transition: all .5s;
    background: var(--liner);
    background-color: var(--dark-pink);
    box-shadow: 0 0 0 0 rgba(110, 39, 37, .5);
    -webkit-animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -moz-animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1);
    -ms-animation: wave 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: wave 1.25s infinite cubic-bezier(.66, 0, 0, 1);
}

.video-play-icon:hover {
    animation: none;
    color: #fff;
}

.video-play-icon:focus {
    color: #fff;
}

.login-bg {
    background: #9f9da7
}

input[type='checkbox'],
input[type='radio'] {
    width: auto !important
}

label.shipping input {
    float: left;
    height: 15px;
    margin-right: 10px;
}

.checkout_btn {
    padding: 10px 30px;
    background: #171717;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-bottom: 15px;
    font-size: 15px;
    border: 0;
    z-index: 1;
}

.checkout_btn:hover,
.checkout_btn:focus {
    background: var(--light-pink);
    color: #fff;
}

.mobile_view {
    display: none;
}

.payment_option {
    float: left;
    width: 100%;
}

.payment_option form .radio {
    border-bottom: 1px solid #ccc;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 0 10px 30px;
    user-select: none;
    width: 100%;
    display: flex
}

.payment_option form .radio:last-child {
    border-bottom: 0;
}

.payment_option form .radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment_option form .checkround {
    position: absolute;
    top: 6px;
    left: 0;
    height: 20px;
    width: 20px;
    background: #fff;
    border-color: var(--light-pink) !important;
    border-style: solid;
    border-width: 2px;
    border-radius: 50%;
}

.payment_option form .radio input:checked~.checkround {
    background: #fff;
}

.payment_option form .checkround:after {
    content: "";
    position: absolute;
    display: none;
}

.payment_option form .radio input:checked~.checkround:after {
    display: block;
}

.payment_option form .radio .checkround:after {
    left: 2px;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-pink) !important;
}

.confrmorder {
    padding: 12px 40px;
    background: var(--light-pink) !important;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    margin-right: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    border: 0;
    z-index: 1;
}

.confrmorder.hover_btn:before,
.confrmorder.hover_btn:after {
    background: #171717;
}

.payment_option form label {
    cursor: pointer;
}

.product_details .form-group.check input {
    border-left: 0px;
    border-radius: 0px;
    border-right: 0px;
    border-top: 0px;
}

.carousel-control-next,
.carousel-control-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 65px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    border: 0;
    outline: 0;
    background: var(--light-pink);
    border-radius: 100%;
    z-index: 99;
    opacity: 1;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 15px;
    width: 15px;
}

.carousel-control-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
}

.carousel-control-next {
    right: 0px;
    border-radius: 3px 0px 0px 3px;
}

@media (max-width:980px) {

    .carousel-control-next,
    .carousel-control-prev {
        width: 22px;
        height: 47px;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        height: 15px;
        width: 15px;
    }

    .carousel-control-prev {
        left: 0px;
        border-radius: 0 3px 3px 0;
    }

    .carousel-control-next {
        right: 0px;
        border-radius: 3px 0px 0px 3px;
    }
}

@-webkit-keyframes wave {
    to {
        box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
    }
}

@-moz-keyframes wave {
    to {
        box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
    }
}

@-ms-keyframes wave {
    to {
        box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
    }
}

@keyframes wave {
    to {
        box-shadow: 0 0 0 45px rgba(213, 142, 144, 0)
    }
}

/*ÐºÐ½Ð¾Ð¿ÐºÐ° Ð¾Ð±Ñ€Ð°Ñ‚Ð½Ð¾Ð¹ ÑÐ²ÑÐ·Ð¸*/
.email-bt {
    background: #F95C18;
    border: 2px solid #F95C18;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(249, 92, 24, 0.3);
    cursor: pointer;
    height: 68px;
    text-align: center;
    width: 68px;
    position: fixed;
    left: 8%;
    bottom: 18%;
    z-index: 999;
    transition: .3s;
    -webkit-animation: email-an linear 1s infinite;
    animation: email-an linear 1s infinite;
}

.email-bt .text-call {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.email-bt .text-call span {
    text-align: center;
    color: #F95C18;
    opacity: 0;
    font-size: 0;
    position: absolute;
    right: 4px;
    top: 22px;
    line-height: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity .3s linear;
    font-family: 'montserrat', Arial, Helvetica, sans-serif;
}

.call_now {
    background: var(--liner);
    background-color: var(--dark-blue);
    width: 48px;
    height: 48px;
    color: #fff;
    position: fixed;
    right: 16px;
    bottom: 40px;
    cursor: pointer;
    z-index: 999;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    box-shadow: 0 8px 10px rgba(41, 107, 165, 0.2);
    font-size: 20px;
    animation: email-an linear 1s infinite;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.call_now:hover {
    color: #fff;
    animation: none;
}

@keyframes email-an {
    0% {
        box-shadow: 0 8px 10px rgba(41, 107, 165, 0.2), 0 0 0 0 rgba(41, 107, 165, 0.2), 0 0 0 0 rgba(41, 107, 165, 0.2);
    }

    40% {
        box-shadow: 0 8px 10px rgba(41, 107, 165, 0.2), 0 0 0 12px rgba(41, 107, 165, 0.2), 0 0 0 0 rgba(41, 107, 165, 0.2);
    }

    80% {
        box-shadow: 0 8px 10px rgba(41, 107, 165, 0.2), 0 0 0 15px rgba(41, 107, 165, 0), 0 0 0 16px rgba(41, 107, 165, 0.067);
    }

    100% {
        box-shadow: 0 8px 10px rgba(41, 107, 165, 0.2), 0 0 0 18px rgba(41, 107, 165, 0), 0 0 0 20px rgba(41, 107, 165, 0);
    }
}

/* --------- why us -----------  */
.why-us {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 30px;
    background: #fff;
}

.why-us-bx {
    /* border: 1px solid red; */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    height: 100%;
}

.why-us-con:nth-child(-n + 4) .why-us-bx {
    border-top: none;
}

.why-us-con:nth-child(5) .why-us-bx,
.why-us-con:first-child .why-us-bx {
    border-left: none;
}

.why-us-bx .img-bx {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    /* margin: 0 auto 10px; */
    padding: 17px;
    background: var(--liner);
    background-color: var(--dark-pink);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    transition: 0.6s all;
}

.why-us-bx:hover .img-bx {
    transform: scale(1.1);
}

.why-us-bx .tx-bx {
    font-size: 16px;
    color: #222;
    /* width: calc(100% -  80px); */
    text-transform: capitalize;
}

.why-us-bx .tx-bx span {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin: 3px 0;
    color: var(--dark-pink);
    text-transform: uppercase;
}

/* --------- qty-pro-section -----------  */
.qty-pro-sec {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.production-sec {
    position: relative;
    z-index: 1;
    background: url(../images/bg/Strength-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    color: #111;
    padding: 40px 20px;
}

.production-sec .main-tt {
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--dark-pink);
}

.production-sec::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.production-sec .prod-card-row {
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
}

.production-sec .prod-card-row .prod-card {
    text-align: center;
    padding: 20px;
    /* background: #fff; */
    border: 1px solid #e4e3e3;
    width: calc(100% / 7);
}

.production-sec .prod-card-row .prod-card:first-child {
    border-left: none;
}

.production-sec .prod-card-row .prod-card .img-bx {
    color: white;
    font-weight: bold;
    font-size: 13px;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    padding: 25px;
    background: var(--liner);
    background-color: var(--dark-pink);
    transition: 0.6s all;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    position: relative;
    /* z-index: 1; */
    /* border: 6px solid #fff; */
    margin: 0 auto;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.production-sec .prod-card-row .prod-card .img-bx:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    height: 80px;
    width: 80px;
    border: 2px dashed #fff;
    animation: border-animation 5s linear infinite;
    -webkit-animation: border-animation 5s linear infinite;
    border-radius: 50%;
    z-index: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

@keyframes border-animation {
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

.production-sec .prod-card-row .prod-card .tx-bx {
    margin-top: 10px;
    font-size: 17px;
    font-weight: bold;
    color: #555;
}

.production-sec .prod-card-row .prod-card:hover .img-bx {
    /* transform: scale(1); */
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

.qty-sec {
    position: relative;
    z-index: 1;
    background: url(../images/bg/qty-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 40px;
}

.qty-sec::before {
    content: "";
    background-color: rgba(225, 225, 225, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.qty-sec .qty-con {
    position: relative;
    background: var(--dark-pink);
        padding: 34px 0;
    border-radius: 5px;
     min-height: 316px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    transition: color 0.25s;
}

.qty-sec .qty-con::before {
    content: "";
    left: 8px;
    top: 8px;
    right: 8px;
    position: absolute;
    z-index: -1;
    bottom: 8px;
    border-radius: 5px;
    outline: 1px dashed transparent;
    outline-offset: -1px;
    background: linear-gradient(90deg, #fff 50%, transparent 0) repeat-x, linear-gradient(90deg, #fff 50%, transparent 0) repeat-x, linear-gradient(0deg, #fff 50%, transparent 0) repeat-y, linear-gradient(0deg, #fff 50%, transparent 0) repeat-y;
    animation: linearGradientMove 0.3s infinite linear;
    background-size: 4px 1px, 4px 1px, 1px 4px, 1px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

.qty-sec .qty-con:hover:before {
    outline: 1px solid transparent;
    /* background: linear-gradient(90deg, #dc3d3d 50%, transparent 0) repeat-x, linear-gradient(90deg, #dc3d3d 50%, transparent 0) repeat-x, linear-gradient(0deg, #dc3d3d 50%, transparent 0) repeat-y, linear-gradient(0deg, #dc3d3d 50%, transparent 0) repeat-y; */
    background-size: 4px 1px, 4px 1px, 1px 4px, 1px 4px;
    background-position: 0 0, 0 100%, 0 0, 100% 0;
}

@keyframes linearGradientMove {
    100% {
        background-position: 4px 0, -4px 100%, 0 -4px, 100% 4px;
    }
}

/* .qty-sec .qty-con:hover::before { border-top-color: #60daaa; border-right-color: #60daaa; transition: width 0.25s ease-out, height 0.25s ease-out 0.25s; } */
.qty-sec .qty-con:hover {
    box-shadow: 10px 0 20px rgba(0, 0, 0, 0.19), 6px 0 6px rgba(0, 0, 0, 0.23);
}

.qty-sec .qty-con .qty-bx {
    
    padding: 0 20px;
}

.qty-sec .qty-con .ic-bx {
    width: 50px;
    margin: 0px auto 5px;
}

.qty-sec .qty-con .ic-bx img {
    transition: all 0.3s;
}

/* .qty-sec .qty-con:hover .ic-bx img { transform: rotate(360deg); transition: .5s; } */
.qty-sec .qty-con .qty-bx .tt {
        color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 19px 0;
}

.abt-sec2 {
    float: left;
    width: 100%;
}

.abt-sec2 h2,
.abt-sec2 h3 {
    font-size: 20px;
    margin-bottom: 7px;
    font-weight: bold;
    color: #111;
}

.abt-sec2 p,
.abt-sec2 ul li {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    line-height: 20px;
}

.abt-sec2 ul li {
    margin-bottom: 8px;
}

.carousel-indicators [data-bs-target] {
    height: 10px;
    width: 10px;
    border-radius: 100%;
    background-color: white;
    opacity: 1;
    margin-right: 5px;
    margin-left: 5px;
}

.carousel-indicators .active {
    background-color: var(--light-pink);
}

.ftlogo {
    max-width: 210px;
    margin-bottom: 10px;
}

.module.aboutBx p {
    font-size: 15px;
    text-align: justify;
    margin-bottom: 15px;
}

.module.aboutBx .moreBtn {
    padding: 9px 25px;
    height: 36px;
}

.copyright-w {
    font-size: 15px;
    color: #333;
}

.contact-banner {
    float: left;
    width: 100%;
}

.contact-banner img {
    width: 100%;
}

.brochureBtn {
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    background: var(--liner);
    background-color: var(--light-pink);
    padding: 10px 25px;
    color: white;
    transition: 0.2s ease-in-out;
    display: inline-block;
}

.brochureBtn:hover {
    background-color: var(--blue);
    color: white;
}

.socialIcons {
    position: fixed;
    right: 0;
    top: 40%;
    width: auto;
    padding: 0;
    margin: 0;
    z-index: 99;
    -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: 60px;
    height: 60px;
    border-radius: 100%;
    margin-right: -25px;
    line-height: 60px;
    text-align: left;
    padding-left: 16px;
    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 span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80%;
    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-right-width: 6px;
    border-right-style: solid;
    border-right-color: transparent;
    border-left-color: transparent;
    border-right: 0;
    position: absolute;
    right: -5px;
    top: 50%;
    margin-top: -6px;
    border-left-color: #443f7d !important;
}

.socialIcons a.facebook,
.socialIcons a.facebook span {
    background-color: #3b5998 !important;
}

.socialIcons a.facebook span:before {
    border-left-color: #3b5998 !important;
}

.socialIcons a.twitter,
.socialIcons a.twitter span {
    background-color: #00aced !important;
}

.socialIcons a.twitter span:before {
    border-left-color: #00aced !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-left-color: #0077B5 !important;
}

.socialIcons a.youtube,
.socialIcons a.youtube span {
    background-color: #f70000 !important;
}

.socialIcons a.youtube span:before {
    border-left-color: #f70000 !important;
}

.socialIcons a:hover span {
    opacity: 1;
    transform: translateX(-110%);
}

.googleReview2 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0 65px;
    background-color: #eee
}

.title_1 {
    color: var(--dark-pink);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.maxWidth {
    text-align: center;
    max-width: 950px;
    margin: 10px auto 30px;
    position: relative;
}

.maxWidth p {
    font-size: 17px;
    color: #282828;
    line-height: 24px;
}

.tm-testi-slide-1 {
    background: #fff;
    padding: 24px 21px 15px 21px;
    border: 1px solid #dfdfdf;
    border-radius: 18px;
    transition: all .3s ease-in-out;
    margin-bottom: 25px;
}

.tm-testi-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tm-trustpilot-logo {
    flex: 1;
}

.tm-trustpilot-logo img {
    max-width: 91px;
}

.tm-star-ratings {
    flex: 1;
    text-align: right;
    font-weight: 600;
}

.tm-star-ratings img {
    max-width: 84px;
    margin-left: auto;
}

.tm-slide-h4 {
    color: #373737;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    padding-top: 10px;
}

.tm-slide-p {
    font-weight: 400;
    font-size: 16px;
    padding: 10px 0 15px 0;
    line-height: 25px;
    border-bottom: 1px solid #ebeaea;
    color: #707070;
    text-align: left;
    margin: 0;
    min-height: 151px;
}

.tm-slide-h5 {
    color: #707070;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    font-size: 16px;
    color: var(--dark-pink);
}

.owl-carousel {
    float: left;
    width: 100%;
}

#testimonialHome .owl-next,
#testimonialHome .owl-prev {
    line-height: 0;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    border: 0;
    outline: 0;
    background: var(--dark-pink);
    border-radius: 100%;
    z-index: 50;
    border: 1px solid var(--dark-pink);
    text-align: center;
    cursor: pointer;
    transition: all .3s ease
}

#testimonialHome .owl-nav .owl-prev {
    left: -50px;
    top: 48%
}

#testimonialHome .owl-nav .owl-next {
    right: -50px;
    top: 48%
}

#testimonialHome .owl-nav .owl-next:hover,
#testimonialHome .owl-nav .owl-prev:hover {
    background: var(--dark-pink);
    color: #fff;
    border-color: var(--dark-pink);
}

#testimonialHome .owl-dots {
    bottom: -35px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#testimonialHome.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #869791;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px
}

#testimonialHome.owl-carousel .owl-dots .owl-dot.active span,
#testimonialHome .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--dark-pink);
}


.cus-abt-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: #f9f9f9;
}

.cus-abt-sec .abtt-bx {
    position: relative;
    padding-top: 15px;
}

.cus-abt-sec .abtt-bx .tt {
    font-size: 35px;
    font-weight: 800;
    color: var(--text-color);
}

.cus-abt-sec .abtx-bx p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 24px;
}

.cus-abt-sec .abtx-bx .d-btn {
    color: var(--dark-pink);
    font-size: 18px;
}

.cus-abt-sec .abtx-bx .d-btn svg {
    margin-left: 5px;
}

.cus-abt-sec .abtt-bx::before {
    content: "";
    position: absolute;
    top: -10px;
    height: 4px;
    width: 70px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(159, 60, 142, 1) 0%, rgba(225, 49, 72, 1) 100%);
}

.mis-vis-sec {
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url(../images/abt-img/bg.jpg);
    position: relative;
    z-index: 1;
}

.mis-vis-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    z-index: -1;
}

.mis-vis-sec .img-bx {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    height: 400px;
}

.mis-vis-sec .img-bx img {
    position: absolute;
    transition: 0.3s ease-in-out;
}

.mis-vis-sec .img-bx .img-1 {
          top: -31px;
    left: 0;
    width: 394px;
}

.mis-vis-sec .img-bx .img-1:hover {
    z-index: 2;
    transform: scale(1.02);
}

.mis-vis-sec .img-bx .img-2 {
    top: 0;
    right: 0;
    width: 300px;
}

.mis-vis-sec .img-bx .img-2:hover {
    z-index: 2;
    transform: scale(1.02);
}

.mis-vis-sec .img-bx::before {
       content: "";
    position: absolute;
    top: -43px;
    left: 68px;
    width: 340px;
    height: 323px;
    background: #2e3092;
    border-radius: 10px;
}

.mis-vis-sec .img-bx2 .img-2 {
    width: 250px;
}

.mis-vis-sec .img-bx2 .img-1 {
    width: 300px;
}

.mis-vis-sec .img-bx2::before {
    background: #0073a2;
}

.mis-vis-sec .tx-bx {
    max-width: 380px;
    position: relative;
}

.mis-vis-sec .tx-bx .before {
    position: absolute;
    bottom: -82%;
    right: 31px;
    z-index: -1;
    opacity: 0.1;
}

.mis-vis-sec .tx-bx .before img {
    min-width: 160px;
}

.mis-vis-sec .tx-bx .sub-tt {
    font-size: 16px;
    font-weight: bold;
}

.mis-vis-sec .tx-bx .tt {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: bold;
}

.mis-vis-sec .tx-bx p {
    font-size: 16px;
    line-height: 24px;
}

.award-sec{
    float: left;
    width: 100%;
    padding: 50px 0;
    background: url(../images/abt-img/bg.jpg);
    position: relative;
    z-index: 1;
}

.award-sec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    z-index: -1;
}


.award-sec .title-img{
    max-width: 550px;
    width: 100%;
    margin: 0 auto 20px;
}

.gallery-bx{
    position: relative;
    overflow: hidden;
}

.gallery-bx .img-bx{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 6px 0px;
}

.gallery-bx img{
    display: block;
    height: 380px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.career-page .gallery-bx p{
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    color: #414141;
    margin-top: 10px;
    font-weight: 600;
    padding: 0 10px;
}

.award-sec .gallery-bx img{
    height: auto;
}

.pillars-sec {
    float: left;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.pillars-sec .main-tt {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 80px;
}

.ceo-bx .img-bx {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-bx .img-bx img {
    margin-top: -55px;
}

.ceo-bx .tx-bx {
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    text-align: center;
    width: calc(100% - 30px);
    margin: -60px auto 25px;
    background: white;
    position: relative;
    z-index: 1;
    min-height: 222px;
}

.ceo-bx .tx-bx p {
    margin-bottom: 0;
}

.ceo-bx .tx-bx .tt {
    font-size: 18px;
    margin-bottom: 5px;
}

.ceo-bx .tx-bx .sub-tt {
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-pink);
}

.our-team-sec {
    float: left;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 60px;
}

.our-team-sec .main-tt {
    margin-bottom: 25px;
    font-size: 30px;
    font-weight: bold;
}

.team-bx {
    padding: 12px;
    border-radius: 5px;
    background-color: #f2fbff;
}

.team-bx .img-bx {
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.team-bx .tx-bx .tt {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 7px;
}

.team-bx .tx-bx .sub-tt {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.team-bx .tx-bx p {
    color: #444;
    margin-bottom: 0;
}

.our-team-sec .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
}

.our-team-sec .owl-prev svg,
.our-team-sec .owl-next svg {
    height: 26px;
    width: 26px;
}

.our-team-sec .owl-next svg {
    margin-left: 20px;
}

.achive-sec {
    float: left;
    width: 100%;
}

.achive-sec .img-bx {
    position: relative;
}

.achive-sec .img-bx img {
    width: 100%;
    height: auto;
    display: block;
}

.achive-sec .vd-play-icon {
    position: absolute;
    top: 4%;
    right: 52%;
    z-index: 2;
    text-align: center;
    color: #fff;
    display: block;
    margin: auto;
    transition: all .5s;
}

.achive-sec .vd-play-icon svg {
    width: 80px;
    height: 80px;
}

.achive-sec .main-tt {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
}

.achive-sec p {
    font-size: 16px;
    line-height: 24px;
    color: #444;
}

.team-bx.test-bx .tx-bx .tt {
    color: #282f3b;
    font-size: 16px;
    margin: 10px 0;
    font-weight: 600;
}

.team-bx.test-bx .tx-bx span {
    color: var(--dark-pink);
}


.test-bx .tx-bx .star img {
    width: 90px;
}

.career-page {
    float: left;
    width: 100%;
    padding: 50px 0;
    background-color: #f3f3f3;
}

.career-page p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
}

.career-page ul{
    list-style: circle;
    font-size: 16px;
    line-height: 24px;
    color: #474d6a;
}

.career-page .main-tt {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 28px;
    color: #232426;
    text-align: center;
}

.career-page .main-tt span {
    color: var(--dark-pink);
}

.current-opening-bx {
    background: #fff;
    border-radius: 20px;
    padding: 24px 24px 20px;
    transition: all .2s linear;
}

.current-opening-bx:hover {
    box-shadow: 0 6px 12px rgba(30, 10, 58, .04);
    transform: scale(1.01);
}

.current-opening-bx .tt a {
    font-size: 17px;
    margin-bottom: 9px;
    font-weight: 700;
    color: #111;
    transition: all 0.2s ease-in-out;
}

.current-opening-bx p {
    color: #474d6a;
    font-size: 16px;
    line-height: 24px;
}

.current-opening-bx:hover .tt a {
    color: var(--dark-pink);
}

.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: #474d6a;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 3px;
}

.career-page .pointer-li li strong {
    color: #2d2d2d;
}

.custom-from-row {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 12px;
    position: relative;
}

.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;
}


.bottomMenu {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    justify-content: end;
}

.bottomMenu li a,
.bottomMenu li {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: 0.2s;
}


.bottomMenu li a:hover {
    color: var(--dark-pink) !important;
}

.bottomMenu li a::before {
    content: "|";
    position: absolute;
    top: 0px;
    left: -14px;
    font-weight: 300;
    font-size: 12px;
    color: var(--light-text);
}

.bottomMenu li:first-child a:before {
    content: none;
}

.masonry {
    /* Masonry container */
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
    -moz-column-gap: 20px;
    -webkit-column-gap: 20px;
    column-gap: 20px;
}

.masonry .item {
    display: inline-block;
    background: #fff;
    padding: 0;
    margin: 0 0 20px;
    width: 100%;
    -webkit-transition: 1s ease all;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-shadow: 2px 2px 4px 0 #ccc;
}

.masonry .item img {
    max-width: 100%;
}

@media only screen and (max-width: 320px) {
    .masonry {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }
}

@media only screen and (min-width: 321px) and (max-width: 768px) {
    .masonry {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
    .masonry {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

.search-box.search-elem {
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgb(43 109 166 / 90%);
    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(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.search-close:hover {
    background: var(--blue);
    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: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--light-pink);
    outline: 0;
    border: 0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
}

.search-btn:focus,
.search-btn:hover {
    background: var(--blue);
    color: #fff;
}


.translate {
    border: 1px solid #eee;
}

.goog-te-gadget-simple {
    display: flex !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 5px 10px !important;
    border-radius: 1px;
}

.goog-te-gadget {
    font-family: var(--font) !important;
}

.translate a{
    font-size: 14px !important;
    color: #555 !important;
}

/**/

.history-intro {
    background: #053e8f;
    padding-top: 60px;
    position: relative;
    float: left;
  width: 100%;
}
.RILhistory {
    overflow-y: hidden;
    position: relative;
}
.apirationSec {
    padding-bottom: 100px;
}
.RILlogoSec {
    margin-bottom: 25px;
    text-align: center;
}
.historySecTitle {
    position: relative;
    display: block;
    text-align: center;
    font-size: 65px;
    line-height: 68px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 400;
}
.dashed-border {
    text-align: center;
}
.dashed-border img {
    display: block;
    margin: 0 auto;
}
.forty-five {
    text-align: center;
}

.forty-five h2 {
    font-size: 70px;
    line-height: 114px;
    font-weight: 400;
    color: var(--dark-pink);
}
.forty-five h2 span {
    font-size: 200px;
    font-weight: 500;
    line-height: 130px;
}
.mrl {
    margin: 50px 0 50px 0;
}
.quote {
    font-size: 40px;
    font-weight: 300;
    line-height: 51px;
    color: #fff;
    position: relative;
    margin: 0 170px;
}
.quote {
    margin: 0 28px;
}
.oil-plant, .founder__image {
    position: relative;
}
.oil-plant::before {
    position: absolute;
    background: url(../images/history/history-intro-bg.png) no-repeat bottom center;
    background-size: auto;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.oil-plant::after {
    background: linear-gradient(180deg, #053e8f 0%, #053e8f 68.75%, rgba(5, 62, 143, 0) 95.83%);
    transform: rotate(-180deg);
    height: 144px;
    content: "";
    position: absolute;
    bottom: -55px;
    width: 100%;
}
.founder__chairman {
    text-align: right;
}
.founder__chairman h2 {
    font-size: 100px;
    font-weight: 400;
    line-height: 100px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 25px;
}
.founder__chairman h2 {
    font-size: 88px;
    line-height: 88px;
}
.RILhistory h5 {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-family: "JioType";
    font-weight: 300;
}
.RILhistory h5 {
    padding-left: 0;
}
.oil-plant, .founder__image {
    position: relative;
}
.mammothSec h6 {
    font-family: "JioType";
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    margin: 50px 0 0 0;
    color: #fff;
}
.mammothSec h4 {
    font-size: 60px;
    line-height: 100px;
    background:var(--dark-pink);
    display: inline-block;
    padding: 0 85px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-top: 15px;
    color: #fff;
}
.mammothSec {
    text-align: center;
    color: #fff;
}
.mammothSlider {
    margin-top: 50px;
    padding: 0 85px;
    position: relative;
}
.mammothSlider .boxStyle {
    display: flex;
}
.mammothSlider .boxStyle .leftSide {
    width: 50%;
}
.leftSide {
    z-index: 1;
}
.mammothSlider .boxStyle .leftSide img {
    width: 100%;
}
.mammothSlider .boxStyle .rightSide {
    width: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 50px;
    border-radius: 0 4px 4px 0;
}
.mammothSlider .boxStyle .rightSide h3 {
    color: var(--dark-pink);
    line-height: 38px;
    font-size: 50px;
    margin-bottom: 35px;
}
.mammothSlider .boxStyle .rightSide p {
    color: #4d4d4d;
    font-size: 22px;
    line-height: 30px;
    text-align: left;
}
.year1977 {
    position: relative;
    background: #fdf2df;
    text-align: center;
    margin-bottom: 60px;
}
.year1977:after {
    content: "";
    background: #f8ead2;
    width: 100%;
    height: 115px;
    position: absolute;
    bottom: -60px;
    left: 0;
}
.historyYear {
    font-size: 120px;
    line-height: 120px;
    margin-bottom: 40px;
    color: var(--dark-pink);
        display: block;
        text-align: center;
        position: relative;
}
.wealth-creation {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    align-items: center;
}
.wealth-creation-text {
    text-align: left;
    width: 55%;
}
.wealth-creation-text {
    padding-left: 70px;
}
.wealth-creation-text h4 {
    font-family: "JioType";
    font-weight: 300;
    color: #4d4d4d;
    font-size: 54px;
    margin-bottom: 15px;
}
.wealth-creation-text h5 {
    background: linear-gradient(90deg, #ceab72 40.73%, rgba(206, 171, 114, 0) 171.02%);
    font-size: 72px;
    line-height: 100px;
    color: #fff;
    font-weight: 400;
    padding: 0 20px;
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
}
.wealth-creation-text p {
    font-size: 23px;
    color: #4d4d4d;
    line-height: 35px;
    padding-right: 40px;
}
.crtifict-box {
    width: 45%;
    position: relative;
    z-index: 99;
}
.crtifict-box img {
    width: 100%;
}

.year1980 {
    background: url(../images/history/1980Bg.png) no-repeat !important;
    background-size: cover !important;
}
.year1966 {
    position: relative;
    background: url(../images/history/Textile-Industries.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 120px;
    text-align: center;
}

.year1966 h5 {
    font-size: 35px;
}
.year1966.year1980 {
    background: url(../images/history/global-energy.jpg) no-repeat center;
    background-size: cover;
    border: 27px solid var(--dark-pink);
    position: relative;
    text-align: center;
}
.year1966.year1980 h4 {
    font-size: 60px;
}
.year2002 {
    position: relative;
    text-align: center;
    background: url(../images/history/telecom.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
}
.year2002.year2002-bg {
    background: url(../images/history/year2000Bg.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 140px;

    text-align: center;
}
.year2009Bg {
    background: url(../images/history/history2009Bg.png) no-repeat;
    text-align: left;
    position: relative;
    background-size: cover;
    padding: 0 0 260px 0;
}

.year2020-22 {
    position: relative;
    text-align: center;
    background: url(../images/history/Digital_Transformation.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 90px;
}

#yr2016-17, #yr2020-21 {
    overflow: hidden;
}
.year2009 {
    background: var(--dark-pink);
    position: relative;
    padding: 27px;
    text-align: left;
}
.bothYear h4 {
    background:var(--dark-pink);
    color: #fff;
    line-height: 70px;
    margin: 0;
    display: inline-block;
    padding: 25px 40px;
    border-radius: 4px;
}

.year2002 .container,.year2020-22 .container {
    position: relative;
    z-index: 9;
}

.year2002 .historyYear {
    margin-bottom: 70px;
    margin-top: 30px;
}

.bothYear h6 {
    margin: 0 0 15px 0;
}

.year2002 .globalBox,.year2020-22 .globalBox {
    margin-top: 40px;
    display: flex;
}

.year2002 .globalBox .box,.year2020-22 .globalBox .box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    padding: 20px 15px;
    margin: 0 25px;
    flex: 1;
}

.year2002 .globalBox .detail,.year2020-22 .globalBox .detail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 25px;
}

.year2002 .globalBox .detail h5,.year2020-22 .globalBox .detail h5 {
    color: var(--dark-pink);
    font-size: 40px;
    line-height: 38px;
    margin-bottom: 30px;
    padding-left: 0;
    font-family: "Playfair Display",serif;
}

.year2002 .globalBox .detail p,.year2020-22 .globalBox .detail p {
    padding: 0;
    color: #1f1919;
    font-size: 20px;
    line-height: 27px;
    text-align: left;
}

.year2005 h4 {
    font-size: 60px;
    color: var(--dark-pink);
}

.year2005 {
    background: url(../images/history/year2005BG.jpg) no-repeat;
    background-size: cover;
    padding-bottom: 80px;
    border: 27px solid var(--dark-pink);
}

.year2005:before {
    background: rgba(0,0,0,0.6);
}

.year2004 {
    padding-bottom: 120px;
}

.year2006 {
    background: var(--dark-blue) !important;
}

.year2006 .historyYear {
    margin: 10px 0 50px 0;
}

.RILhistory h5 span {
    font-size: 50px;
}

.year2006 .yearLeftSide {
    z-index: 9;
}

.year2006 .yearLeftSide {
    padding-left: 0;
    margin-bottom: 250px;
    padding-top: 100px;
}

.RILhistory .year2004#yr2006 .yearLeftSide h6 {
    width: auto;
    width: auto;
  display: inline-block;
  padding: 0 20px;
  border-radius: 12px;
}

.year2006 .historyTwoSide {
    margin-top: 50px;
}

.RILhistory .year2006 h5,.RILhistory .year2006 h6,.RILhistory .year2006 p {
    color: #fff;
}

.RILhistory .year2006 h5 {
    margin-bottom: 20px;
}

.RILhistory .year2006 h5 span {
    text-transform: none !important;
    line-height: normal;
}

.RILhistory .year2006 h6 {
    font-size: 56px;
    letter-spacing: 2px;
    background: #ceab72 !important;
}

.year2009.bothYear h4 {
    background: transparent;
    color:var(--dark-pink);
    margin-bottom: 20px;
    padding: 0;
}

.year2009.bothYear p {
    padding: 10px 200px 0 0;
}

.year2004.year2010 .yearLeftSide {
    padding-left: 0;
}

.year2016-bg {
    padding-bottom: 150px;
    text-align: center;
}

.year2020-21.bothYear p {
    font-size: 24px;
    margin-top: 30px;
    padding: 0;
    color: #fff;
}

.year2020-21.bothYear p span {
    display: block;
}

.year2020-21 .container {
    position: relative;
    z-index: 9;
}

.year2020-21 .year2009Bg {
    padding: 0 0 50px 0;
}

.againstDetail {
    border: 1px dotted #fff;
    border-radius: 10px;
    padding: 10px 8px;
    width: 1060px;
    margin: 40px auto 0;
    max-width: 100%;
}

.againstDetail ul {
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 40px 34px 20px;
}

.againstDetail ul li {
    font-size: 21px;
    line-height: 27px;
    color: #4d4d4d;
    list-style: none;
    background: url(../images/history/pointIcon.png) no-repeat left center;
    margin-bottom: 16px;
    padding-left: 30px;
    padding-bottom: 16px;
    position: relative;
    background-position: left 7px;
}

.againstDetail ul li:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 84%;
    border-bottom: 1px dotted #ccc2c2;
    content: "";
}

.againstDetail ul li:last-child:after {
    content: none;
}

.year2020-21 .year2009Bg {
    background: url(../images/history/year202021BG.jpg) no-repeat center center;
    background-size: cover;
}

.year2020-21 .blackOverlay {
    background: rgba(0,0,0,0.7);
}

.journey2020 {
    text-align: center;
    background: url(../images/history/history-intro-bg.png) no-repeat bottom center;
    overflow: hidden;
}

.journey2020 .flexSide {
    display: flex;
    justify-content: space-between;
    padding: 0 240px;
}

.journey2020 .historyYear {
    margin-bottom: 30px;
}

.journey2020.bothYear h6 {
}

.journey2020.bothYear h4 {
    background: transparent;
    color:var(--dark-pink);
}

.journey2020.bothYear .year2020-22 h4 {
    background:var(--dark-pink);
    color: #fff;
}

.journey2020 .netZero {
    display: flex;
    margin-top: 15px;
    position: relative;
}

.journey2020 .netZero .rilLogoAfter {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 50%;
    transform: translate(-50%,-50%) !important;
}

.journey2020 .netZero .rilLogoAfter img {
    width: 80px;
}

.journey2020 .detail,.journey2020 .imgBox {
    flex: 1;
}

.journey2020 .detail ul {
    background: var(--dark-pink);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 5px;
    margin: 0 12px;
    padding: 25px 30px 0;
}

.journey2020 .imgBox img {
    width: 100%;
    border-radius: 5px;
}

.journey2020 .detail ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px dotted #fff;
    margin-bottom: 15px;
    padding-bottom: 3px;
}

.journey2020 .detail ul li h6 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 5px 0;
    line-height: normal;
}

.journey2020 .detail ul li p {
    padding: 0;
    text-align: left;
    font-size: 21px;
    line-height: 26px;
    color: #fff;
}

.journey2020 .detail ul li:last-child {
    border: 0;
}

.journey2020 .aboutch__block {
    background: transparent;
    position: relative;
    padding: 0 220px;
    margin-top: 100px;
    padding-top: 15px;
}

.journey2020 .aboutch__block p {
    position: relative;
    font-size: 40px;
    line-height: 51px;
    padding: 0;
    margin-bottom: 50px;
}

.journey2020 .aboutch__block:before {
    content: none;
}

.journey2020 .aboutch__block h5 {
    font-family: "Playfair Display",serif;
    font-size: 40px;
    margin: 0;
}

.journey2020 .aboutch__block h4 {
    font-family: "JioType";
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
}

.journey2020 .aboutch__block h4 span {
    display: block;
}

.wealth-creation {
    max-width: 100%;
}

.wealth-creation-text {
    padding-left: 70px;
}

.crtifict-box img {
    width: 100%;
}

.year2004#yr2004 .yearLeftSide {
    padding-left: 0;
    padding-top: 0;
}

.RILhistory .year2004#yr2004 p {
    padding-right: 0;
    margin-top: 0px;
    padding-left: 4px;
}

.hisBgImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.giants-club img {
    position: relative;
    z-index: 1;
}

.hisBgImg img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
}
.year1966.year1980, .year2005#yr2002-05 {
    background: none !important;
    padding-bottom: 65px;
}
.year2005:before {
    content: none !important;
}
.year1966 .container {
    position: relative;
    z-index: 2;
}
.year1966.year1980 h4 {
    font-size: 72px;
    color: var(--dark-pink);
}

.blackOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.year1966 .blackOverlay{
    background: rgba(0, 0, 0, 0.4);
}

#yr2004.year2004 {
    padding-bottom: 140px;
    overflow: hidden;
}

.year2004#yr2010 {
    padding-bottom: 280px;
}

.wealth-creation-text p {
    padding-right: 100px;
}

#yr2010 .historyTwoSide video {
    flex: 1.1;
    position: relative;
    z-index: 9;
    border-radius: 6px;
}

.historyTwoSide {
    margin-top: 0;
}

.historyPage h1 {
    padding: 0;
}

.mammothSlider .owl-next.disabled,.mammothSlider .owl-prev.disabled {
    background: #869791 !important;
    opacity: 0.7 !important;
}

.global-energy .slick-arrow.slick-disabled {
    opacity: 0.7 !important;
    cursor: default;
}

.global-energy .slick-prev.slick-disabled {
    background: #869791 url(../images/history/prev-slider.png) no-repeat center !important;
}

.global-energy .slick-next.slick-disabled {
    background: #869791 url(../images/history/next-slide.png) no-repeat center !important;
}

#yr2016-17,#yr2020-21 {
    overflow: hidden;
}

.RILhistory #yr2004.year2004 h5 {
    margin-bottom: 10px;
    padding-left: 4px;
}

.RILhistory #yr2004.year2004 h5 span {
    display: block;
    font-weight: 300;
    font-size: 50px;
    line-height: 60px;
}

.RILhistory #yr2020 h5 span {
    line-height: normal;
}

#yr2020 .historyYear {
    margin-bottom: 50px;
}


/**/
.m-minus {
    margin-top: -30px;
}

.historyButton {
    position: fixed;
    top: 20%;
    left: 25px;
    z-index: 9;
    margin: 0;
    padding: 0;
}
.tabfixed {
    position: fixed;
    top: 25%;
    transform: translate(0, -50%);
}

.Rilyr1957 .Rilyear1957,.Rilyr1977 .Rilyear1977,.Rilyr1980 .Rilyear1980,.Rilyr2000 .Rilyear2000,.Rilyr2002 .Rilyear2002,.Rilyr2004 .Rilyear2004,.Rilyr2006 .Rilyear2006,.Rilyr2009 .Rilyear2009,.Rilyr2010 .Rilyear2010,.Rilyr2016 .Rilyear2016,.Rilyr2020 .Rilyear2020,.Rilyr2020-21 .Rilyear2020-21,.Rilyr2021 .Rilyear2021,.Rilyr2023 .Rilyear2023 {
    background: rgba(255,255,255,0.6);
}



/* .Rilyr1957 .historyButton,.Rilyr1977 .historyButton,.Rilyr1980 .historyButton,.Rilyr2000 .historyButton,.Rilyr2002 .historyButton,.Rilyr2004 .historyButton,.Rilyr2006 .historyButton,.Rilyr2009 .historyButton,.Rilyr2010 .historyButton,.Rilyr2016 .historyButton,.Rilyr2020 .historyButton,.Rilyr2020-21 .historyButton,.Rilyr2021 .historyButton,.Rilyr2023 .historyButton {
    display: block;
} */
.historyButton {
    display: none;
}

.scrolltop .historyButton {
    display: none !important;
}

.Rilyr1957 .Rilyear1957 span,.Rilyr1977 .Rilyear1977 span,.Rilyr1980 .Rilyear1980 span,.Rilyr2000 .Rilyear2000 span,.Rilyr2002 .Rilyear2002 span,.Rilyr2004 .Rilyear2004 span,.Rilyr2006 .Rilyear2006 span,.Rilyr2009 .Rilyear2009 span,.Rilyr2010 .Rilyear2010 span,.Rilyr2016 .Rilyear2016 span,.Rilyr2020 .Rilyear2020 span,.Rilyr2020-21 .Rilyear2020-21 span,.Rilyr2021 .Rilyear2021 span,.Rilyr2023 .Rilyear2023 span {
    opacity: 1;
}

.Rilyr1957 li.Rilyear1957 a:after,.Rilyr1977 li.Rilyear1977 a:after,.Rilyr1980 li.Rilyear1980 a:after,.Rilyr2000 li.Rilyear2000 a:after,.Rilyr2002 li.Rilyear2002 a:after,.Rilyr2004 li.Rilyear2004 a:after,.Rilyr2006 li.Rilyear2006 a:after,.Rilyr2009 li.Rilyear2009 a:after,.Rilyr2010 li.Rilyear2010 a:after,.Rilyr2016 li.Rilyear2016 a:after,.Rilyr2020 li.Rilyear2020 a:after,.Rilyr2020-21 li.Rilyear2020-21 a:after,.Rilyr2021 li.Rilyear2021 a:after,.Rilyr2023 li.Rilyear2023 a:after {
    background: url(../images/history/historySecButtonHvr.png) no-repeat !important;
    width: 8px;
    height: 26px;
    background-size: 100% !important;
}

.year2020 {
    position: relative;
    text-align: center;
    background: url(../images/history/telecom.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
    z-index: 1;
}

.year2020::before {
    background: linear-gradient(0deg,rgba(6,53,119,0.78),rgba(6,53,119,0.78));
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.year2020.bothYear h6 {
    margin: 0 0 10px 0;
}

.year2020 .historyYear {
    font-size: 150px;
    margin: 0 0 50px;
}
.RILhistory {
    overflow-y: hidden;
    position: relative;
}
.clear {
    clear: both;
}
.historyButton {
    position: fixed;
    top: 20%;
    left: 25px;
    z-index: 9;
}

.tabfixed {
    position: fixed;
    top: 50%;
    display: block;
}

.historyButton li {
    display: block;
    font-size: 15px;
    line-height: 14px;
    color: var(--dark-pink);
    margin-bottom: 6px;
    position: relative;
    border-radius: 50px;
}

.historyButton li a {
    color: var(--dark-pink);
    display: block;
    padding: 8px 20px 8px 32px;
    position: relative;
}

.historyButton li a:after {
    position: absolute;
    top: 4px;
    left: 12px;
    content: "";
    background: url(../images/history/historySecButton.png) no-repeat;
    width: 8px;
  height: 26px;
  background-size: 100%;
}

.historyButton li a:hover:after,.historyButton li.active a:after {
    background: url(../images/history/historySecButtonHvr.png) no-repeat;
    width: 8px;
  height: 26px;
  background-size: 100%;
}

.historyButton li span {
    opacity: 0;
}

.historyButton li:hover span {
    opacity: 1;
}

.historyButton li:hover,.historyButton li.active {
    background: rgba(190,146,68,0.2);
}

.historyButton li.active span {
    opacity: 1;
}
/****/
.factory {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 1074px;
    margin: 0 auto;
    background-color: #fff;
    align-items: center;
    margin-top: 30px;
    border-radius: 5px;
}

.factory-text {
    text-align: left;
    padding: 40px;
}

.factory-text h6 {
    font-weight: 500;
    font-size: 53px;
    color: #17427b;
}

.factory-text p {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 34px;
    color: #1f1919;
}

.factory img {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.topBorderStyle {
    position: relative;
    padding: 160px 0 50px 0;
    margin-bottom: 60px;
}

.topBorderStyle:after {
    position: absolute;
    content: "";
    top: 0px;
    left: 50%;
    width: 2px;
    height: 165px;
    background: url(../images/history/historyWhiteBigbdr.png) no-repeat;
    transform: translate(-50%,0%);
}

.bothYear h6 {
    font-size: 35px;
    line-height: 40px;
    color: #fff;
   text-align: center;
    font-weight: 300;
    margin: 0 0 40px 0;
}

.bothYear h4 {
    font-size: 62px;
    line-height: 65px;
    color: var(--dark-pink);
    margin-bottom: 50px;
}
.bothYear h4 {
    font-size: 56px;
    line-height: 60px;
    color: #fff;
}
.bothYear p {
    font-size: 22px;
    line-height: 35px;
    color: #fff;
    /*padding: 0 240px; */
}

.bothYear.slider2022 .slider p {
    padding: 0;
    font-size: 24px;
    line-height: 34px;
    color: #1f1919;
}
.yaer1985 {
    position: relative;
    background: #fdf2df;
}

.yaer1985 .topBorderStyle:after {
    background: url(../images/history/historyBlackBigbdr.png) no-repeat;
    width: 2px;
    height: 128px;
}

.forwordSec {
    position: relative;
    padding-top: 280px;
    padding-bottom: 160px;
}

.forwordSec .racingImg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.forwordSec .racingSec {
    padding-right: 140px;
    padding-left: 100px;
}

.RILhistory .yaer1985 h5 {
    color: #4d4d4d;
}

.RILhistory .yaer1985 h2 {
    background: linear-gradient(90deg,#ceab72 40.73%,rgba(206,171,114,0) 171.02%);
    color: #fff;
    padding: 0 20px;
    font-size: 72px;
    line-height: 101px;
    margin-bottom: 45px;
}

.racingSec p {
    font-size: 22px;
    line-height: 35px;
    padding-right: 540px;
}

.year1991 {
    background: var(--dark-pink);
    position: relative;
    padding: 27px;
}

.year1991 .topBorderStyle {
    margin-bottom: 120px;
}

.year1991Bg {
    background: url(../images/history/enhance-bg.jpg) no-repeat;
    text-align: center;
    position: relative;
    background-size: cover;
    padding: 0 0 120px 0;
    border-radius: 5px;
    border: 1px solid;
}

.b-radius {
    border-radius: 5px;
}

.year2004 {
    background: #eee;
    position: relative;
    padding-bottom: 180px;
}

.year2004 .topBorderStyle:after {
    background: url(../images/history/historyBlackBigbdr.png) no-repeat;
    width: 2px;
    height: 128px;
}

.year2004 .yearLeftSide {
    padding-left: 100px;
}

.RILhistory .year2004 h5 {
    color: #4d4d4d;
    font-size: 32px;
}

.year2004 .yaerRightSideImg img {
    flex: 1.1;
    position: relative;
    z-index: 1;
}

.RILhistory .year2004 .yearLeftSide h6 {
    background: linear-gradient(90deg,#ceab72 40.73%,rgba(206,171,114,0) 171.02%);
    width: auto;
    display: inline-block;
  padding: 0 20px;
  border-radius: 6px;
}

.RILhistory .year2004#yr2004 .yearLeftSide h6 {
    background: linear-gradient(90deg,#ceab72 40.73%,rgba(206,171,114,0) 171.02%);
    width: 640px;
    padding: 0px 0px 0 40px;
    margin-left: -40px;
}

.RILhistory .year2004 p {
    font-size: 22px;
    line-height: 35px;
    color: #4d4d4d;
    margin-top: 40px;
    padding-right: 80px;
}
.RILhistory h5 {
    font-size: 30px;
    color: #fff;
    line-height: 40px;
    font-family: "JioType";
    font-weight: 300;
}

.RILhistory .year2004#yr2004 .yearLeftSide h6 {
    background: linear-gradient(90deg, #ceab72 40.73%, rgba(206, 171, 114, 0) 171.02%);
    width: 640px;
    padding: 0px 0px 0 40px;
    margin-left: -40px;
}
.RILhistory .yearLeftSide h6 {
    font-size: 33px;
    line-height: 80px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
}
.RILhistory .year2006 h5, .RILhistory .year2006 h6, .RILhistory .year2006 p {
    color: #fff;
}
.year2006 .historyTwoSide {
    margin-top: 50px;
}
.yaerRightSideImg {
    display: flex;
    position: absolute;
    top: auto;
    left: 0;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}
.yaerRightSideImg .blankDiv {
    flex: 1;
}
.year2004 .yaerRightSideImg img {
    flex: 1.1;
    position: relative;
    z-index: 1;
}
.RILhistory .container {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

.RILhistory .year2006 h5 {
    margin-bottom: 20px;
}
.year2006 .yearLeftSide {
    z-index: 9;
    position: relative;
}
.year2006 .yearLeftSide {
    padding-left: 0;
    margin-bottom: 250px;
    padding-top: 100px;
}
.year2006 .yearLeftSide {
    margin-bottom: 40px;
}
.RILhistory .year2006 h5 span {
    text-transform: none !important;
    line-height: normal;
    font-size: 50px;
}
.RILhistory .yearLeftSide h6 {
    font-size: 33px;
    line-height: 80px;
    letter-spacing: 1px;
    padding: 0px 0px 0 8px;
    width: 441px;
}
.RILhistory .year2004 p {
    font-size: 22px;
    line-height: 35px;
    margin-top: 10px;
    padding-right: 80px;
}
#yr2020 ul {
    margin: 60px 0 0 0;
    padding: 0;
    text-align: center;
}

#yr2020 {
    padding-bottom: 0px !important;
    overflow: hidden;
}

#yr2020 ul {
    margin: 60px 0 0 0;
    padding: 0;
    text-align: center;
}

#yr2020 ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0 50px;
    margin-bottom: 30px;
}

#yr2020 .yaerRightSideImg {
    width: 85%;
}

.RILhistory .year2004#yr2020 p {
    margin-top: 20px;
}

.RILhistory .year2004#yr2020 p.border-btm {
    border-bottom: 1px dotted #ccc2c2;
    margin: 0;
    padding-bottom: 20px;
}

#yr2020.year2004 .yaerRightSideImg img {
    flex: none;
}

.RILhistory .year2004#yr2020 .yearLeftSide h6 {
    width: 840px;
    margin-bottom: 30px;
}
#yr2020 .yaerRightSideImg {
    width: 100%;
}
#yr2020.year2004 .yaerRightSideImg img {
    flex: none;
}
.year2004 .yaerRightSideImg img {
    flex: 1.1;
    position: relative;
    z-index: 99;
}
.year2020-21,.alCenter{
    text-align: center;
}

.againstDetail {
    border: 1px dotted #fff;
    border-radius: 10px;
    padding: 10px 8px;
    width: 1060px;
    margin: 40px auto 0;
    max-width: 100%;
}

.againstDetail ul {
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 40px 34px 20px;
}

.againstDetail ul li {
    font-size: 21px;
    line-height: 27px;
    color: #4d4d4d;
    background: url(../images/history/pointIcon.png) no-repeat left center;
    margin-bottom: 16px;
    padding-left: 30px;
    padding-bottom: 16px;
    position: relative;
    background-position: left 7px;
}

.againstDetail ul li:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 84%;
    border-bottom: 1px dotted #ccc2c2;
    content: "";
}

.againstDetail ul li:last-child:after {
    content: none;
}
.journey2020 .detail ul li p {
    font-size: 18px;
    line-height: 23px;
}

.bothYear #artCulture p{
    padding: 0;
    font-size: 24px;
    line-height: 34px;
    color: #1f1919;
}
.team-inner-block h3 a {
	    text-align: center;
    display: block;
    padding: 7px 0;
    background: #2e3092;
    color: #fff;
}
.team-inner-block h3 a p {     color: #ccc;
    margin-top: 8px;
    margin-bottom: 0;}
.team-block {
	width:100%;
	display:inline-block;
}