*{
    box-sizing: border-box;
    margin: 0; 
    padding: 0;
}
:root {
    --color-primary1:#EE1B24 !important;
}

iframe {
    height: 200px !important;
}


#primary {
    padding-top: 50px !important;
}
#theme-sidebar button[type="submit"], #footer button[type="submit"] {
    font-family: "Poppins", sans-serif !important;
}
.header-img, .single-page-img, .external-div .box-image-page img, .external-div {
    background: #e8f6ff !important;
    height: 130px !important;
}
.box-text h2 {
    color: #000 !important;
    font-size: 40px !important;
    font-weight: bold !important;
    text-transform: capitalize !important;
    letter-spacing: 0 !important;

}
.single-page-img, .featured-image {
    opacity: 1 !important;
}

.readmore-btn a {
    padding: 8px 10px;
}
body{
    font-family: "Poppins", sans-serif !important;
    font-size: 15px !important;
    /* line-height: 20px !important; */
}

.ol-cards,
.ol-cards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ol-cards {
  --flapWidth: 1rem;
  --flapHeigth: 5px;
  --iconSize: 1rem;
  --numberSize: 2rem;
  --colGapSize: 10px;
  width: min(100%, 40rem);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  padding-inline-start: var(--flapWidth);
  color: #222;
  counter-reset: ol-cards-count;
  list-style: none;
}
.ol-cards > li {
    display: flex
;
    grid-template-areas:
        "icon title nr"
        "icon descr nr";
    gap: 0 var(--colGapSize);
    align-items: center;
    padding: var(--colGapSize) var(--flapWidth) var(--colGapSize) 0;
    border-radius: 1rem 5rem 5rem 1rem;
    background-image: linear-gradient(to bottom right, #fff, #ffffff);
    counter-increment: ol-cards-count;
    filter: drop-shadow(0 0px 5px rgba(0, 0, 0, .03));
    box-shadow: 0 0px 10px rgba(0, 0, 0, .05);
}
.ol-cards > li > .icon img {
    width: 25px;
}
.ol-cards > li > .icon {
  grid-area: icon;
  background: var(--accent-color);
  color: white;
  font-size: var(--iconSize);
  width: calc(2 * var(--flapWidth) + var(--iconSize));
  padding-block: .5rem;
  border-radius: 0 5rem 5rem 0;
  margin-inline-start: calc(-1 * var(--flapWidth));
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  display: grid;
  place-items: center;
      height: auto;
}
.ol-cards > li > .icon::before {
  content: "";
  position: absolute;
  width: var(--flapWidth);

  height: calc(100% + calc(var(--flapHeigth) * 2));
  left: 0;
  top: calc(var(--flapHeigth) * -1);
  clip-path: polygon(
    0 var(--flapHeigth),
    100% 0,
    100% 100%,
    0 calc(100% - var(--flapHeigth))
  );
  background-color: var(--accent-color);
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.2)
  );
  z-index: -1;
}

/* .ol-cards > li > .title {
  grid-area: title;
  font-weight: 600;
  font-size: 1.25rem;
} */
.ol-cards > li > .descr {
  grid-area: descr;
}
/* .ol-cards > li::after {
  grid-area: nr;
  content: counter(ol-cards-count, decimal-leading-zero);
  color: var(--accent-color);
  font-size: var(--numberSize);
  font-weight: 700;
} */
@media (max-width: 40rem) {
  .ol-cards {
    --flapWidth: 1rem;
    --flapHeigth: 0.5rem;
    --iconSize: 2rem;
    --numberSize: 2rem;
    --colGapSize: 1rem;
  }
}

.icon-bx-wraper.style-1.align-items-center.cityLocation {
    gap: 10px;
}
.icon-bx-wraper.style-1.align-items-center.cityLocation .icon-bx {
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: 20px;
}
.disc-list {
  counter-reset: step; /* Allows us to show the step number */
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row; /* Put the discs in a row */
  flex-wrap: wrap; /* Allow them to wrap around as required */
  justify-content: center;
}

.disc-list li {
  counter-increment: step; /* Increment the list number */
  position: relative;
  width: 15.5rem;
  height: 15.5rem;
  text-align: center;
  border-radius: 50%; /* Make it a circle */
  background: #888;
  color: #888;
  display: flex;
  flex-shrink: 0; /* Don't allow the discs to squash inside the container */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 1.25rem 1.5rem 1.5rem; /* Right margin is the normal width - the border-width */
  overflow: visible;
}

/* Setup the rainbow colours on the discs 
  - #FA5753
  - #111
  - #EE1B24 
  - #934FC0
  - #C04F8E
  - #C04F5D
  - #C07E4F
  - #C0B54F
*/

.disc-list li:nth-child(1) {
  background: #FA5753;
  color: #FA5753;
}

.disc-list li:nth-child(2) {
  background: #111;
  color: #111;
}

.disc-list li:nth-child(3) {
  background: #FA5753;
  color: #FA5753;
}

.disc-list li:nth-child(4) {
  background: #000;
  color: #000;
}

.disc-list li:nth-child(5) {
  background: #C04F8E;
  color: #C04F8E;
}

.disc-list li:nth-child(6) {
  background: #C04F5D;
  color: #C04F5D;
}

.disc-list li:nth-child(7) {
  background: #C07E4F;
  color: #C07E4F;
}

.disc-list li:nth-child(8) {
  background: #C0B54F;
  color: #C0B54F;
}

/* The text inside the disc */
.disc-list li span {
  color: #FFF;
  display: block;
  font-weight: 500;
  /* font-size: 0.8rem; */
  max-width: 13rem;
  margin-left: auto;
  margin-right: auto;
}
.iconImage {
    width: 70px;
    margin: 0 auto 15px auto;
}
/* The step number */
/* .disc-list li span::before {
  content: counter(step);
  display: block;
  font-size: 1.65rem;
  margin-bottom: 0.1rem;
  font-weight: 200;
} */

/* The pointer container */
.disc-list li .pointer {
  position: absolute;
  right: -1.6rem;
  width: 1rem;
  height: 1rem;
}

/* The arrow-head itself */
.disc-list li .pointer path {
 fill: none;
 stroke-linejoin: round;
 stroke-width: 3px;
 stroke: currentcolor; /* This allows the outline to inherit the text color automatically */
}

/* Move the arrow head into position depending if it's an odd/even disc */
.disc-list li:nth-child(even) .pointer {
  bottom: 25%;
  transform: rotate(30deg);
  right: -20px;
}

.disc-list li:nth-child(odd) .pointer {
    top: 26%;
    transform: rotate(30deg);
    right: -20px;
}

.disc-list li::before,
.disc-list li::after {
  content: '';  
  position: absolute;
  border: 0.25rem solid;
  left: -1.5rem; /* Same as the disc-list li margin */
  right: -1.5rem;
}

/* The dotted elements */
.disc-list li:nth-child(even)::before {
  border-top-style: dotted;
  border-left-style: dotted;
  border-radius: 50%/100% 100% 0 0;
  border-bottom-color: transparent;
  top: -1.5rem;
  bottom: 50%;
}

.disc-list li:nth-child(odd)::before {
  border-bottom-style: dotted;
  border-right-style: dotted;
  border-top-color: transparent;
  border-radius: 50%/0 0 100% 100%;
  bottom: -1.5rem;
  top: 50%;
}

/* The solid line elements */
.disc-list li:nth-child(odd)::after {
  transform-origin: bottom center;
  transform: rotate(22.5deg);
  border-width: 0.2rem;
  border-style: solid;
  border-color: transparent;
  border-top-color: inherit;
  border-left-color: inherit;
  border-radius: 50%/100% 100% 0 0;
  border-bottom-color: transparent;
  top: -1.5rem;
  bottom: 50%;
}

.disc-list li:nth-child(even)::after {
  transform-origin: top center;
  transform: rotate(22.5deg);
  border-style: solid;
  border-width: 0.2rem;
  border-color: transparent;
  border-bottom-color: inherit;
  border-right-color: inherit;
  border-radius: 50%/0 0 100% 100%;
  bottom: -1.5rem;
  top: 50%;
}

.swm-btt-btn.active-progress a:hover{
    color: #fff;
}
.mb-30 {
    margin-bottom: 30px;
}
.blog1__item-thumb img {
    border-radius: 20px;
    width: 100%;
}
.blog1__item-category ul li {
    list-style: none;
}
.blog1__item-category ul li a {
    background: #EE1B24;
    padding: 0px 14px;
    display: inline-block;
    border-radius: 6px;
    margin-top: 29px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
}
.blog1__item-title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    text-transform: uppercase;
    color: #000;
    display: block;
    width: 100%;
}
.blog1__item-title a {
    background: linear-gradient(#000 0%, #000 98%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: left 100%;
    color: #000;
    transition: all 0.3s ease-in-out;
}
.blog1__item-content-border {
    border-bottom: 1px solid rgba(69, 48, 48, 0.14);
    margin-bottom: 11px;
    margin-top: 29px;
    background: rgba(69, 48, 48, 0.14);
    display: block;
}
.blog1__item-meta ul li {
    list-style: none;
    font-weight: 500;
    color: #453030;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
}
.blog1__item-meta ul li i {
    margin-right: 8px;
}
.blog1__item-meta a i {
    color: #453030;
    transform: rotate(-50deg);
    transition: all 0.3s ease-in-out;
}
.blog1__item-title a:hover {
    color: #453030;
    background-size: 100% 2px;
}
.blog1__item:hover .blog1__item-meta a i {
    transform: rotate(0deg);
}


.dz-meta {
    margin-bottom: 0;
    margin-top: 25px;
    margin-right: 35px;
}
.dz-meta ul {
    margin: 0;
    padding: 0;
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}
 .dz-meta li {
    background-color: #EE1B24;
    color: #fff;
    border-radius: 15px;
    font-weight: 500;
    font-size: 13px;
    padding: 5px 15px 5px 23px;
    line-height: 1.4;
    position: relative;
        display: inline-flex
;
    margin-right: 5px;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.dz-meta li::after {
    content: "";
    position: absolute;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: #fff;
    left: 10px;
}
.icon-bx-wraper.style-3.eventsbox .btn-square {
    bottom: -70px;
}
.eventImg {
    box-shadow: 0 4px 60px rgba(18, 96, 254, 0.12);
    border-radius: 20px;
    overflow: hidden;
}
.eventImg img {
    width: 100%;
}
.eventDetails {
    box-shadow: 0 4px 60px rgba(18, 96, 254, 0.12);
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-left: 20px;
    height: 100%;
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
.eventdateTime
 {
    border: 1px solid rgba(217, 217, 217, 0.89);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 50px;
    gap: 24px;
    margin-bottom: 10px;
    width: 80%;
}
.date {
    position: relative;
}
.date::before {
    content: "";
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    height: 21px;
    width: 1px;
    background-color: #D9D9D9;
}
h3.eventTitle {
    font-size: 24px;
    margin-bottom: 16px !important;
    font-weight: bold;
}
.eventInfo {
    border-right: 1px solid rgb(217, 217, 217, 1);
    padding-right: 40px;
    margin-right: 40px;    width: 84%;
}
.eventButton {
    width: 16%;
}
.joinUS{
     background: url(../img/cta_bg.svg) no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.joinUS h2{
    font-size: 55px;
    margin-bottom: 20px !important;
    font-weight: bold !important;
    color: #fff;
}

 .eventsConferencebg{
       background: url(../img/banner_image.jpg) no-repeat;
     background-position: center;
    background-size: cover;
    position: relative;
    padding: 150px 0;
 }
.eventsConferencebg::before{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(255, 0, 0, 0.4);
    content:'';
}
.eventsConferencebg h1{
    color: #fff;
    font-size:54px;
    font-weight:bold;
    margin-bottom:20px !important;
}
.eventsConferencebg h4{
    color: #fff;
    font-size:24px;
    line-height:30px;
    margin-bottom:20px !important;
}

.joinUS h4{
    font-size: 24px;
    margin-bottom: 20px !important;
    font-weight: bold !important;
}
.td-cta-2-wrap
 {
    padding: 30px 70px;
}

.bg-position {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mb-20 {
    margin-bottom: 20px;
}
.td-cta-2-subtitle {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}
.td-cta-2-title {
    font-weight: 600;
    font-size: 32px;
    color: #fff;
}
.mb-25 {
    margin-bottom: 25px;
}
.p-relative {
    position: relative;
}
.td-cta-2-form .td-input {
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    text-transform: lowercase;
    color: #787878;
    height: 56px;
    border-radius: 100px;
    border: 1px solid transparent;
    background: #fff;
        padding-left: 26px;
    padding-right: 26px;line-height: 56px;
} 
.td-cta-2-form .cta-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #FFF;
    background: #EE1B24;
    display: inline-block;
    padding: 8px 27px;
    border-radius: 100px;
}


.swm-btt-btn.active-progress {
    visibility: visible;
    opacity: 1;
    z-index: 999998;
}
.swm-btt-btn-dark {
    color: #fff;
    background: #EE1B24;
    fill: #ffffff;
}

.swm-btt-btn {
    position: fixed;
    font-size: 12px;
    right: 0;
    bottom: 72px;
    cursor: pointer;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms linear, margin-right 0ms;
    display: flex
;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    padding: 15px 10px;
    border-radius: 10px 0 0 10px;
    font-weight: 400;
    gap: 7px;
    line-height: 10px;
}
.swm-btt-btn:before {
    right: 0;
    left: initial;
    border-radius: 0;
    border-bottom-right-radius: 15px;
    box-shadow: 0 15px 0 0 #EE1B24;
    top: -30px;
    bottom: initial;
}
.swm-btt-btn:before, .swm-btt-btn:after {
    display: block;
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: 0;
    height: 30px;
    width: 15px;
}
.swm-btt-btn span {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-weight: 400;
}
.swm-btt-btn:after {
    right: 0;
    left: initial;
    border-radius: 0;
    border-top-right-radius: 15px;
    box-shadow: 0 -15px 0 0 #EE1B24;
    top: initial;
    mask: none;
    bottom: -30px;
    background: none;
    padding: 0;
}


  .textDate {
      background: #EE1B24 !important;
      color: #fff !important;
      padding: 4px 8px;
      border-radius: 50px;
  }


.aiVideo h3 {
    position: absolute;
    top: 80%;
    width: 100%;
    text-align: center;
    height: 100%;
    font-size: 45px;
    font-weight: bold;
    color: #fff;
}


.heroText {
    position: absolute;
    bottom: 20%;
    width: 100%;
    color: #fff;
}
.heroText h1{
    font-size: 56px;
    font-weight: bold !important;
    margin-bottom: 20px !important;
}
.heroText h4{
    font-size: 26px;
    font-weight: bold !important;
    margin-bottom: 20px !important;
}
.hero::before{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(0, 0, 0, 0.2);
    content:'';
}
.section.mobBg{
    background: url(../img/mobbg.jpg) no-repeat;
    /* height: 400px; */
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 130px 0 !important;
}
.mobBg h2{
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px !important;
}
.whyIt li {
    list-style: none;
    padding-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.whyIt li img
 {
    width: 70px;
    height: 70px;
    background: red;
    padding: 1.5px;
    border-radius: 50px;
}
ul.newReview > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;padding-bottom: 10px;
}
li.comment-item img {
    width: 60px;
}
ul.newReview > li p{
    margin: 0;
}
    .aiBg {
    background: url(../img/aibg.jpg) no-repeat;
    /* height: 400px; */
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 150px 0;
}
.aiBg::before{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height:100%;
    background: rgba(255, 0, 0, 0.5);
    content:'';
}
.aiBg h1{
    color: #fff;
    font-size:54px;
    font-weight:bold;
    margin-bottom:20px !important;
}
.aiBg h4{
    color: #fff;
    font-size:24px;
    line-height:30px;
    margin-bottom:20px !important;
}






.cameraIcon{
    padding: 10px 20px !important;
}
.themeBtn {
    border: 100px;
    padding: 10px 20px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: #EE1B24;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius:10px;
    position: relative;
    display: inline-block;
    overflow: hidden;
        z-index: 1;
        opacity: 1 !important;
       
}

.themeBtn::before, .themeBtn::after {
    content: "";
    background-color: #000;
    height: 50%;
    width: 0;
    position: absolute;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.themeBtn::before {
    top: 0;
    left: 0;
    right: auto;
}
.themeBtn::after {
    bottom: 0;
    right: 0;
    left: auto;
}
.themeBtn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}
.themeBtn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}



.nav-menu {
    padding-left: 18% !important;
    justify-content: start !important;
}

.video-icon {
    position: absolute;
    left: 50%;
    top: 28%;
    right: 50%;
    margin: 0;
}
.video-icon a {
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background-color: #EE1B24;
    display: inline-block;
    color: #fff;
    text-align: center;
    line-height: 90px;
    font-size: 35px;
    cursor: pointer;
}


.logoutBtn.me-1.plt {
    padding: 10px 10px !important;
}
.listView{
    padding-left: 20px;
}
.listView li{
    list-style: disc;
    padding-bottom:7px; 
}
.listView li ul{
    padding-left: 20px;
    padding-top: 5px;
}
.listView li ul li{
    list-style: circle;
}

/* .bookNow {
    position: fixed;
    right: 10px;
    bottom: 50px;
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    writing-mode: sideways-lr;
} */
.nav-menu {
    gap: 5px !important;
}
.bookBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60%;
    left: auto;
    right: auto;
    width: 100%;
    bottom: auto;
}
.nav-menu {
    justify-content: center;
}
ul.nav-menu-right {
    display: flex;
    justify-content: end;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 20px; transition: all 0.2s ease-in-out;
}
.wowmenu.tiny {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    opacity: 1;
    visibility: visible;
    width: 100%;
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 0;
}
.wowmenu.tiny .logo {
    height: 140px;
}

.wowmenu.tiny  .navigation{
    padding: 20px 0;
}
/* .wowmenu.tiny  ul.nav-menu-right {
    top: 10px;
} */
.textBreak {
    word-break: break-all;
}
.box-image-page {
    z-index: 0 !important;
}
.redText{
    color: #EE1B24;
}
.red{
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    background:#EE1B24;
    padding-right: 10px;
}
.lightblue{
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    background:#e8f6ff;
    padding-right: 10px;
}
.darkblue{
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    background:#009bff;
    padding-right: 10px;
}
.green{
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50px;
    background:#00ff7e;
    padding-right: 10px;
}



.message.user-message {
    padding: 16px;
    margin: 1rem .5rem 1rem auto;
    width: fit-content;
    max-width: 86%;
    background: hsla(240, 6%, 90%, .5);
    border-radius: 20px 20px 0px 20px;
    color: #000;
        word-break: break-word;
}
.message.bot-message {
    width: fit-content;
    max-width: 90%;
    margin: 0.5rem;
    background: #e8f6ff;
    padding: 16px;
    color: #000;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    flex-direction: column;
    border-radius: 20px 20px 20px 0;
       word-break: break-word;
}
.message.bot-message table{
    width: 100%;    table-layout: fixed;
}
.message.bot-message table th, .message.bot-message table td{
    padding: 5px;
}
.message.bot-message li{
    list-style: disc;    padding-bottom: 5px;
}
.message.bot-message ul, .message.bot-message ol{
    padding-left: 20px;
}

li.hideLeftBar span:first-child {
    font-weight: 600;
}

li.hideLeftBar span {
    display: flex;
    align-items: end;
    justify-content: end;
    font-size: 12px;
    word-break: break-all;
    word-wrap: break-word;
    white-space: break-spaces;
    text-align: right;
}
input.error {
    border: 1px solid #ef4444 !important;
    background: #fef2f2;
}
.error{
    color: #ef4444; font-size: 14px;
}
input.inputSMS {
    padding: 0 140px 0 20px !important;
}
.mickBtn{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #0d0d0d1a;
    background: transparent;
    color: #222;
}
.voiceBtn{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.profileEdit{
        max-width: 100px;
    position: relative;
    z-index: 1;
}
.profileEditbtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
}
.f20{
    font-size: 20px;
}
.f18{
    font-size: 18px;
}
.fw-500{
    font-weight: 500;
}
.aboutBtn {
    background: #EE1B24;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
}
.aboutBtn:hover{
 background: #000;
  color: #fff;
}
ul, ol{
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
.logo {
    height: 190px;
    position: absolute;
    top: 0;
    transition: all 0.2s ease-in-out;
    z-index: 1;
}
.nav-sticky.navbar-custom .logo {
height: 140px;

}

.loginHeader {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}
.mt-50{
    margin-top: 50px;
}
li.header-shop-cart>a {
    padding-right: 10px;
}
span.mini-cart-count {
    position: absolute;
    right: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    background-color: #EE1B24;
    color:#fff;
    box-shadow: 0 5px 12.09px .91px #47337f24;
}
.topRight li{
    position: relative;
    list-style: none;
}
/* .topRight li i{
font-size: 28px;
} */

.fw600{
    font-weight: 600;
}
.fw500{
    font-weight: 500;
}
.f16{
    font-size: 16px;
}




.list-group {
    font-size: 14px;
}
.col-xl p{
    font-size: 14px;
}
.w-5 {
    width: 1.25rem;
}
.h-5 {
    height: 1.25rem;
}

h4{
    font-weight: 600 !important;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Rajdhani", sans-serif;
    margin: 0 !important;
}

.heading {
font-size:36px;
font-weight: 700;
color: #000;
/* margin-bottom: 36px !important; */
}

.pt-100{
    padding-top: 0px;
}
.our-content {
    color: rgb(255, 255, 255);
    border-radius: 25px;
    padding: 33px 27px 56px 40px;
    background: linear-gradient(to right, #EE1B24 0%, #ee7a77 100%);
    text-align: center;
}
.client-info {
    overflow: hidden;
    margin: -30px 20px 30px;
    background: rgb(255, 255, 255);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, .08);
}
.client-img {
    float: left;
    width: 63px;
    margin-right: 13px;
}
.client-img img {
    border-radius: 50%;
}
.client-name {
    text-align: left;
    margin-top: 7px;
    overflow: hidden;
}
.client-name h5 {
    margin-bottom: 3px;
}
.reaBg{
    background: #e8f6ff;
    position: relative;
}
.reaBg .heading{
    color: #000;
}
.reaBg .textWhite{
    color: #000; 
}


/* .reaBg:before {
    content: "";
    position: absolute;
    left: 0;
    top: -41px;
    width: 100%;
    height: 41px;
    background-image: url(../img/features_shape01.png);
    background-repeat: repeat-x;
    background-position: center;
}
.reaBg:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    height: 50px;
    background-image: url(../img/features_shape02.png);
    background-repeat: repeat-x;
    background-position: center;
} */

   .floating-logo {
        height: 50px;
        width: 50px;
        right: 10px;
        bottom: 10px;
            position: fixed;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    background-color: #6c757d;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .floating-logo div {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    height: 28px;
    width: 28px;
    display: block;
    vertical-align: middle;
    background-image: url(../img/chat.png);
    background-size: cover;
    animation: rotateLeft 0.5s linear;
}

.hidden {
    display: none;
}
/* div#chatbot {
    position: fixed;
    width: 350px;
    height: 400px;
    right: 16px;
    bottom: 96px;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 40px rgba(0, 0, 0, .08);
    border-radius: 20px;
}
#chat-window{
    flex-grow: 1;padding: 16px;
}
.chatArea {
    background: transparent;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}
.sendBtn {
    position: absolute;
    right: 20px;
    top: 20px;
} */
/* input#user-input {
    width: 100%;
    border: 2px solid #DDDDDD !important;
    padding: 15px 55px 15px 15px !important;
    border-radius: 10px;
} */
/* .sendBtn {
    position: absolute;
    right: 24px;
    top: 24px;
    border-radius: 0 10px 10px 0;
    border: 2px solid #EE1B24 !important;
    background: #EE1B24;
    width: 55px;
    height: 55px;
    font-size: 24px;
    color: #fff;
} */
.user-msg {
    color: #fff;
    background: #0c6e6d;
    overflow-wrap: break-word;
    align-self: flex-end;
    max-width: 20rem;
    border-radius: 15px 15px 0 15px;
}
.bot-msg{
    background: hsla(240, 6%, 90%, .5);
    color: #000;
    gap: 12px;
    border-radius: 15px 15px 15px 0;
    overflow-wrap: break-word;
    align-self: flex-start;
    max-width: 20rem;
}
.sigma_team{
    box-shadow: 0 2px 40px rgba(0, 0, 0, .08);
    background: #fff;
    padding: 0px;
    border-radius: 20px;margin-bottom: 50px;
}

/* .sigma_team .sigma_team-thumb {
    position: relative;
    border-radius: 20px 20px 0  0;
    overflow: hidden;
} */
 .sigma_team .sigma_team-thumb {
    position: relative;
    /* border-radius: 20px 20px 0 0; */
    overflow: hidden;
    transition: all .3s ease-in-out;
    overflow: hidden;
    /* padding-top: 15px; */
    text-align: center;
}
.sigma_team .sigma_team-thumb img {
    transition: .3s;
    /* width: 100%; */
    /* border-radius: 100%; */
    height: 140px;
    /* width: 150px; */
    /* object-fit: cover; */
    margin-top: 20px;
}
.sigma_team-body h5 {
    /* height: 40px;
    margin-bottom: 20px !important; */
    font-weight: 600;
}
.sigma_team.style-16 .sigma_team-controls {
    position: absolute;
    top: 15px;
    left: 15px;
}
.sigma_team .sigma_team-controls a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    color: #EE1B24;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.sigma_team.style-16 .sigma_team-body {
    position: relative;
    background-color: #fff;
    transition: .3s;
    padding: 20px;
        border-radius: 0 0 20px 20px;
}
.sigma_team.style-16 .sigma_rating {
    margin: 10px 0;
}
.sigma_rating {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 14px;
}
.sigma_rating i {
    display: inline-block;
    color: #fcb71b;
}
.sigma_team.style-16 .sigma_team-info {
    margin-top: 15px;
    margin-bottom: 15px;  
      /* height: 80px; */
}
.sigma_team .sigma_team-info span {
    display: flex
;
    align-items: center;
    font-size: 14px;
}
.sigma_team.style-16 .sigma_team-body .sigma_btn{
    /* width: calc(100% - 30px); */
    position: absolute;
    bottom: -25px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    /* opacity: 0; */
    /* visibility: hidden; */
    background-color: #EE1B24;
    border: 0;
    color: #fff;
    /* font-size: 14px; */
    font-weight: 500;
    padding: 10px 30px;
    transition: .3s;
    text-transform: capitalize;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 24px rgba(0, 0, 0, .1);
    border-radius: 10px;
    text-align: center;
}
/* .sigma_team.style-16 .sigma_team-body .sigma_btn {
    width: calc(100% - 30px);
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
     background-color: #EE1B24;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 17px 30px;
    transition: .3s;
    text-transform: uppercase;
    border-radius: 0;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 24px rgba(0, 0, 0, .1);
    border-radius: 6px;
    text-align: center;
} */
.sigma_team .sigma_team-info span i {
    margin-right: 10px;
    color: #EE1B24;
}
 .sigma_btn:before{
border-radius: 6px;
        content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    width: 0;
    border-radius: 0;
    background-color: #EE1B24;
    z-index: -1;
    transition: .3s;
}
.sigma_team-body a {
    color: #000;
}
.sigma_team .sigma_team-thumb:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.sigma_team.style-16:hover .sigma_team-body {
    padding-bottom: 100px;
    margin-top: -70px;
}
.sigma_team.style-16:hover .sigma_team-body .sigma_btn {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
 .sigma_btn:hover:before{
        width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

footer {
    color: #fff;
}
.footerLinks{
   display: flex;
    align-items: start;
    justify-content: start;
    gap: 15px; 
}
.footerLinks li a{
color: #fff;
}



.footerLink ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footerLink ul li a{
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50px;
}
/* button:not(:disabled) {
    position: absolute;
} */
button#chat-toggle{
    position: absolute;
}
.aone-med-future-r-section ul {
    list-style: none;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.aone-med-future-r-section ul li:first-child {
    margin-top: 40px;
}
.aone-med-future-r-section ul li {
    width: 50%;
}
.aone-med-future-l-inner .aone-med-future-content {
    padding: 50px 30px;
    color: #fff;
    background-color: #EE1B24;
}
.aone-med-future-l-inner .aone-med-future-content span {
    margin-bottom: 20px;
    display: block;
}
.aone-med-future-l-inner .aone-med-future-content h3 {
    color: #fff;
    margin-bottom: 15px;
}
.aone-med-future-l-inner .media img {
    width: 100%;
}
.aone-med-future-r-inner .aone-med-future-content {
    padding: 50px 30px;
    color: #fff;
    background-color: #222;
}
.aone-med-future-r-inner .aone-med-future-content span {
    margin-bottom: 20px;
    display: block;
}
.aone-med-future-r-inner .aone-med-future-content h3 {
    color: #fff;
    margin-bottom: 15px;
}
.aone-med-future-r-inner .media img {
    width: 100%;
}
ul.grid-2 {
    display: flex;
    flex-wrap: wrap;
}
.m-b30 {
    margin-bottom: 30px;
}
ul.grid-2 li {
    /* width: 50%; */
        position: relative;
    padding: 5px 5px 5px 30px;
}

ul.list-check li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    color:#EE1B24;
        position: absolute;
    left: 0;
    top: 5px;
    font-weight: 900;
        font-size: 16px;
}
.info-widget.style-5 {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.info-widget.style-5 .widget-media svg {
    width: 35px;
    height: 35px;
}
.info-widget.style-5 .widget-content .title {
    color: #222;
    font-weight: 600;
    margin-bottom: 0px;
}
.info-widget.style-5 .widget-content a {
    font-size: 18px;
    font-weight: 600;
    color: #EE1B24;
}
.hItw{
    background: #e8f6ff;
}
.dc-workdetails {
    float: left;
    width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.dc-workdetail {
    float: left;
    width: auto;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 100%;
    background: url(../img/border-img.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.dc-workdetail figure {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 20px 0 rgba(153, 153, 153, 0.3);
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.dc-workdetail figure img {
    width: 70px;
    margin: 0 auto;
    display: block;
}
.dc-workdetails .dc-title span {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
    line-height: 20px;
}
.dc-workdetails .dc-title h3 {
    margin: 0;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}
.dc-workdetails-border:after, .dc-workdetails-bordertwo:before {
    position: absolute;
    top: 0;
    top: 20px;
    content: '';
    left: -127px;
    width: 235px;
    height: 148px;
    background: url(../img/line-01.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.dc-workdetails-bordertwo:before {
    background: url(../img//line-02.png);
    left: -138px;
        top: 75px;
}
figure {
    margin: 0;
}
.dc-workdetails-border {
    position: relative;
}

.testimonial-1 {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    filter: drop-shadow(0 0px 1px rgba(3, 27, 78, 0.25));
}
.testimonial-1 .dz-media {
    min-width: 210px;
    width: 210px;
    background-color: #fd736f;
}
.testimonial-1 .dz-media .media-inner {
    position: relative;
}
.dz-media img{
    max-width: 100%;
    height: auto;
    width: 100%;
}
.testimonial-1 .video-btn {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    background-color: rgba(218, 55, 50, 0.75) !important;
}
.testimonial-1 .testimonial-info {
    background-color: #fab3b0;
    padding: 41px;
    text-align: center;
}
.testimonial-1 .testimonial-info .testimonial-name {
    font-size: 18px;
    margin-bottom: 0px; font-weight: 700;
}
.testimonial-1 .testimonial-info .testimonial-position {
    font-size: 14px;
    color: #EE1B24;
}
.testimonial-1 .testimonial-detail {
    padding: 40px 15px;
    display: flex;
    position: relative;
    z-index: 1;
}
.testimonial-1 .testimonial-detail .testimonial-text {
    position: relative;
    z-index: 1;
}
.testimonial-1 .testimonial-detail .title {
    font-size: 22px;
    font-weight: 700;
    /* margin-bottom: 20px !important; */
}
.testimonial-1 .testimonial-detail p:last-child {
    margin-bottom: 0;
}
.testimonial-1 .testimonial-detail::after {
    content: "";
    background-image: url(../img/bg.svg);
    width: 55px;
    height: 55px;
    position: absolute;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
    background-color: #EE1B24;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-b20 {
    margin-bottom: 20px;
}
.testimonial-1:after {
    content: "";
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* mask-image: url(../img/bg2.svg); */
    mask-position: right bottom;
    border-radius: 25px 25px 0 25px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}
.comment-body a{
    color: #EE1B24 !important;
}


footer{
    background: url(../img/footerBg.jpg) no-repeat !important;
    background-position: center;
    padding: 80px 0;
    background-size: cover !important;
}
.footerLogo img{
    height: 100px;
}
.footerTitle {
    font-size: 24px !important;
    margin-bottom: 24px !important;
    font-weight: 600;
    position: relative;
    border: 0 !important;
}
#footer li {
    font-size: 15px;
}
.footerTitle:after {
    content: '';
    height: 4px;
    width: 16px;
    background: #EE1B24;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
ul.footerLink li
 {
    list-style: circle;
    padding-bottom: 10px;
}

ul.footerLink li a {
    color: #fff;
}
ul.footerLink {
    padding-left: 15px;
}
ul.footerLink li:hover{
 list-style: disc;   
}
ul.contactInfo li {
    display: flex;
    align-items: center;
    justify-content: start;padding-bottom: 15px;
    gap: 10px;
}
.icon {
    width: 40px;
    height: 40px;
    background: #EE1B24;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.newsLetter .input {
    width: 100%;
    padding: 20px 60px 20px 20px;
    border-radius: 50px;
    border: 0;
}
.sendingBtn {
    background: #EE1B24;
    position: absolute;
    right: 6px;
    top: 6px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}
:focus-visible {
    outline: none;
}
.newsLetter {
    position: relative;
}
.copyRight {
    background: #EE1B24;
    color: #fff;
    padding: 15px 0;
}
.icon-bx-wraper.style-9 {
    padding: 25px 25px;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 0px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.2s;
}
.icon-bx-wraper.style-9 .icon-bx {
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
}
.icon-bx-wraper.style-9 .dz-title {
    font-size: 24px;
    margin-bottom: 5px !important;
    font-weight: 600;
}
.icon-bx-wraper p:last-child {
    margin: 0;
}
.m-l25 {
    margin-left: 25px;
}
.m-r25 {
    margin-right: 25px;
}
.m-b30 {
    margin-bottom: 30px;
}
.dz-media, .dz-post-media {
    position: relative;
    overflow: hidden;
}

.height-lg {
    height: 700px;
}
.textWhite{
    color: #fff;
}
.heading a{
    color: #000;
}
.icon-bx-wraper.style-9:hover {
    transform: translateY(-5px);
} 
.dz-media.height-lg img {
    border-radius: 15px;
}
.mobMB30
 {
    margin-bottom: 30px !important;
}
.pageTitle{
     background-color: #e8f6ff;
}
.pageTitle h1{
    color: #000;
    font-size: 40px;
    font-weight: bold;
    padding: 30px 0 0 0;
}
.product-image img {
    height: 180px;
}
.product-single-img {
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 20px;
}
.product-single-img img {
    width: 200px;
}
.product-details .product-single-content {
    padding-left: 40px;
}
.product-details .product-single-content h5 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
}
.product-details .product-single-content h6 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    color: #EE1B24;
    margin: 10px 0 !important;
}
.btn-style-1, .btn-style-2, .small-btn-style {
    background: #EE1B24;
    border: 0;
    border-radius: 30px;
    color: #1a1729;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    font-weight: 600;
    padding: 15px 70px 15px 35px;
    position: relative;
    text-transform: capitalize;
    /* z-index: 1; */
    color: #fff;
    overflow: hidden;
}
.btn-style-1:before {
    background: #fff;
    border-radius: 30px;
    content: "\f07a";
    font-family: "Font Awesome 6 Pro";
    height: 46px;
    line-height: 46px;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 5px;
    width: 46px;
    color: #EE1B24;
    font-size: 12px;
}
.product-details .product-single-content .stock {
    margin-top: 40px;
}
.product-details .product-single-content .stock ul {
    display: flex;
}
.product-details .product-single-content .stock ul li {
    margin-right: 20px;
}
.product-details .product-single-content .category ul {
    display: flex;
    margin-top: 20px;
}
.product-details .product-single-content .category ul li {
    margin-right: 15px;
}

.inner-container {
    position: relative;
    padding: 30px 20px 0 20px;
    border-radius: 8px;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.inner-container .nav-pills .nav-link.active {
    background-color: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    border-bottom: 4px solid red !important;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
}
.inner-container .nav-pills .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #CFCED4 !important;
    border: 0 !important;
    padding: 0 0 20px 0;
        margin: auto 25px;
}
.icon-bx-wraper.style-3 {
    border-radius: 25px;
    position: relative;
    padding: 20px;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    height: 100%;
    display: flex;
    flex-direction: column;
}
.icon-bx-wraper.style-3 .icon-bx-head {
    margin-bottom: 0;
}
.icon-bx-wraper.style-3 .icon-bx-footer {
    position: relative;
    /* padding-top: 20px; */
    margin-top: 20px;
    margin-right: 50px;
    transition: all 0.5s;
}
/* .icon-bx-wraper.style-3 .icon-bx-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(86, 101, 147, 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-size: 10px 1px;
    background-repeat: repeat-x;
} */
.btn-square {
    height: 48px;
    width: 48px;
    min-width: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-bx-wraper.style-3 .btn-square {
    box-shadow: 0 20px 50px rgba(3, 27, 78, 0.1);
    position: absolute;
        right: -70px;
    bottom: -20px;
    font-size: 20px;
    color: #fff;
}
.icon-bx-wraper.style-3:after {
    content: "";
    background: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    mask-image: url(../img/bg02.svg);
    mask-position: right bottom;
    border-radius: 15px 15px 0 15px;
    transition: all 0.5s;
}
.icon-bx-wraper.style-3 .btn-square i {
    transition: all 0.5s;
}
.icon-bx-wraper.style-3:hover .btn-square i {
    animation: toTopRight 0.8s forwards;
}

@-webkit-keyframes toTopRight {
	49% {
		-webkit-transform: translate(30px, -30px);;
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-30px, 30px);;
	}
	51% {
		opacity: 1;
	}
}

.recipe {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
}
.recipe img{
    width: 100%;
    border-radius: 20px;
}

.recipe figcaption a {
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.4s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.recipe figcaption {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    text-align: center;
    background: rgba(255, 142, 136, 0.85);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in;
    border-radius: 20px;
}
.recipe figure {
    position: relative;
    overflow: hidden;
}
.recipe figure:hover figcaption {
    opacity: 1;
}
.recipe figcaption .icon {
    display: inline-block;
    margin: 27% 0 3px;
    font-size: 30px;
}
.recipe figcaption span
 {
    width: 100%;
    display: inline-block;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .15);
}
.entries h2 {
    font-size: 17px;
    font-weight: 600;
    padding: 0 0 17px;
    color: #454545;
}
.recipe h2 {
    margin-bottom: 10px !important;
    line-height: 20px;
    height: 45px;
}
.recipe h2 a {
    color: #222;
    font-size: 20px;
    font-weight: 700;
}
.actions {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    justify-content: center;
    gap: 10px;
    padding: 15px 0;
}
.likes, .comments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.likes a, .comments a{
    color: #000;
}
.actions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(86, 101, 147, 0.3) 50%, rgba(255, 255, 255, 0) 0%);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-size: 10px 1px;
    background-repeat: repeat-x;
}


.hero-one{
        position: absolute;
    top: 70px;
    left: 40px;
        animation: movebounce2 3s linear infinite;
}
.hero-two{
    position: absolute;
    top: 35%;
    right: 30px;
        animation: movebounce2 3s linear infinite;
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }

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

  100% {
    transform: translateX(0px);
  }
}

.enquiryForm{
        position: relative;
    padding: 30px;
    border-radius: 8px;
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}
.enquiryForm h2{
    margin-bottom: 25px !important;
    font-weight: 600;
}
.enquiryForm label{
    display: block;
        color: #222;
    margin-bottom: 5px;
    /* font-size: 14px; */
}
.enquiryForm .input {
    border: 1.5px solid #BCBCBC;
    padding: 8px 10px;
    width: 100%;
    margin: 0;
}
.enquiryForm .textArea {
    border: 1.5px solid #BCBCBC;
    padding: 8px 10px;
    width: 100%;
    height: 150px;
    margin: 0;
}
.hero-bg{
    background-image: url(../img/group-1-1.png);
    position: absolute;
    background-repeat: repeat;
    /* background-position: left top; */
    height: 130px;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation: bgSlide 20s linear infinite;
}
@keyframes bgSlide {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -100px 0;
  }
  40% {
    background-position: -200px 0;
  }
  60% {
    background-position: -150px 0;
  }
  80% {
    background-position: -100px 0;
  }
  100% {
    background-position: 0px 0;
  }
}
.blackBtn {
    border: 100px;
    padding: 10px 30px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius:10px;
    position: relative;
    display: inline-block !important;
    overflow: hidden;
        z-index: 1;
        opacity: 1 !important;
       
}
.nav-menu > li:hover > a.logoutBtn:hover{
    color: #fff !important;
}
.blackBtn::before, .blackBtn::after {
    content: "";
    background-color: #EE1B24;
    height: 50%;
    width: 0;
    position: absolute;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.blackBtn::before {
    top: 0;
    left: 0;
    right: auto;
}
.blackBtn::after {
    bottom: 0;
    right: 0;
    left: auto;
}
.blackBtn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}
.blackBtn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.userIcon {
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #EE1B24;
    color: #fff !important;
    border-radius: 10px;
    font-size: 16px !important;
    top: 0px;
    z-index: 0;
    right: 0;
    position: relative;
    opacity: 1 !important;
}
.userIcon:hover{
  background: #000;
    color: #fff;  
}
.closeBtn {
    position: absolute;
    background: #fff;
    top: 0;
    width: 30px;
    height: 30px;
    z-index: 9;
    right: 0;
    opacity: 1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submitBtn {
    border: 100px;
    padding: 10px 12px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: #EE1B24 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius:10px;
    position: relative;
    display: inline-block !important;
    overflow: hidden;
        z-index: 1;
        opacity: 1 !important;
       
}
.nav-menu > li:hover > a.submitBtn:hover{
    color: #fff !important;
}
/* .submitBtn::before {
    bottom: 10px;
    right: -45%;
}

.submitBtn::before, .submitBtn::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    background-color: #000;
    width: 100%;
    aspect-ratio: 1;
    z-index: -1;
    opacity: 0.03;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.right-icon {
    font-size: 16px;
}
.submitBtn::after {
    bottom: -15%;
    right: -30%;
}
.submitBtn:active::before, .submitBtn:hover::before, .submitBtn:focus::before {
    transform: scale(1.5);
}
.submitBtn:active .right-icon i, .submitBtn:hover .right-icon i, .submitBtn:focus .right-icon i {
    -webkit-animation: toRightFromLeft 0.5s forwards;
    -moz-animation: toRightFromLeft 0.5s forwards;
    animation: toRightFromLeft 0.5s forwards;
}
.submitBtn:active::after, .submitBtn:hover::after, .submitBtn:focus::after {
    transform: scale(3);
}
@-webkit-keyframes toRightFromLeft {
		49% {
			-webkit-transform: translateX(100%);
		}
		50% {
			opacity: 0;
			-webkit-transform: translateX(-100%);
		}
		51% {
			opacity: 1;
		}
	}
	@-moz-keyframes toRightFromLeft{
		49% {
			-moz-transform: translateX(100%);
		}
		50% {
			opacity: 0;
			-moz-transform: translateX(-100%);
		}
		51% {
			opacity: 1;
		}
	} */

.submitBtn::before, .submitBtn::after {
    content: "";
    background-color: #000;
    height: 50%;
    width: 0;
    position: absolute;
    z-index: -1;
    transition: 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.submitBtn::before {
    top: 0;
    left: 0;
    right: auto;
}
.submitBtn::after {
    bottom: 0;
    right: 0;
    left: auto;
}
.submitBtn:hover::before {
    width: 100%;
    right: 0;
    left: auto;
}
.submitBtn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}



.fw-600{
    font-weight: 600;
}
.reload-btn {
    position: relative;
    width: 100%;
    text-align: center; 
}
.reload-btn a{
    /* border: 1px solid #EEEEEE; */
    border-radius: 8px;
    padding: 12px 30px;
    color: #000 !important;
    background-color: #fff;
    z-index: 1;
    position: relative;
    font-weight: 500;
}
   
.reload-btn::after {
    content: "";
    border-bottom: 1px solid #DCD6CE;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.reload-btn a:hover{
    color: #fff !important;
}
a.sharp {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.dropdown-menu.show li a{
    color: #000 !important;
}

 .searchBox {
    width: 350px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    /* margin: 0 auto; */
    position: relative;
    border-radius: 10px;
}
.searchBox input {
    width: 100%;
    border: 0;
    padding: 15px 20px;
    border-radius: 10px;
}
.searchBtn
 {
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #fff;
    background: #EE1B24;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    border-radius: 0 10px 10px 0;
}
.hdAbout p {
    margin: 2px 0 8px;
}
.testimonial_box-top {
		background-color: #fff;
		padding: 0px;
		border-radius: 8px;
		display: flex;
		flex-direction: column;
		align-items: start;
		justify-content: flex-start;
		position: relative;
		box-shadow: 0 0px 20px rgba(0, 0, 0, .04);
		margin: 15px;
		padding: 30px;
		position: relative;
		z-index: 1;
        /* height: 100vh; */
	}

	.testimonial-head {
		display: flex;
		gap: 15px;
		margin-bottom: 12px;
		align-items: center;
	}

	.star-list {
		display: flex;
		gap: 5px;
	}

	.testimonial-detail .star-list li {
		color: #FFCD37;
		font-size: 18px;
	}

	.testimonial-detail .title {
		font-size: 18px;
		margin-bottom: 0;
		font-weight: 700;
	}

	.testimonial-contant {
    margin-bottom: 30px;

}

	.testimonial-detail .testimonial-text {
		position: relative;
		z-index: 1;
	}

	.testimonial-detail p {
		line-height: 1.8;
		/* font-size: 18px; */
		margin-bottom: 0;
        font-size: 14px;
	}

	.testimonial-info {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-top: auto;
	}

	.testimonial-detail .dz-media {
		border-radius: 50%;
		width: 60px;
		height: 60px;
	}

	.testimonial-info .testimonial-name {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 0px;
	}

	.testimonial-info .testimonial-position {
		font-size: 14px;
	}

	/* .testimonial-detail::after {
		content: "\f10e";
		font-family: "Font Awesome 6 Pro";
		position: absolute;
		right: 25px;
		bottom: 30px;
		z-index: -1;
		font-weight: 500;
		font-size: 65px;
		line-height: 65px;
		color: #EE1B24;
	} */
.clientUser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.clientUser i{
font-weight: 500;
		font-size: 65px;
		line-height: 65px;
		color: #EE1B24;
}


    /* .clientUser{
        position: relative;
    }
    .clientUser::after {
		content: "\f10e";
		font-family: "Font Awesome 6 Pro";
		position: absolute;
		right: 25px;
		bottom: 30px;
		z-index: -1;
		font-weight: 500;
		font-size: 65px;
		line-height: 65px;
		color: #EE1B24;
	} */
    
.bnr-info {
    position: relative;
    z-index: 10;
}
.dz-bnr-inr h1
 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #000;
    text-transform: capitalize;
}
.info-widget {
    margin-top: 40px;
    margin-bottom: 40px;
}
.info-widget.style-16
 {
    background-color: #fff;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 0 50px rgba(48, 38, 109, 0.05);
}
.icon-bx-wraper.style-1 {
    display: flex
;
    gap: 15px;
    text-align: left;
}
.icon-bx-wraper {
    position: relative;
}
.icon-bx-wraper.style-1 .icon-bx {
    width: 60px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 24px;
    justify-content: center;
    background-color: #EE1B24;
    border-radius: 50%;
}
.icon-bx-wraper.style-1 .icon-bx i {
    display: flex
;
}
.icon-bx-wraper.style-1 .dz-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.icon-bx-wraper .dz-title {
    margin-top: 0;
}
.info-widget.style-16 .icon-bx-wraper.style-1 p {
    font-size: 14px;
    font-weight: 400;
    color: var(--bs-body);
}
.info-widget.style-16 .row > *:not(:last-child):after {
    content: "";
    height: 100%;
    position: absolute;
    right: 10px;
    top: 0;
    width: 1px;
    background-color: #000;
    opacity: 0.1; 
}
.contactNu{
    background: #EE1B24;
    font-size: 20px;
    font-weight: 500;
    border-radius: 50px;
    padding: 5px 20px 5px 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
}
.contactNu:hover{
    background: #000;
    color: #fff;
}
span.left-icon {
    height: 60px;
    width: 60px;
    min-width: 60px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #EE1B24;transform: translateY(1px);
}
.left-icon i {
    transition: all 0.5s;
}
.contactNu:hover .left-icon i {
    animation: toLeftFromRight 0.3s forwards;
}
@-webkit-keyframes toLeftFromRight {
		49% {
			-webkit-transform: translateX(-100%);
		}
		50% {
			opacity: 0;
			-webkit-transform: translateX(100%);
		}
		51% {
			opacity: 1;
		}
	}
	@-moz-keyframes toLeftFromRight{
		49% {
			-moz-transform: translateX(-100%);
		}
		50% {
			opacity: 0;
			-moz-transform: translateX(100%);
		}
		51% {
			opacity: 1;
		}
	}

    .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.rating {
  --star-size: clamp(2rem, 2vw, 6rem);
  --star-clr-inactive: rgba(128, 128, 128, 0.7);
  --star-clr-active: rgb(245, 158, 11);
  --star-clr-hover: rgba(236, 201, 136, 0.2);
  --star-clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

label {
  position: relative;
  cursor: pointer;
  width: var(--star-size);
  height: var(--star-size);
}
label::before {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  background-color: var(--star-clr-hover);
  transition: rotate 450ms ease-in-out, inset 300ms ease-in-out;
  clip-path: var(--star-clip-path);
}
label:hover::before {
  inset: -1rem;
  rotate: 45deg;
}
label::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--star-clr-inactive);
  clip-path: var(--star-clip-path);
  transition: 300ms ease-in-out;
  scale: 0.75;
}
label:has(~ label:hover)::after,
label:has(~ label > :checked)::after,
label:has(:checked)::after,
label:hover::after {
  background-color: var(--star-clr-active);
  scale: 1;
}

label:hover ~ label::after {
  scale: 0.75;
}
label:active::before {
  inset: -2rem;
}


.profile {
    display: flex;
}
.card.profile {
    margin-bottom: 1.875rem;
    background-color: #fff;
    transition: all .5s ease-in-out;
    position: relative;
    border: 0px solid transparent;
    border-radius: 0.75rem;
    box-shadow: 0px 0px 33px 0px rgba(62, 73, 84, 0.05);
    height: calc(100% - 30px);
}
.photo-content {
    position: relative;
}
.photo-content .cover-photo {
    background: url(https://eres.dexignzone.com/xhtml/images/profile/cover.jpg);
    background-size: cover;
    background-position: center;
    min-height: 250px;
    width: 100%;
}
.profile-info {
    display: flex;
}
.profile-info {
    padding: 15px 0px 0px 20px;
}
.profile .profile-photo {
    max-width: 100px;
    position: relative;
    z-index: 1;
    margin-top: -40px;
    margin-right: 10px;
}
.profile-info .profile-details {
    display: flex
;
    width: 100%;
}
.profile-info h4.text-primary, .profile-info .text-primary.h4 {
    color: #EE1B24 !important;
}
.profile-info p {
    color: #828690;
    margin: 0;
}
.profile-info h4, .profile-info .h4 {
    color: #464a53 !important;
}
.ms-auto {
    margin-left: auto !important;
}
.sharp {
    min-width: 40px;
    padding: 7px;
    height: 40px;
    min-height: 40px;
}

.dropdown-menu {
    border: 0;
    z-index: 5;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0 3.125rem 0 rgba(82, 63, 105, 0.15);
    margin-top: 0;
}
.dropdown-menu .dropdown-item {
    font-size: 1rem;
    color: #7e7e7e;
    padding: 0.5rem 1.75rem;
}
.card-body {
    padding: 1.875rem;
}
.profile-tab .nav-item .nav-link.active {
    border: 0;
    background: transparent;
    background: transparent;
    border-bottom: 0.2px solid #EE1B24;
    color: #EE1B24;
}
.nav-tabs {
    border-bottom: 1px solid #EEEEEE;
}
.profile-tab .nav-item .nav-link {
    font-size: 16px;
    margin-right: 30px;
    transition: all 0.5s ease-in-out;
    border: none;
    border-bottom: .20px solid transparent;
    color: #828690;
}
.custom-tab-1 .nav-link {
    background: transparent;
    border-radius: 0px;
    font-weight: 500;
}
.post-input {
    margin-bottom: 30px;
}
.post-input .form-control {
    font-weight: 400;
    margin: 15px 0;
}
textarea.form-control {
    min-height: auto;
    height: auto !important;
    padding-top: 10px;
}
.profile-uoloaded-post img {
    margin-bottom: 20px;
}
.btn-primary {
    box-shadow: none !important;
}
.light.btn-primary.btn {
    background-color: rgba(218, 55, 50, 0.1) !important;
    border-color: rgba(218, 55, 50, 0.1) !important;
    color: #EE1B24 !important;
}
a.btn.btn-primary {
    background-color: #EE1B24 !important;
    border: 1px solid #EE1B24 !important;
    color: #fff !important;
    box-shadow: none !important;
}
.input-group-text {
    border: 0.0625rem solid #d7dae3;
    min-width: 3.125rem;
    display: flex
;
    justify-content: center;
    padding: 0.532rem 0.75rem;
}
.form-control[type="file"] {
    line-height: 44px;
    padding-left: 12px;
}
input.form-file-input.form-control {
    margin: 0;
    border-color: transparent;
}
.form-file-input.form-control {
    margin: 0 !important;
    height: auto !important;
    border-radius: 0 0.5rem 0.5rem 0;
}
.form-file {
    border: 0.0625rem solid #d7dae3;
    background: #fff;
    overflow: hidden;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.tab-content h4{
    margin-bottom: 15px !important;color: #EE1B24 !important;
}
.slick-prev, .slick-next {
    width: 40px !important;
    height: 40px !important;
}
.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 40px !important;
    line-height: 1;
    opacity: 1 !important;
    color: #EE1B24 !important;
}

.single_review {
    border-radius: 12px;
    border: 1px solid rgba(8, 5, 33, 0.10);
    display: flex
;
    flex-wrap: wrap;
    padding: 25px;
    margin-top: 15px;
}
.single_review .img {
    width: 70px;
    height: 70px;
    overflow: hidden;
    margin-right: 20px;
}
.single_review .text {
    width: 100%;
}
.single_review .text h4 {
    font-size: 18px;
    font-weight: 600;
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.single_review .text .rating {
    color: #F4A630;
    display: block;
    margin-bottom: 10px;
}
.single_review .text p {
    font-size: 14px;
}
 .testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}
/* a.submitBtn.addBtn {
    position: absolute;
    right: 15px;
    top: 10px;
} */
a.submitBtn.addVideo {
    position: absolute;
    right: 20px;
    top: 20px;
}



.featured-recipe {
    position: relative;
    margin: 0 0 10px 0;
    display: block;
    overflow: hidden;
}
.featured-recipe:before {
    height: 100%;
    width: 100%;
    background-color: #555;
    opacity: 0.6;
    position: absolute;
    display: block;
    z-index: 99;
    content: "";
    transition: all 0.2s ease-in-out;
    border-radius: 1rem;
}
.featured-recipe img {
    position: relative;
    display: block;
    width: 100%;
}
.featured-recipe-content {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    z-index: 100;
}
.featured-recipe-content h4 {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    font-weight: 700;
    /* width: 60%; */
}
/* .rating {
    box-sizing: content-box;
    overflow: hidden;
    position: relative;
    width: 100px;
    height: 18px;
    display: block;
} */
.rating .star-rating {
    position: relative;
    width: inherit;
    display: block;
    padding: 0;
    margin: 0;
}
.rating.five-stars .star-rating:after {
    width: 100%;
}
 .rating .star-rating {
    color: rgb(255, 199, 65);
    /* display: block;
    position: absolute;
    font-size: 16px;
    z-index: 10;
    letter-spacing: -0.5px; */
}

.metro_comments-list ul {
    margin: 0;
}
.metro_comments-list .comment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.metro_comments-list .comment-item img {
    width: 65px;
    margin-right: 20px;
    border-radius: 50%;
}
.metro_comments-list .comment-item .comment-body {
    flex: 1;
}
.metro_comments-list .comment-item h5 {
    margin-bottom: 15px !important;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
}
.metro_comments-list .comment-item span {
    display: inline-block;
    margin-left: 10px;
    color: #7a7a7a;
    font-weight: 600;
    font-size: 13px;
}
.metro_comments-list .comment-item p {
    margin-bottom: 15px;
}
.btn-link {
    color: #7a7a7a;
    font-weight: 700;
    font-size: 15px;
}
.btn-link i {
    margin-left: 5px;
    font-size: 12px;
}
.metro_comments-list .comment-item > ul {
    flex: 0 100%;
    padding-left: 40px;
    margin-top: 30px;
}
.metro_comments-list ul {
    margin: 0;
}
.metro_comments-list .comment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.metro_comments-list .comment-item {
    display: flex
;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.btn-link:hover {
    color: #EE1B24;
    text-decoration: none;
}
.tweetsBox {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    z-index: 1;
        height: 380px;
    overflow: auto;
}
.tweetsBox ul li {
    display: flex;
    /* align-items: center; */
    justify-content: start;
    gap: 15px;
   margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}
.tweetImg{
    width: 80px;
    border-radius: 50px;
    height:80px;
}
.tweetsName {
    margin-bottom: 5px;color: #EE1B24;
}
.tweetsName b{
    color: #000;
}
.tweetText {
    font-size: 14px;
    margin-bottom: 5px;
}
.tweetsLike {
    display: flex;
    align-items: center;
    gap: 5px;
}
.tweetsLike i{
    color: #EE1B24;
}
.metro_nutritional-facts, .metro_ingredients {
    padding: 30px;
    border: 1px solid #ebebeb;
    margin: 0 0 20px;
        width: 100%;
}
.metro_ingredients > h4 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
}
.metro_ingredients > h4::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #EE1B24;
}
.metro_ingredients li {
    display: flex;
    align-items: center;
    justify-content: space-between;
        margin: 10px 0 0;
}
ul.list li{
    position: relative;
    padding-left: 30px;
}
ul.list li:before {
    
    content: "\f336";
    font-family: "Font Awesome 6 Pro";
    color:#EE1B24;
        position: absolute;
    left: 0;
}

ul.chatIconlist li{
    position: relative;
    padding-left: 30px;
}
ul.chatIconlist li:before {
    
    content: "\f086";
    font-family: "Font Awesome 6 Pro";
    color:#EE1B24;
        position: absolute;
    left: 0;
}

.dropdown-item.active, .dropdown-item:active {
    color:#fff !important;
    text-decoration: none;
    background-color:#EE1B24 !important;
}

.file-upload-wrapper {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }

        .file-upload-box {
            position: relative;
            padding: 2rem;
            text-align: center;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            background-color: #f8f9fa;
            transition: all 0.3s ease;
            cursor: pointer;
            width: 100%;
        }

        .file-upload-box:hover {
            background-color: #e9ecef;
            border-color: #adb5bd;
        }

        .file-upload-input {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            z-index: 1;
        }

        .upload-content {
            position: relative;
            z-index: 0;
        }

        .upload-icon {
            font-size: 2.5rem;
            color: #6c757d;
            margin-bottom: 1rem;
        }

        .file-list {
            margin-top: 1.5rem;
        }

        .file-item {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            background-color: white;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            transition: all 0.2s ease;
        }

        .file-item:hover {
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .file-icon {
            color: #6c757d;
            margin-right: 0.75rem;
            font-size: 1.25rem;
        }

        .file-name {
            flex-grow: 1;
            color: #495057;
            text-decoration: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-right: 1rem;
        }

        .file-name:hover {
            color: #007bff;
            text-decoration: none;
        }

        .remove-file {
            color: #dc3545;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            font-size: 1.25rem;
            transition: color 0.2s ease;
            flex-shrink: 0;
        }

        .remove-file:hover {
            color: #c82333;
        }

        .drag-over {
            background-color: #e9ecef;
            border-color: #007bff;
        }

        /* Add loading animation */
        @keyframes upload-progress {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        .upload-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background-color: #007bff;
            animation: upload-progress 1s ease-in-out;
        }
a.submitBtn.addVideo.desNone.MobShow {
    display: none;
}
.mobDesign {
    display: flex;
    gap: 10px;
}
 .navbar-expand-lg .navbar-nav {
        margin-left: 18% !important;
    }
@media screen and (min-width: 1200px) and (max-width: 1400px) { 
    .eventdateTime {
    width: 70%;
}

    .nav-menu>li>a {
    padding: 0 0px !important;
    font-size: 14px !important;
    }
    .logo {
    height: 170px;
    }
    ul.nav-menu-right .submitBtn {
    padding: 10px !important;
}
.nav-menu {
    padding-left: 15% !important;
}
    .nav-menu{
    gap: 0px;
}
    .navbar-expand-lg .navbar-nav {
        margin-left: 15% !important;
    }
    .navbar-custom .navbar-nav .nav-item .nav-link {
    font-size: 14px !important;
    padding: 0 4px;
}
.logo {
    height: 145px;
}
.nav-sticky.navbar-custom .logo {
    height: 120px;
}
.sigma_team-body h5 {
    font-size: 18px;
}
.sigma_team.style-16 .sigma_team-body {
    padding: 12px;
}
}

@media screen and (min-width: 1279px) and (max-width: 1301px) { 
/* .footerLink ul {
    padding-right: 5%;
} */
  /* .copyRighttext{
    padding-right:6%;
} */
}

@media screen and (min-width: 1190px) and (max-width: 1251px) { 
/* .footerLink ul {
    padding-right: 14%;
} */
  /* .copyRighttext{
    padding-right:12%;
} */
}

@media screen and (min-width: 1151px) and (max-width: 1199px) { 
     .eventdateTime {
    width: 90%;
}

      .nav-menu>li>a {
    padding: 0 0px !important;
    font-size: 12px !important;
    }
 
    ul.nav-menu-right .submitBtn {
    padding: 10px !important;
}
.nav-menu {
    padding-left: 10% !important;
}
.navigation {
    padding: 15px 0 !important;
}
ul.nav-menu-right {
    top: 3px;
}
.wowmenu.tiny ul.nav-menu-right {
    top: 3px;
}
    .navbar-custom {
    padding: 10px 0 !important;
    }
       .navbar-expand-lg .navbar-nav {
        margin-left: 17% !important;
    }
    .navbar-custom .navbar-nav .nav-item .nav-link {
           font-size: 12px !important;
        letter-spacing: 0px !important;
        padding: 0 3px;
}
.heroText {
    bottom: 5%;
}
.wowmenu.tiny .logo {
    height: 70px;
}
.heroText h1 {
    font-size: 45px;
} 
.nav-menu {
    gap: 2px !important; 
}
.logo {
    height:80px;
}
.nav-sticky.navbar-custom .logo {
    height: 80px;
}
.pt-100 {
    padding-top: 0px;
}
}

@media screen and (min-width: 1025px) and (max-width: 1151px) {

.submitBtn {
    padding: 10px 12px !important;
    font-size: 15px !important;
}


    .navbar-custom {
    padding: 10px 0 !important;
    }
       .navbar-expand-lg .navbar-nav {
        margin-left: 17% !important;
    }
    .navbar-custom .navbar-nav .nav-item .nav-link {
           font-size: 12px !important;
        letter-spacing: 0px !important;
        padding: 0 3px;
} 
  
.logo {
    height: 135px;
}
.nav-sticky.navbar-custom .logo {
    height: 110px;
}
.pt-100 {
    padding-top:0px;
}


}
@media only screen and (max-width: 1399px) {
.main-nav ul li a {
    padding: 14px 5px !important;
}

}

@media only screen and (max-width: 1211px) {
    ul.nav-menu-right {
        display: flex
;
        justify-content: start;
        gap: 10px;
        position: relative;
        right: auto;
        top: 20px;
        transition: all 0.2s ease-in-out;
        left: 0px;
        margin: 0 auto;
        width: 100%;
        padding-left: 20px;
        flex-wrap: wrap;
    }
    .heroText h1 {
    font-size: 45px;margin-bottom: 5px !important;
}
.video-icon {
    left: 47%;
}

.nav-menu {
    padding-left: 0% !important;
    justify-content: start !important;
}
.main-nav ul li a {
    padding: 10px 10px 10px 20px !important;
    text-align: left !important;
}
    ul.nav-menu-right {
        padding-left: 20px !important;
    }
    .heroText {
    bottom: 15%;
    }
}



@media only screen and (max-width: 1024px) {

    footer {
    padding: 50px 0;
}
    
.navbar-custom .navbar-nav .nav-item .nav-link {
    margin: 0 0px !important;
    padding: 8px 0px;
}
   .sigma_team {
    margin-bottom: 50px;
}
/* .footerLink ul {
    justify-content: start;
} */


    .testimonial-detail::after {
    font-size: 35px;
}
.info-widget.style-16 .row > *:not(:last-child):after{
    display: none;
}
}
@media screen and (min-width: 981px) and (max-width: 1024px) { 
        .nav-menu > li > a {
    font-size: 12px !important;    padding: 0px 3px !important;
} 
.nav-menu {
    gap: 0px !important;
}

    .submitBtn {
    padding: 8px 8px !important;
    font-size: 13px !important;
}
    .nav-menu {
    justify-content: start;
    /* padding-left: 12% !important; */
}
.userIcon {
    width: 36px;
    height: 36px;
    font-size: 14px !important;
}
.tweetsBox {
    height: 600px;
}
     .navbar-custom {
    padding: 10px 0 !important;
    }
       .navbar-expand-lg .navbar-nav {
        margin-left: 17% !important;
    }
    .navbar-custom .navbar-nav .nav-item .nav-link {
    font-size: 12px !important;    letter-spacing: 0px !important;
    padding: 0 5px;
} 
     /* .footerLink ul {
    padding-right:16%;
} */
 .copyRighttext{
    padding-right:2%;
}
.navigation {
    padding: 20px 0 !important;
}
ul.nav-menu-right {
    top: 10px;
}
.logo {
    height: 100px;
}
  .wowmenu.tiny .logo {
    height: 80px;
}
.navbar-custom {
    padding: 20px 0;
}

.navbar-custom .submitBtn {
    display: flex;
    align-items: center;
    gap: 5px;
}
.userIcon {
    top: 0;
}
.heading {
    font-size: 36px;
}
    .pageTitle h1 {
    font-size: 40px;
     padding-top: 15px;
    }
.mobMB30 {
    margin-bottom: 20px !important;
}
.navbar-custom .navbar-nav .nav-item .nav-link {
    text-align: center;letter-spacing: 0.5px;
}
.navbar-custom .navbar-nav .nav-item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.dc-workdetails-border:after, .dc-workdetails-bordertwo:before{
    display: none;
}

    .dc-title.text-center.mb-3 h3 {
    height: 60px;display: flex;
        align-items: center; 
        justify-content: center;
}
ul#navbar-navlist {
    margin-left: 16% !important;
}
.pt-100 {
    padding-top: 0px;
}
}


@media only screen and (max-width: 980px) {
    .video-icon a {
    width: 70px;
    height: 70px;
    display: flex;
    line-height: 70px;
    font-size: 30px;
    align-items: center;
    justify-content: center;
}
        .heroText h1 {
        font-size: 36px;
        margin-bottom: 5px !important;
    }
    .heroText {
    bottom: 3%;
    }
    .navigation-portrait .nav-menu > li > a {
    padding: 10px 10px 10px 20px !important;
}
    .nav-menu {
    padding-left: 0 !important;
    }
    ul.nav-menu-right
 {
    display: flex;
    justify-content: start;
    gap: 10px;
    position: relative;
    right: auto;
    top: 20px;
    transition: all 0.2s ease-in-out;
    left: 0px;
    margin: 0 auto;
    width: 100%;
            padding-left: 20px;
                    flex-wrap: wrap;

}
    .nav-menu{
        display: block !important;
    }
    .heading {
    font-size: 30px;
}
    .tweetsBox {
    height: 600px;
}
    .mobMB30 {
    margin-bottom: 20px !important;
}
    ul.d-flex.align-items-center.justify-content-between.gap-2.topRight.m-0 {
    flex-direction: column;
    align-items: start !important;
}
        .navbar-expand-lg .navbar-nav {
        margin-left: 0% !important;
    }
     /* .footerLink ul {
    padding-right:25%;
} */
.copyRighttext{
    padding-right:7%;
}



    .review_input_area.enquiryForm {
    margin-top: 30px;
}
    .ugf-container {
    flex: 0 0 80%;
}
    .logo {
    height: 100px;
}
  .wowmenu.tiny .logo {
    height: 80px;
}
.dc-workdetails-border:after, .dc-workdetails-bordertwo:before{
display: none;
}
.product-details .product-single-content {
    padding-left: 0;
    padding-top: 20px;
}
 .pageTitle h1 {
    font-size: 36px; 
    padding-top: 20px;
    }

.sigma_team-body h5 {
    height: 45px;
}
.sigma_team.style-16 .sigma_team-info {
    height: 35px;
}
.footerLinks {
    gap: 10px;
    font-size: 13px;
}
}


@media only screen and (max-width: 767px) {
    .box-text h2 {
    font-size: 36px !important;
    }
    #theme-sidebar section {
    margin: 0 0 2em 0px;
    }
    .page-box {
    padding: 20px 10px;
    }
        .header-img, .single-page-img, .external-div .box-image-page img, .external-div, .featured-image {
        height: 150px !important;
    }
    .icon-bx-wraper.style-3{
        margin-bottom: 20px;
    }
    .eventsConferencebg {
    padding: 50px 0;
}
.eventsConferencebg h1 {
    font-size: 40px;
}
.aiBg {
    padding: 50px 0;
}
.aiBg h1 {
    font-size: 40px;
}
    .eventDetails {
    margin-left: 0;
    margin-top: 20px;
        padding: 20px;
}
.eventDetails > .d-flex {
    flex-direction: column;
}
.eventInfo {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
}
.eventdateTime {
    width: 100%;
    padding: 7px 10px;
    gap: 20px;
    font-size: 13px;
}
.eventButton {
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: start;
}
.td-cta-2-wrap {
    padding: 15px 15px;
}
.td-cta-2-form .td-input {
    padding-left: 10px;
    padding-right: 150px;
}
    .heroText .submitBtn {
    font-size: 14px !important;
    padding: 10px !important;
}
.heroText {
    bottom: 0%;
}
.heroText h1 {
    font-size: 18px;
    margin-bottom: 10px !important;
}
.heroText h4 {
    font-size: 14px;
    margin-bottom: 5px !important;
}
.back-to-top {
    bottom: 20px !important;
}


.profile-info p{
    margin-bottom: 10px;
}
.photo-content .cover-photo {
    min-height: 90px;
}



    .metro_comments-list .comment-item p {
    word-break: break-all;
}
.single_review {
    padding: 15px;
}
.metro_comments-list .comment-item h5 {
    margin-bottom: 5px !important;
}
.metro_comments-list .comment-item {
    margin-bottom: 10px;
}
    .video-icon a {
    width: 60px;
    height: 60px;
    border-radius: 45px;
    background-color: #EE1B24;
    color: #fff;
    text-align: center;
    line-height: 70px;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    display: flex;
}
.video-icon {
    position: absolute;
    left: 45%;
    top: 5%;
    right: 45%;
    margin: 0;
}
        .copyRighttext {
        padding-right: 0;
    }
    .wowmenu.tiny .logo {
    height: 80px;
}
    .hdAbout {
        margin-top: 20px;
    }
    .tweetsBox {
    height: 400px;
}
     .pageTitle h1 {
    font-size: 36px; 
    padding-top: 36px;
    }
    .mobMB30 {
        margin-bottom: 30px !important;
    }
    .sigma_team.style-16 .sigma_team-info {
    height: auto;
}
    .sigma_team-body h5 {
    height: auto;
}
    .info-widget.style-16 {
    padding: 15px;
}
    footer {
    padding: 50px 0;
}
        .footerLink ul {
        padding-right: 0;
    }
    /* #chatbot {
    width: 100% !important;
}
.pt-10 {
    padding-top: 4rem !important;
} */
    .profile-info .profile-details {
    flex-wrap: wrap;
}
.dropdown.ms-auto {
    margin-left: 15px !important;
}
.profile-info {
        padding: 0 0px;
        flex-direction: column;
    }
.profile .profile-photo {
          margin-right: 0;
        margin-left: 10px;
        margin-top: -50px;
}
.profile-tab .nav-item .nav-link {
    margin-right: 0;
}
.card-body {
    padding: 20px;
}
.profile-tab .nav-item .nav-link {
    padding-left: 10px;
    padding-right: 10px;
}
    .mobCol{
        flex-direction: column;
    }
    .metro_nutritional-facts, .metro_ingredients {
    padding: 15px;
}
.mobNone{
    display: none !important;
}
.MobShow{
    display: block !important;
}
.addVideo.desNone.MobShow{
            display: block !important;
        position: relative !important;
        margin-bottom: 15px;
        right: 0 !important;
        top: 0 !important;
}

    .recipe h2 {
    height: auto;
}
img.w-100.rounded-4 {
    margin-bottom: 10px;
}

.icon-bx-wraper.style-9 {
    padding: 15px;
    gap: 15px;
}

.enquiryForm{
    padding: 20px;
}




    .height-lg {
    height: auto;
}
 
    .heading {
    font-size: 32px;
    }
    .dc-workdetails-border {
    margin-bottom: 20px;
}
.footerLinks {
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 8px 0;
}
    .mobShow{
        text-align: center;
        align-items: center !important;
        justify-content: center !important;
    }
    .footerLink ul {
    justify-content: center;
    margin-bottom: 10px;
}
        .testimonial-1 {
        flex-direction: column;
    }
    .testimonial-1 .dz-media img {
        width: 70px;
        border-radius: 8px;
    }
        .testimonial-1 .video-btn {
        display: none;
    }
        .testimonial-1 .testimonial-info {
        padding: 15px;
        text-align: left;
        background-color: transparent;
    }
        .testimonial-1 .testimonial-info .testimonial-name {
        font-size: 16px;
    }
        .testimonial-1 .testimonial-detail {
        padding: 20px 30px 30px 20px;
    }
        .testimonial-1 .testimonial-detail .title {
        font-size: 18px;
    }
    .testimonial-1 .testimonial-detail .title {
    margin-bottom: 10px !important;
}
        .testimonial-1 .dz-media {
        min-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 20px 20px 20px;
    }
    .aone-med-future-r-section ul li:first-child {
        margin-top: 0px;
        margin-bottom: 30px;
    }
        .aone-med-future-r-section ul li {
        width: 100%;
    }
        .aone-med-future-l-inner > div {
        width: 100%;
    }

        .aone-med-future-l-inner {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse !important;
    }
.testimonial-1 .testimonial-detail p {
        font-size: 14px;
    }
    .disc-list li {
    margin: 2rem auto;
}
}

/* Change post title color */
.blog .entry-title a,
.archive .entry-title a {
    color: #0073e6;  /* Your desired color */
}

/* Change hover color */
.blog .entry-title a:hover,
.archive .entry-title a:hover {
    color: #ff6600;
}

/* Change button color */
.blog .read-more a,
.archive .read-more a {
    background-color: #009688; 
    color: #fff;
}

/* Hide Meta section in sidebar */
.widget_meta {
    display: none !important;
}

.widget_tag_cloud {
    display: none !important;
}
