@charset "UTF-8";

:root {
  --primary: #f7951f;
  --secondary: #f50366;
  --white: #fff;
  --white-2: #dfdfdf;
  --white-3: #f1f1f1;
  --white-4: #FEFEFF;
  --dark: #121212;
  --dark-2: #171717;
  --dark-3: #222;
  --black-2: #060024;
  --black-3: #01001e;
  --gray: #535353;
  --gray-2: #d8d8d8;
  --gray-3: #e2e2e2;
  --gray-4: #9f9f9f;
  --gray-5: #343434;
  --gray-6: #9a9a9a;
  --gray-7: #999;
  --font-poppins: "Poppins", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

/*----------------------------------------*/
/*  02. MIXIN DECLARATION
/*----------------------------------------*/
/*----------------------------------------*/
/* 03. TYPOGRAPHY CSS START
/*----------------------------------------*/
* {
  margin: 0;
  padding: 0;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
         url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
         url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
         url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
         url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('../Roboto-Medium.woff2') format('woff2'),
        url('../Roboto-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../Roboto-Regular.woff2') format('woff2'),
        url('../Roboto-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../Roboto-Bold.woff2') format('woff2'),
        url('../Roboto-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




body {
   font-family: "Poppins", sans-serif;
      overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
     font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
   font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.3s;
      font-family: "Poppins", sans-serif !important;
}

p {
  padding: 0;
  margin: 0;
  font-style: normal;
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  color: var(--gray);
    font-family: "Poppins", sans-serif;

  
}

img {

    max-width: 100%;
  height: auto;
  object-fit: cover;
}

/*----------------------------------------*/
/* 04. THEME CSS START
/*----------------------------------------*/
.pt-100 {
  padding-top: 100px;
}
@media (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }

}
@media (max-width: 767px) {
  .pt-100 {
    padding-top: 50px;
  }

}

.pt-120 {
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .pt-120 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-120 {
    padding-top: 50px;
  }
}

.pt-125 {
  padding-top: 125px;
}
@media (max-width: 1199px) {
  .pt-125 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-125 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-125 {
    padding-top: 50px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media (max-width: 1199px) {
  .pt-130 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pt-130 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}
@media (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-110 {
    padding-bottom: 50px;
  }
}

.pb-125 {
  padding-bottom: 125px;
}
@media (max-width: 1199px) {
  .pb-125 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-125 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-125 {
    padding-bottom: 50px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media (max-width: 1199px) {
  .pb-130 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-130 {
    padding-bottom: 50px;
  }
}

.mt-130 {
  margin-top: 130px;
}
@media (max-width: 1199px) {
  .mt-130 {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .mt-130 {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .mt-130 {
    margin-top: 50px;
  }
}

@media (min-width: 1400px) {
  .container.lptp {
    max-width: 1170px;
  }
}

@media (min-width: 1920px) {
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 17%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58%;
  }
}
.list-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding-top: 25px;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .list-check {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    padding-top: 30px;
  }
}
.list-check li {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-2);
  position: relative;
  padding-left: 35px;
  font-family: var(--font-poppins);
}
@media (max-width: 991px) {
  .list-check li {
    font-size: 16px;
  }
}
.list-check li::before {
  position: absolute;
  content: "\f00c";
  left: 0;
  width: 25px;
  height: 25px;
  font-weight: 700;
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  border: 1px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  text-align: center;
  line-height: 25px;
}
.list-check-2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 1399px) {
  .list-check-2 {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .list-check-2 {
    gap: 15px;
  }
}
.list-check-2 li {
  font-size: 18px;
  color: var(--black-2);
  position: relative;
  padding-left: 35px;
}
@media (max-width: 1199px) {
  .list-check-2 li {
    font-size: 16px;
    padding-left: 25px;
  }
}
@media (max-width: 991px) {
  .list-check-2 li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .list-check-2 li {
    font-size: 16px;
  }

 
}
.list-check-2 li::before {
  position: absolute;
  content: "\f058";
  left: 0;
  width: 25px;
  height: 25px;
  font-weight: 700;
  color: var(--primary);
  font-family: "Font Awesome 6 Free";
}
.list-check-2 li.disabled {
  color: var(--gray-6);
}
.list-check-2 li.disabled::before {
  color: var(--gray-2);
}

.best-choice {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
  padding: 10px;
  border-radius: 50px;
  text-align: center;
  text-transform: capitalize;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
  position: absolute;
  width: 150px;
  top: -62px;
  left: 50%;
  transform: translateX(-50%);
}

.newsletter__inner {
  padding: 80px 70px;
  margin-bottom: -150px;
  z-index: 9;
  position: relative;
  background-color: var(--white-3);
}
@media (max-width: 1199px) {
  .newsletter__inner {
    padding: 60px 50px;
  }
}
@media (max-width: 991px) {
  .newsletter__inner {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .newsletter__inner {
    padding: 30px 15px;
  }
}
.newsletter__inner .title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .newsletter__inner .title {
    padding-bottom: 10px;
  }
}
.newsletter__inner p {
  max-width: 400px;
}
.newsletter__inner .newsletter {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .newsletter__inner .newsletter {
    padding-top: 30px;
  }
}

.separator {
  padding-bottom: 50px;
}
@media (max-width: 1919px) {
  .separator {
    padding-bottom: 40px;
  }
}

.scroll-top {
  position: fixed;
  width: 50px;
  height: 50px;
  background: linear-gradient(to top, var(--primary) 0%, var(--secondary) 25%, var(--primary) 50%, var(--secondary) 75%, var(--primary) 100%);
  background-size: 400% 400%;
  right: 20px;
  bottom: 0;
  font-size: 18px;
  color: var(--white);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s;
  display: none;
}
.scroll-top.showed {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  background-position: 100% 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: var(--white);
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  -webkit-animation: cxuSpin 2s linear infinite;
  animation: cxuSpin 2s linear infinite;
}
#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--black-2);
  -webkit-animation: cxuSpin 3s linear infinite;
  animation: cxuSpin 3s linear infinite;
}
#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--secondary);
  -webkit-animation: cxuSpin 1.5s linear infinite;
  animation: cxuSpin 1.5s linear infinite;
}

.dark .list-check li {
  color: var(--gray-7);
}
.dark .list-check-2 li {
  color: var(--gray-7);
}
.dark .list-check-2 li.disabled {
  color: var(--gray);
}
.dark .list-check-2 li.disabled::before {
  color: var(--gray);
}
.dark .newsletter__inner {
  background-color: var(--dark-2);
}
.dark .newsletter__inner .title {
  color: var(--white);
}
.dark .error__title {
  color: var(--white);
}
.dark .error__sub-title {
  color: var(--white);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

/*----------------------------------------*/
/* 05. BUTTON CSS START
/*----------------------------------------*/
.cxu-btn-primary {
    display: inline-block;
    color: var(--white);
    font-family: var(--font-roboto);
    padding: 15px 30px;
        font-size: 21px;
    border-radius: 3px;
    background: #f7951f;
    transition: all 0.5s;
}
.cxu-btn-primary:hover {
  background-position: 100% 100%;
  color: var(--white);
}
.cxu-btn-secondary {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-roboto);
  padding: 18px 35px;
  border-radius: 3px;
  background-color: var(--black-3);
}
.cxu-btn-secondary:hover {
  color: var(--white);
  background-color: var(--primary);
}
.cxu-btn-border {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
    padding: 13px 17px;
    border-radius: 50px;
    /* text-transform: uppercase; */
    border: 1px solid var(--white);
}
.cxu-btn-border:hover {
  color: var(--white);
  border-color: var(--secondary);
  background: linear-gradient(to right, var(--primary), var(--secondary));
}
.cxu-btn-round {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-roboto);
  padding: 18px 30px;
  border-radius: 50px;
  background-image: linear-gradient(to right, var(--primary) 0%, var(--secondary) 33%, var(--primary) 67%, var(--secondary) 100%);
  background-size: 300% 300%;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
}
.cxu-btn-round:hover {
  color: var(--white);
  background-position: 100%, 100%;
}
.cxu-btn-round-2 {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: var(--white);
  padding: 18px 30px;
  border-radius: 50px;
  text-align: center;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}
.cxu-btn-round-2:hover {
  color: var(--white);
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}
.cxu-btn-round-dark {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: var(--white);
  padding: 18px 30px;
  border-radius: 50px;
  text-align: center;
  background-color: var(--black-3);
}
.cxu-btn-round-dark:hover {
  color: var(--white);
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}

.view-all {
  font-size: 16px;
  display: inline-block;
  padding: 17px 26px;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .view-all {
    font-size: 14px;
    padding: 15px 22px;
  }
}
.view-all:hover {
  color: var(--white);
}

/*----------------------------------------*/
/*  06. TITLE CSS START
/*----------------------------------------*/
.sec-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  padding-bottom: 20px;

}
@media (max-width: 1399px) {
  .sec-title {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .sec-title {
    font-size: 28px;
  }
}
.sec-title span {
  color: var(--primary);
}

.sec-sub-title {
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.dark p {
  color: #999;
}
.dark .sec-title {
  color: var(--white);
}

/*----------------------------------------*/
/*  07. WIDGET CSS START
/*----------------------------------------*/
.sidebar__widgets {
  border: 1px solid var(--white-3);
}

.widget__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-3);
  padding-bottom: 40px;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .widget__title {
    padding-bottom: 30px;
  }
}
.widget__search {
  padding: 30px;
  border-bottom: 1px solid var(--white-3);
}
@media (max-width: 1199px) {
  .widget__search {
    padding: 30px 15px;
  }
}
.widget__search form {
  position: relative;
}
.widget__search input {
  width: 100%;
  border: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #989898;
  outline: none;
  padding: 19px 15px;
  position: relative;
  border-radius: 3px;
  background-color: #f6f6f6;
}
.widget__search input::placeholder {
  opacity: 1;
}
.widget__search .submit {
  width: unset;
  position: absolute;
  right: 0;
  color: var(--white);
  padding: 19px 15px 19px 40px;
  background-color: var(--primary);
  background-image: url(../imgs/shape/6.png);
  background-repeat: no-repeat;
  background-position: 18px;
  border-radius: 3px;
}
.widget__category {
  padding: 30px;
  border-bottom: 1px solid var(--white-3);
}
@media (max-width: 1199px) {
  .widget__category {
    padding: 30px 15px;
  }
}
.widget__category ul li {
  padding-bottom: 10px;
}
.widget__category ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--black-3);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.widget__category ul li a::before {
  position: absolute;
  content: "\f054";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  font-weight: 700;
  font-family: "Font Awesome 6 Free";
  opacity: 0;
  transition: all 0.3s;
  font-size: 14px;
}
.widget__category ul li a:hover {
  padding-left: 15px;
  color: var(--primary);
}
.widget__category ul li a:hover::before {
  opacity: 1;
}
.widget__rposts {
  padding: 30px;
  border-bottom: 1px solid var(--white-3);
}
@media (max-width: 1199px) {
  .widget__rposts {
    padding: 30px 15px;
  }
}
.widget__rposts .recent-item {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 90px auto;
  margin-bottom: 30px;
}
.widget__rposts img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget__rposts .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--black-3);
  padding-bottom: 5px;
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .widget__rposts .title {
    line-height: 1.5;
    font-size: 15px;
    padding-bottom: 5px;
  }
}
.widget__rposts .title:hover {
  color: var(--primary);
}
.widget__rposts p {
  color: #8d8d8d;
  font-size: 14px;
}
@media (max-width: 1199px) {
  .widget__rposts p {
    font-size: 14px;
  }
}
.widget__tags {
  padding: 30px;
}
@media (max-width: 1199px) {
  .widget__tags {
    padding: 30px 15px;
  }
}
.widget__tags li {
  display: inline-block;
  padding: 0 8px 8px 0;
}
.widget__tags li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--gray);
  padding: 5px 10px 3px;
  border: 1px solid var(--white-3);
  text-transform: capitalize;
}
.widget__tags li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border: 1px solid var(--primary);
}
.widget__ads {
  margin-top: 30px;
}

.dark .sidebar__widgets {
  border-color: var(--white-6);
}
.dark .widget__title {
  color: var(--white);
}
.dark .widget__category {
  border-color: var(--white-6);
}
.dark .widget__search {
  border-color: var(--white-6);
}
.dark .widget__rposts {
  border-color: var(--white-6);
}
.dark .widget__rposts .title {
  color: var(--white);
}
.dark .widget__rposts .title:hover {
  color: var(--primary);
}
.dark .widget__category ul li a {
  color: var(--white);
}
.dark .widget__category ul li a:hover {
  color: var(--primary);
}
.dark .widget__tags li a {
  color: var(--gray-2);
}

/*----------------------------------------*/
/*  08. ANIMATION CSS START
/*----------------------------------------*/
@keyframes cxuRipple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes moveBottom {
  0% {
    transform: translateX(-25px);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25px);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wcLoading {
  0% {
    transform: scaleY(0.1);
    background: var(--white);
  }
  50% {
    transform: scaleY(1);
    background: var(--primary);
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}
@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
    -ms-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}
@keyframes cxufadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.cxufadeUp, .cxufadeUp4, .cxufadeUp3, .cxufadeUp2 {
  opacity: 0;
  -webkit-animation-name: cxufadeUp;
  animation-name: cxufadeUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.cxufadeUp2 {
  animation-delay: 0.3s;
}

.cxufadeUp3 {
  animation-delay: 0.45s;
}

.cxufadeUp4 {
  animation-delay: 0.6s;
}

@-webkit-keyframes cxuSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes cxuSpin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*----------------------------------------*/
/*  09. LOADING CSS START
/*----------------------------------------*/
.preloader {
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  position: relative;
  z-index: 999;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.loading .bar {
  width: 6px;
  height: 60px;
  background: var(--white);
  display: inline-block;
  transform-origin: bottom center;
  animation: wcLoading 1.5s ease-in-out infinite;
}
.loading .bar1 {
  animation-delay: 0.1s;
}
.loading .bar2 {
  animation-delay: 0.2s;
}
.loading .bar3 {
  animation-delay: 0.3s;
}
.loading .bar4 {
  animation-delay: 0.4s;
}
.loading .bar5 {
  animation-delay: 0.5s;
}
.loading .bar6 {
  animation-delay: 0.6s;
}
.loading .bar7 {
  animation-delay: 0.7s;
}
.loading .bar8 {
  animation-delay: 0.8s;
}

/*----------------------------------------*/
/*  10. MENU CSS START
/*----------------------------------------*/
.main-menu {
  text-align: right;
}
@media (max-width: 1199px) {
  .main-menu {
    display: none;
  }
  .sec-title {
    font-size: 22px;
  }
}
.main-menu ul li {
  display: inline-block;
  padding: 0 13px;
}
.main-menu ul li:hover .main-dropdown {
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.main-menu ul li:hover .mega-menu {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.header__logo-2 img
{
  width: 150px;
}
.main-menu ul li a {
    display: block;
    padding: 8px 5px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
}
.main-menu ul li a:hover {
  color: #fff;
}
.main-menu .main-dropdown {
  position: absolute;
  width: 260px;
  top: 62px;
  background: #0e456f;
  padding: 1px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.main-menu .main-dropdown li {
  padding: 0 15px;
  display: block;
  text-align: left;
  position: relative;    border-bottom: 1px solid #fff;
}
.main-menu .main-dropdown li:hover .sub-dropdown {
  left: 100%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1919px) {
  .main-menu .main-dropdown li:hover .sub-dropdown {
    left: -100%;
  }
}
.main-menu .main-dropdown li a {
    padding: 10px 0;
    text-align: left;
    font-size: 13px;
}
.main-menu .sub-dropdown {
  position: absolute;
  width: 260px;
  left: 90%;
  top: 0;
  background: var(--black-2);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
@media (max-width: 1919px) {
  .main-menu .sub-dropdown {
    left: -90%;
  }
}
.main-menu .sub-dropdown li {
  padding: 0 30px;
  display: block;
  text-align: left;
  position: relative;
}
.main-menu .sub-dropdown li a {
  padding: 10px 0;
}
.main-menu .has-dropdown {
  position: relative;
}
.main-menu .has-dropdown:hover::after {
  color: var(--primary);
}
.main-menu .has-dropdown::after {
    position: absolute;
    content: "\f107";
    width: 10px;
    height: 10px;
    top: 6px;
    color: var(--white);
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    transition: all 0.2s;
}
.main-menu .has-megamenu {
  position: static;
}
.main-menu .has-megamenu:hover::after {
  color: var(--primary);
}
.main-menu .has-megamenu::after {
  position: absolute;
  content: "\f107";
  width: 15px;
  height: 15px;
  top: 30px;
  color: var(--white);
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: all 0.2s;
}
.main-menu .main-dropdown .has-dropdown {
  position: relative;
}
.main-menu .main-dropdown .has-dropdown:hover::after {
  color: var(--primary);
}
.main-menu .main-dropdown .has-dropdown::after {
  position: absolute;
  content: "\f107";
  width: 15px;
  height: 15px;
  top: 15px;
  right: 20px;
  color: var(--white);
  transform: rotate(-90deg);
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: all 0.2s;
}
.main-menu .mega-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100px;
  z-index: 9;
  background-color: var(--black-2);
  text-align: left;
  padding: 40px 230px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
@media (max-width: 1919px) {
  .main-menu .mega-menu {
    padding: 40px 50px;
  }
}
@media (max-width: 1399px) {
  .main-menu .mega-menu {
    padding: 40px 20px;
  }
}
.main-menu .mega-menu li {
  display: block;
}
.main-menu .mega-menu li:first-child {
  font-size: 18px;
  color: var(--white);
  padding-bottom: 10px;
  text-transform: capitalize;
}
.main-menu .mega-menu li a {
  padding: 8px 5px;
}

/*----------------------------------------*/
/*  11. MODAL CSS START
/*----------------------------------------*/
.modal {
  padding-top: 60px;
}
.modal-body {
  padding: 8px;
  padding-bottom: 0;
}
.modal__wkprocess.modal {
  --bs-modal-width: 800px;
}
.modal__wkprocess iframe {
  width: 100%;
  height: 500px;
}

.mt-15
{
 margin-top:-15px;   
}
@media (max-width: 767px) {

  .mt-15
{
 margin-top:0px;   
}
  .modal__wkprocess iframe {
    height: 300px;
    --bs-modal-width: 230px;
  }

  .video-sliders video {
    width: 100%;
    object-fit: cover;        margin-top: 29% !important;
    min-height: 500px;
}
.hero-slider-banner {
  
    top: 22% !important;
  
}
.portfolio__title
{
    margin-bottom: 0 !important;
}


}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  border: none;
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 18px;
  cursor: pointer;
  z-index: 9;
  color: var(--white-3);
  transition: all 0.3s;
  background: linear-gradient(to top, var(--primary), var(--secondary));
}
@media (max-width: 767px) {
  .modal-close {
    right: -10px;
    top: -10px;
  }
}
.modal-close:hover {
  color: var(--white);
}

.dark .modal-content {
  background-color: var(--dark);
}
.dark .modal-header {
  border-color: var(--gray);
}
.dark .btn-close {
  filter: invert(1);
}

/*----------------------------------------*/
/*  12. HEADER CSS START
/*----------------------------------------*/
.sticky-logo {
  display: none;
}

.header__area {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .header__area {
    padding: 15px 0;
  }
}
.header__area.sticky {
  position: fixed;
  transition: all 0.5s;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-3);
  animation: cxufadeUp 0.5s 1 linear;
}
.header__area.sticky .logo {
  display: none;
}
.header__area.sticky .sticky-logo {
  display: block;
}
.header__area.sticky .main-menu ul li a {
  color: var(--black-2);
}
.header__area.sticky .main-menu ul li a:hover {
  color: var(--primary);
}
.header__area.sticky .main-menu .main-dropdown {
  background-color: var(--white);
}
.header__area.sticky .main-menu .sub-dropdown {
  background-color: var(--white);
}
.header__area.sticky .main-menu .mega-menu {
  background-color: var(--white);
}
.header__area.sticky .main-menu .mega-menu li:first-child {
  color: var(--black-2);
}
.header__area.sticky .main-menu .has-dropdown::after {
  color: var(--black-2);
}
.header__area.sticky .main-menu .has-dropdown:hover::after {
  color: var(--primary);
}
.header__area.sticky .main-menu .has-megamenu::after {
  color: var(--black-2);
}
.header__area.sticky .main-menu .has-megamenu:hover::after {
  color: var(--primary);
}
.header__area.sticky .header__others button {
  color: var(--black-2);
}

section
{
  position: relative;
  z-index: 0;
}
.header__area-2 {

    transition: all 0.5s;
    z-index: 99999;
    padding: revert;
}
.header__right-2
{
  background: #f7941d;
}

@media (max-width: 767px) {
  .header__area-2 .cxu-btn-border {
    display: none;
  }
 
  .venu-header
  {
              
        font-size: 10px !important;
        line-height: 15px !important;
        position: absolute;
        top: 5px;
        right: 7px;
  }
}
/* .header__area-2.sticky {
  height: 100px;
  position: fixed;
  transition: all 0.5s;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
  animation: cxufadeUp 0.5s 1 linear;
} */
.header__area-2.sticky::before {
  position: unset;
}
.header__area-2.sticky::after {
  z-index: -1;
}
.header__area-2.sticky .logo {
  display: none;
}
.header__area-2.sticky .sticky-logo {
  display: block;margin-top: -15px;
}
.header__area-2.sticky .main-menu ul li a:hover {
  color: var(--primary);
}
.header__area-2.sticky .main-menu .has-dropdown::after {
  color: var(--black-2);
  top: 23px;
}
.header__area-2.sticky .main-menu .has-dropdown:hover::after {
  color: var(--primary);
}
.header__area-2.sticky .main-menu .main-dropdown .has-dropdown::after {
  color: var(--white);
}
.header__area-2.sticky .header__logo-2 {
  padding-top: 0;
  transition: all 0.5s;
}
.header__area-2.sticky .header__inner-2 {
  align-items: center;
  height: 80px;
}
.header__area-2.sticky .header__info-2 {
  opacity: 0;
  height: 0;
  padding-top: 0;
  visibility: hidden;
}
.header__area-2.sticky .header__menu-2 {
  padding-top: 0;
}
.header__area-2.sticky .header__others button {
  color: var(--black-2);
}
.header__area-2.sticky .menu-2-bg {
  width: 100%;
  height: 80px;
  top: 0;
  clip-path: unset;
  background-color: var(--white);

}
.header__area-2.sticky .main-menu > ul > li > a {
  color: var(--black-2);
  padding: 28px 3px;
}
.header__area-2.sticky .cxu-btn-border {
  color: var(--black-2);
  border-color: var(--black-2);
}
.header__area-2.sticky .cxu-btn-border:hover {
  color: var(--white);
  border-color: var(--secondary);
}
.header__info-2 {
  position: relative;
  display: flex;
  gap: 120px;
  justify-content: flex-end;
  z-index: 2;
  padding-top: 13px;
  transition: all 0.5s;
}
@media (max-width: 1919px) {
  .header__info-2 {
    grid-gap: 80px;
  }
}
@media (max-width: 1399px) {
  .header__info-2 {
    padding-top: 8px;
  }
}
@media (max-width: 1199px) {
  .header__info-2 {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .header__info-2 {
    display: none;
  }
}
.header__info-2 .email {
  position: relative;
}
.header__info-2 .email::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 22px;
  top: 0;
  right: -55px;
  background-color: var(--gray-2);
}
@media (max-width: 1919px) {
  .header__info-2 .email::after {
    right: -40px;
  }
}
@media (max-width: 1199px) {
  .header__info-2 .email::after {
    right: -15px;
  }
}
.header__info-2 .email li {
  transition: all 0.3s;
}
.header__info-2 .email li:hover i {
  color: var(--secondary);
}
.header__info-2 .email li:hover a {
  color: var(--primary);
}
.header__info-2 .email li i {
  padding-right: 5px;
  color: var(--primary);
  transition: all 0.3s;
}
.header__info-2 .email li a {
  font-size: 16px;
  color: var(--black-2);
}
.header__info-2 .address {
  position: relative;
}
.header__info-2 .address::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 22px;
  top: 0;
  right: -55px;
  background-color: var(--gray-2);
}
@media (max-width: 1919px) {
  .header__info-2 .address::after {
    right: -40px;
  }
}
@media (max-width: 1199px) {
  .header__info-2 .address::after {
    position: unset;
  }
}
.header__info-2 .address p {
  color: var(--black-2);
  font-size: 16px;
}
@media (max-width: 1399px) {
  .header__info-2 .address p {
    font-size: 14px;
  }
}
.header__info-2 .address p i {
  padding-right: 5px;
  color: var(--primary);
}
.header__inner {
  display: grid;
  grid-template-columns: 150px auto 60px;
  grid-gap: 30px;
  align-items: center;
}
.header__inner-2 {
  display: grid;
  grid-template-columns: 330px auto;
  grid-gap: 10px;
}
.header__others {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  .header__others {
       gap: 20px;
    justify-content: flex-end;
    margin-top: 0px;
    margin-left: 21px;
    z-index: 99999999;
    position: relative;
  }
}
.header__others button {
  border: none;
  font-size: 18px;
  color: var(--white);
  background: transparent;
}
.header__others .search-close {
  display: none;
}
.header__search {
  position: fixed;
  width: 300px;
  right: 60px;
  top: 95px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  padding: 10px;
  background-color: var(--black-3);
}
@media (min-width: 1920px) {
  .header__search {
    right: 10%;
  }
}
@media (max-width: 767px) {
  .header__search {
    right: 10px;
  }
}
.header__search.showed {
  top: 85px;
  opacity: 1;
  visibility: visible;
}
.header__search input {
  width: 100%;
  padding: 12px;
  outline: none;
  border: none;
  border-radius: 5px;
  text-transform: capitalize;
}
.header__logo-2 {
  position: relative;
  z-index: 9;
  padding-top: 0px;
}

@media (max-width: 767px) {
  .header__logo-2 {
        gap: 20px;
    justify-content: flex-end;
    margin-top: 0px;
    margin-left: 1px;
    z-index: 99999999;
    position: relative;
  }
}
.header__menu-2 {
  position: relative;
  z-index: 1;

  grid-gap: 20px;
  grid-template-columns: auto 5px;

  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .header__menu-2 {
    padding-top: 22px;
  }
}
@media (max-width: 1199px) {
  .header__menu-2 {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
}
@media (max-width: 991px) {
  .header__menu-2 {
    padding-top: 39px;
  }
}
@media (max-width: 767px) {
  .header__menu-2 {
    padding-top: 25px;
  }
}

.header__social-2 {
  display: flex;
  gap: 20px;
}

.header__area-2 .container-fluid
{
padding-right: 0px;
    background: #fff;
}
@media (max-width: 1199px) {
  .header__social-2 {
    display: none;
  }
}
.header__social-2 li a {
  color: var(--black-3);
  font-size: 16px;
}
.header__social-2 li a:hover {
  color: var(--primary);
}
@media (max-width: 1199px) {
  .header__social-2.share {
    display: flex;
  }
}



@media (max-width: 767px) {
 .mt-20 {
    margin-top: 8px !important;
}
}

.dark.header__area.sticky {
  border-color: #222;
}
.dark .header__social-2 li a {
  color: var(--white);
}
.dark .header__social-2 li a:hover {
  color: var(--primary);
}

/*----------------------------------------*/
/*  13. OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__area {
  position: fixed;
  width: 400px;
  height: 100vh;
  top: 0;
  right: -400px;
  z-index: 99;
  padding: 20px 20px;
  background: #000000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .offcanvas__area {
    width: 350px;
    right: -350px;
  }
}
.offcanvas__area.showed {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.offcanvas__top {
  gap: 30px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}
@media (max-width: 1399px) {
  .offcanvas__top {
    padding-bottom: 0px;
  }
}
.offcanvas__top img {
max-width: 160px;
    height: min-content;
    visibility: hidden;
}
.offcanvas__top button {
  background-color: transparent;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: 50px;
  font-size: 18px;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-3);
}
.offcanvas__top button:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.offcanvas__menu {
  display: none;
  padding-bottom: 50px;
}
@media (max-width: 1199px) {
  .offcanvas__menu {
    display: block;
    height: 75vh;
    overflow: scroll;
  }
}
.offcanvas-menu li a {
  font-size: 11px;
  color: var(--white);
  text-transform: capitalize;
  padding: 4px 0;
  display: block;
}
.offcanvas__map {
  padding-bottom: 50px;
}
@media (max-width: 1919px) {
  .offcanvas__map {
    padding-bottom: 40px;
  }
}
@media (max-width: 1399px) {
  .offcanvas__map {
    padding-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .offcanvas__map {
    display: none;
  }
}
.offcanvas__map iframe {
  width: 100%;
  height: 220px;
}
@media (max-width: 1399px) {
  .offcanvas__map iframe {
    height: 120px;
  }
}
.offcanvas__search {
  padding-bottom: 100px;
}
@media (max-width: 1399px) {
  .offcanvas__search {
    padding-bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .offcanvas__search {
    display: none;
  }
}
.offcanvas__search input {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .offcanvas__btm {
    display: none;
  }
}

.close_offcanvas {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 24px;
  color: var(--black-2);
  padding: 1px 11px;
  cursor: pointer;
  border: 1px solid var(--black-2);
  border-radius: 100%;
  transition: all 0.3s;
}
.close_offcanvas:hover {
  color: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 1199px) {
  .close_offcanvas {
    top: 20px;
    right: 30px;
  }
}
@media (max-width: 991px) {
  .close_offcanvas {
    top: 15px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .close_offcanvas {
    top: 6px;
    right: 25px;
  }

  .mean-container .mean-nav

  {
        margin-top: 20px;
  }
}

.mean-container .mean-nav > ul {
  display: block !important;
}
.mean-container .mean-bar {
  padding: 0;
  background: none;
}
.mean-container .mean-nav {
  width: 97%;
}
.mean-container .mean-nav ul li a {

  text-transform: capitalize;
  border-color: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a :hover {
  background-color: var(--black-2);
}
.mean-container .mean-nav ul li li a {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.1);
}
.mean-container .mean-nav ul li a.mean-expand {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.mean-container .mean-nav ul li a.mean-expand:hover {
  background-color: var(--black-3);
}
.mean-container a.meanmenu-reveal {
  display: none !important;
}

/*----------------------------------------*/
/*  14. HERO CSS START
/*----------------------------------------*/
.hero__area {
  background-image: url(../imgs/SRE25.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 290px;
  padding-bottom: 190px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 1919px) {
  .hero__area {
           padding-top: 405px;
        padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .hero__area {
    padding-top: 58px;
    padding-bottom: 50px;
  }
}


.hero__area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__area .shape-1 {
  position: absolute;
  top: 100px;
  left: 0;
  animation: moveBottom 5s infinite linear;
}
@media (max-width: 1919px) {
  .hero__area .shape-1 {
    left: -40px;
  }
}
@media (max-width: 767px) {
  .hero__area .shape-1 {
    max-width: 100px;
  }
}
.hero__area .shape-2 {
  position: absolute;
  bottom: 100px;
  right: -30px;
  animation: moveBottom 5s infinite linear;
}
@media (max-width: 767px) {
  .hero__area .shape-2 {
    max-width: 100px;
  }
}
.hero__area p {
  font-size: 18px;
  max-width: 570px;
  color: var(--gray-2);
  padding-bottom: 50px;
}
.hero__area-2 {
  background-image: url(../imgs/hero/bg-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 340px;
  padding-bottom: 220px;
  position: relative;
  z-index: 1;
}



@media (max-width: 1399px) {
  .hero__area-2 {
    padding-top: 270px;
  }
}
@media (max-width: 1199px) {
  .hero__area-2 {
    padding-top: 230px;
  }
}
@media (max-width: 991px) {
  .hero__area-2 {
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .hero__area-2 {
    padding-top: 200px;
    padding-bottom: 120px;
  }
}
.hero__area-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__area-2 p {
  font-size: 18px;
  max-width: 570px;
  color: var(--gray-2);
  padding-bottom: 50px;
}
.hero__area.no-pb {
  padding-bottom: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
}
.hero__sub-title {
  font-size: 18px;
  font-weight: 700;
  color: #f7951f;
  padding-bottom: 15px;
  text-transform: uppercase;
}
.hero__title {

  color: var(--white);
  font-weight: 700;
  line-height: 1;
  padding-bottom: 20px;
    font-size: 45px;
    line-height: 51px;
}


@media (max-width: 767px) {
  .hero__title {
       font-size: 25px;
    padding-bottom: 20px;
    line-height: 30px;
  }
}
.hero__title span {
  color: var(--primary);
}

.hero__slider .hero__content {
  opacity: 0;
  transition: all 0.5s;
}
.hero__slider .swiper-slide-active .hero__content {
  opacity: 1;
}
.hero__slider .swiper-pagination {
  bottom: 30px;
}
.hero__slider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  opacity: 1;
  background: var(--black-3);    display: none;
}
.hero__slider .swiper-pagination-bullet-active {
  background: var(--white);
}

.breadcrumb__area {
    background-image: url(../imgs/inner.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 0;

}
@media (max-width: 1199px) {
  .breadcrumb__area {
           padding-top: 50px;
        padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .breadcrumb__area {
        padding-top: 50px;
        padding-bottom: 50px;
  }
}
.breadcrumb__area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.breadcrumb__content p {
  position: relative;
  z-index: 1;
}
.breadcrumb__content p a {
  color: var(--white);
  font-size: 16px;
  position: relative;
  display: inline-block;
  margin-right: 40px;
  text-transform: capitalize;
}
.breadcrumb__content p a:hover {
  color: var(--secondary);
}
.breadcrumb__content p a:nth-child(1) {
  color: var(--primary);
}
.breadcrumb__content p a:nth-child(1):hover {
  color: var(--secondary);
}
.breadcrumb__content p a::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  top: 6px;
  right: -25px;
  background-color: var(--white);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.breadcrumb__content p span {
  color: var(--white);
  font-size: 16px;
  text-transform: capitalize;
}
.breadcrumb__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 22px;
        padding-bottom: 0px;
  }
}

/*----------------------------------------*/
/*  15. FEATURE CSS START
/*----------------------------------------*/
@media (max-width: 767px) {
  .feature__area.pb-125 {
    padding-bottom: 10px;
  }
}
.feature__item {
  display: grid;
  align-items: center;
  grid-template-columns: 50px auto;
  grid-gap: 20px;
}
@media (max-width: 1199px) {
  .feature__item {
    grid-template-columns: 40px auto;
    grid-gap: 10px;
  }
}
@media (max-width: 991px) {
  .feature__item {
    grid-gap: 20px;
    margin-bottom: 40px;
  }
}
.feature__item-2 {
  padding: 60px 40px;
  transition: all 0.5s;
}
@media (max-width: 1399px) {
  .feature__item-2 {
    padding: 50px 25px;
  }
}
@media (max-width: 991px) {
  .feature__item-2 {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .feature__item-2 {
    padding: 0;
    margin-bottom: 30px;
  }
}
.feature__item-2:hover {
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}
.feature__item-2 img {
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .feature__item-2 img {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .feature__item-2 img {
    margin-bottom: 15px;
  }
}
.feature__item-2 p {
  font-family: var(--font-poppins);
  color: var(--white);
  font-size: 18px;
}
@media (max-width: 1199px) {
  .feature__item-2 p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .feature__item-2 p {
    font-size: 14px;
  }
}
.feature__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-3);
  font-family: var(--font-poppins);
}
@media (max-width: 1199px) {
  .feature__text {
    font-size: 16px;
  }
}
.feature__text-2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  font-family: var(--font-poppins);
}
@media (max-width: 1199px) {
  .feature__text-2 {
    font-size: 16px;
  }
}
.feature__inner-2 {
  position: relative;
  z-index: 9;
  margin-top: -70px;
  background-color: var(--black-3);
}
@media (max-width: 991px) {
  .feature__inner-2 {
    padding: 0 15px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (max-width: 767px) {
  .feature__inner-2 {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 20px 10px;
  }
}

.dark.feature__area {
  background-color: var(--dark);
}
.dark .feature__text {
  color: var(--white);
}


/*----------------------------------------*/
/*  17. SERVICE CSS START
/*----------------------------------------*/
.service__area {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .service__area {
    padding-bottom: 30px;
  }
}
.service__area .sec-title-wrap {
  padding-bottom:10px;
}
.service__area a {
  position: relative;
  margin-bottom: 65px;
  display: block;
}
@media (max-width: 767px) {
  .service__area a {
    margin-bottom: 40px;
  }
}
.service__area-2 {
  background-color: var(--white-3);
  padding-bottom: 90px;
}
@media (max-width: 1199px) {
  .service__area-2 {
    padding-bottom: 30px;
  }
}
.service__area-2 .row {
  --bs-gutter-x: 2.5rem;
}
@media (max-width: 1199px) {
  .service__area-2 .row {
    --bs-gutter-x: 1.5rem;
  }
}
.service__area-2 .sec-title-wrap {
  text-align: center;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .service__area-2 .sec-title-wrap {
    padding-bottom: 0;
  }
}
.service__item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 20px;
  transition: all 0.3s;
}
@media (max-width: 991px) {
  .service__item {
    grid-gap: 10px;
  }
}
.service__item:hover .service__left .icon {
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}
.service__item:hover .service__left .icon path {
  fill: var(--white);
}
.service__item:hover .service__title {
  color: var(--primary);
}
.service__item-2 {
    padding: 25px 20px;
    margin-bottom: 20px;
    transition: all 0.75s;
    background-color: transparent;
}
@media (max-width: 1199px) {
  .service__item-2 {
    padding: 30px 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .service__item-2 {
    padding: 20px;
  }
}
.service__item-2:hover {
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}
.service__item-2:hover .service__title {
  color: var(--white);
}

.service__item-2:hover span {
  color: var(--white);
}
.service__item-2:hover .icon {
  background-color: var(--white);
  border-top-right-radius: 0;
}
.service__item-2:hover .service__btm-2 p {
  color: var(--white);
}
.service__left .icon {
  width: 70px;
  height: 70px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.service__left .icon path {
  transition: all 0.3s;
}
.service__top-2 {
  display: grid;
  align-items: center;
  grid-template-columns: 70px auto;
  grid-gap: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .service__top-2 {
    grid-gap: 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .service__top-2 {
    margin-bottom: 10px;
  }
}
.service__top-2 .icon {
  width: 70px;
  height: 70px;    padding: 10px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service__title {
    font-size: 16px;
    color: var(--black-3);
    font-weight: 700;
    padding-bottom: 5px;
    transition: all 0.3s;
}
.service__serial span {
  position: absolute;
  color: var(--black-3);
  font-size: 100px;
  font-weight: 900;
  opacity: 0.05;
  top: -60px;
  left: 80px;
  z-index: -1;
}

.video__top {
  padding-bottom: 20px;
}
.video__right {
  display: flex;
  align-items: center;
  height: 100%;
}
.video__right p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  padding-left: 80px;
}
@media (max-width: 1199px) {
  .video__right p {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .video__right p {
    font-size: 16px;
  }
}
.video__wrap {
  max-height: 700px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .video__wrap {
    max-height: 500px;
  }
}
.video__wrap img,
.video__wrap video {
  width: 100%;
}

.dark.service__area {
  background-color: var(--dark);
}
.dark.service__area-2 {
  background-color: var(--dark-2);
}
.dark .service__title {
  color: var(--white);
}
.dark .service__item-2 {
  background-color: var(--dark);
}
.dark .video__right p {
  color: var(--gray-6);
}

/*----------------------------------------*/
/*  18. COUNTER CSS START
/*----------------------------------------*/
.counter__area-2 {
  position: relative;
  background-image: url(../imgs/bg/counter-bg-2.html);
}
.counter__area-2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.counter__area-2 .shape-1 {
  position: absolute;
  top: 0;
  left: 25%;
  animation: moveBottom 5s infinite linear;
}
.counter__area-2 .shape-2 {
  position: absolute;
  bottom: 10px;
  left: 60%;
  animation: moveBottom 5s infinite linear;
}
.counter__area-2 .shape-3 {
  position: absolute;
  left: 35%;
  top: 50%;
  animation: cxuRipple 5s infinite linear;
}
.counter__area-2 .shape-4 {
  position: absolute;
  left: 80%;
  top: 20%;
  animation: cxuRipple 5s infinite linear;
}
.counter__inner {
  padding: 50px 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
}
@media (max-width: 991px) {
  .counter__inner {
    padding: 50px 0 20px;
  }
}
.counter__item {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 991px) {
  .counter__item {
    padding-bottom: 30px;
  }
}
.counter__item-2 {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .counter__item-2 {
    padding-bottom: 30px;
  }
}
.counter__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--black-3);
  flex-basis: 120px;
}
@media (max-width: 1199px) {
  .counter__number {
    font-size: 32px;
    flex-basis: 60px;
  }
}
@media (max-width: 767px) {
  .counter__number {
    font-size: 40px;
    flex-basis: 90px;
  }
}
.counter__number-2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}
.counter__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-3);
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .counter__text {
    font-size: 14px;
  }
}
.counter__text-2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .counter__text-2 {
    font-size: 14px;
  }
}

.dark.counter__area {
  background-color: var(--dark);
}
.dark .counter__inner {
  border-color: var(--dark-3);
}
.dark .counter__number, .dark .counter__text {
  color: var(--white);
}

/*----------------------------------------*/
/*  19. TESTIMONIAL CSS START
/*----------------------------------------*/
.testimonial__area {
  text-align: center;
}
@media (max-width: 767px) {
  .testimonial__area.pb-130 {
    padding-bottom: 40px;
  }
}
.testimonial__area .sec-title-wrap {
  position: relative;
  margin-bottom: 30px;
}
.testimonial__area .sec-title-wrap::before {
  position: absolute;
  content: "";
  width: 220px;
  height: 180px;
  left: 260px;
  background-image: url(../imgs/testimonial/quote.png);
  background-repeat: no-repeat;
  background-position: left;
}
@media (max-width: 1199px) {
  .testimonial__area .sec-title-wrap::before {
    left: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial__area .sec-title-wrap::before {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial__area .sec-title-wrap::before {
    background-size: 120px;
  }
}
.testimonial__area .sec-title-wrap::after {
  position: absolute;
  content: "";
  width: 220px;
  height: 180px;
  right: 260px;
  top: 0;
  background-image: url(../imgs/testimonial/quote-2.png);
  background-repeat: no-repeat;
  background-position: right;
}
@media (max-width: 1199px) {
  .testimonial__area .sec-title-wrap::after {
    right: 100px;
  }
}
@media (max-width: 991px) {
  .testimonial__area .sec-title-wrap::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .testimonial__area .sec-title-wrap::after {
    background-size: 120px;
  }
}
.testimonial__area .swiper-pagination-bullet {
  border: 2px solid var(--gray-2);
  background: transparent;
  width: 18px;
  height: 18px;
  opacity: 1;
  position: relative;
}
.testimonial__area .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  left: 16px;
  top: 6px;
  background-color: var(--gray-2);
}
.testimonial__area .swiper-pagination-bullet:last-child::before {
  position: unset;
}
.testimonial__area .swiper-pagination-bullet-active {
  border-color: var(--primary);
  position: relative;
}
.testimonial__area .swiper-pagination-bullet-active::before {
  background-color: var(--primary);
}
.testimonial__area .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 3px;
  top: 3px;
  border-radius: 100px;
  background-color: var(--primary);
}
.testimonial__slider {
  padding-bottom: 60px;
}
.testimonial__slider_thumb {
  max-width: 700px;
}
.testimonial__slider_thumb .swiper-slide {
  width: 190px;
  height: 190px;
  background-color: var(--gray-2);
  transform: rotate(45deg);
  overflow: hidden;
}
.testimonial__slider_thumb .swiper-slide img {
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
}
.testimonial__slider_thumb .swiper-slide-thumb-active {
  width: 290px;
  height: 290px;
}
.testimonial__slider_thumb .swiper-slide-thumb-active img {
  border-radius: 15px;
  z-index: 9;
}
.testimonial__slide {
  max-width: 770px;
  margin: 0 auto;
}
.testimonial__slide img {
  margin-bottom: 30px;
  border-radius: 100%;
}
.testimonial__slide p {
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .testimonial__slide p {
    padding: 0 15px 30px;
  }
}
.testimonial__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-3);
  padding-bottom: 5px;
  text-transform: capitalize;
}
.testimonial__role {
  font-size: 14px;
  color: var(--gray);
  text-transform: capitalize;
}
.testimonial__btn {
  width: 130px;
  height: 60px;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.testimonial__btn .btn-prev, .testimonial__btn .btn-next {
  width: 50px;
  height: 50px;
  background: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black-2);
  border-radius: 50%;
  transition: all 0.5s;
}
.testimonial__btn .btn-prev:hover, .testimonial__btn .btn-next:hover {
  color: var(--white);
  background: linear-gradient(to top, var(--primary), var(--secondary));
}

.dark.testimonial__area {
  background-color: var(--dark);
}
.dark .testimonial__name {
  color: var(--white);
}
.dark .testimonial__role {
  color: var(--gray-2);
}

/*----------------------------------------*/
/*  20. PROCESS CSS START
/*----------------------------------------*/
.process__area {
  position: relative;
  background-image: url(../imgs/WHY.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 180px;
}

.bg-2 {
  position: relative;
  background-image: url(../imgs/bg-2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 180px;
}


.bg-3 {
  position: relative;
  background-image: url(../imgs/bg-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 160px;
  padding-bottom: 180px;
}
@media (max-width: 1199px) {
  .process__area {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .process__area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.process__area .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.process__area-2 {
  overflow: hidden;
}
.process__content {
  position: relative;
  z-index: 1;
}
.process__content button {
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50px;
  margin-top: 60px;
  background-color: var(--white);
  position: relative;
}
.process__content button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  border-radius: 100%;
  animation: cxuRipple 3s 0.5s infinite linear;
}
.process__content-2 {
  background-image: url(../imgs/work-process/3.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .process__content-2 {
    height: 400px;
  }
}
.process__content-2 button {
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50px;
  background-color: var(--white);
  position: relative;
  z-index: 1;
}
.process__content-2 button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  border-radius: 100%;
  animation: cxuRipple 3s 0.5s infinite linear;
}
.process__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  max-width: 770px;
  margin: 0 auto;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .process__title {
    max-width: 100%;
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .process__left-2 br {
    display: none;
  }
}
.process__left-2 p {
  padding-top: 10px;
  padding-bottom: 45px;
  padding-right: 50px;
}
.process__left-3 {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .process__left-3 {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .process__left-3.pb-130 {
    padding-bottom: 0;
  }
}
.process__left-3 p {
  padding-top: 10px;
  padding-bottom: 45px;
}

.inherit-left {
  margin-left: -310px;
}
@media (max-width: 1919px) {
  .inherit-left {
    margin-left: -72px;
  }
}
@media (max-width: 767px) {
  .inherit-left {
    margin: 0;
  }
}
.inherit-right {
  margin-right: -310px;
}
@media (max-width: 1919px) {
  .inherit-right {
    margin-right: -72px;
  }
}
@media (max-width: 767px) {
  .inherit-right {
    margin: 0;
  }
}


/*----------------------------------------*/
/*  23. HIRE CSS START
/*----------------------------------------*/
.hire__area, .hire__area-2 {
  position: relative;
  padding: 50px 0;
  background-image: url(../imgs/WHY1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
@media (max-width: 1199px) {
  .hire__area, .hire__area-2 {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .hire__area, .hire__area-2 {
    padding: 30px 0;
  }
}
.hire__area .overlay, .hire__area-2 .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hire__area-2 {
  background-image: url(../imgs/bg/hire-2.jpg);
}
.hire__content {
  position: relative;
  z-index: 1;
}
.hire__content a {
  margin: 0 12px;
}
.hire__title {
  font-family: var(--font-poppins);
  font-size: 48px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 700;
  padding-bottom: 40px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hire__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hire__title {
    font-size: 32px;
  }
}

/*----------------------------------------*/
/*  24. PRICE CSS START
/*----------------------------------------*/
.package__area {
  background-color: var(--white-4);
}
@media (max-width: 767px) {
  .package__area.pb-130 {
    padding-bottom: 20px;
  }
}
.package__area .sec-title-wrap {
  text-align: center;
  padding-bottom: 30px;
}
.package__area-2 {
  background-color: var(--white-3);
}
.package__area-2 .sec-title-wrap {
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .package__area-2 .sec-title-wrap {
    padding-bottom: 25px;
  }
}
.package__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 1199px) {
  .package__list {
    grid-gap: 20px;
  }
}
@media (max-width: 991px) {
  .package__list {
    grid-gap: 10px;
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media (max-width: 767px) {
  .package__list {
    margin: 0;
    grid-template-columns: 1fr;
  }
}
.package__type {
  padding: 30px 45px 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 1199px) {
  .package__type {
    padding: 30px 15px 40px;
  }
}
.package__type-2 {
  padding: 40px 50px;
  border-radius: 10px;
  background-color: var(--white);
}
@media (max-width: 1399px) {
  .package__type-2 {
    padding: 40px 20px;
  }
}
@media (max-width: 1199px) {
  .package__type-2 {
    padding: 40px 20px;
  }
}
.package__type-2.standard {
  background-color: var(--black-3);
}
@media (max-width: 767px) {
  .package__type-2.standard {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.package__type-2.standard .package__title {
  color: var(--white);
}
.package__type-2.standard .package__price-2 span {
  color: var(--white);
}
.package__type-2.standard .package__price-2 strong {
  color: var(--white);
}
.package__type-2.standard .list-check-2 li {
  color: var(--white);
}
.package__type-2.standard .list-check-2 li.disabled {
  color: var(--gray-6);
}
.package__top {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1.5fr;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-3);
}
@media (max-width: 1199px) {
  .package__top {
    margin-bottom: 35px;
  }
}
.package__top-2 {
  text-align: center;
  position: relative;
}
.package__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-3);
  padding-bottom: 5px;
  text-transform: capitalize;
  font-family: var(--font-poppins);
}
.package__sub-title {
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}
@media (max-width: 991px) {
  .package__sub-title {
    font-size: 14px;
  }
}
.package__price {
  font-size: 48px;
  color: var(--primary);
  font-weight: 700;
  text-align: right;
  font-family: var(--font-poppins);
}
@media (max-width: 1199px) {
  .package__price {
    font-size: 36px;
  }
}
.package__price-2 {
  font-size: 48px;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-poppins);
}
.package__price-2 strong {
  font-weight: 400;
  font-size: 16px;
  color: var(--black-2);
}
.package__price-2 .type {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray);
  text-transform: capitalize;
}
.package__feature ul {
  padding-bottom: 20px;
}
.package__feature li {
  font-size: 16px;
  color: var(--gray);
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .package__feature li {
    padding-bottom: 20px;
  }
}
.package__feature li.disabled {
  color: var(--gray-6);
}
.package__feature-2 ul {
  padding-top: 22px;
  padding-bottom: 42px;
}
.package__feature .plan, .package__feature .plan-2 {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-roboto);
  padding: 18px 35px;
  border-radius: 3px;
  background-image: linear-gradient(to right, var(--primary) 0%, var(--secondary) 50%, var(--black-2) 50%, var(--black-2) 75%, var(--black-2) 100%);
  background-repeat: no-repeat;
  background-size: 200% 200%;
  transition: all 0.5s;
}
.package__feature .plan:hover, .package__feature .plan-2:hover {
  background-position: 100% 100%;
}
.package__feature .plan-2 {
  background-image: linear-gradient(to right, var(--black-2) 0%, var(--black-2) 50%, var(--primary) 50%, var(--primary) 75%, var(--secondary) 100%);
}
.package__duration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.package__duration .pkg-btn input {
  position: relative;
  width: 80px;
  height: 40px;
  appearance: none;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
  outline: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
}
.package__duration .pkg-btn input::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  left: 7px;
  top: 7px;
  border-radius: 100%;
  transition: all 0.3s;
  background-color: var(--white);
}
.package__duration .pkg-btn input:checked {
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}
.package__duration .pkg-btn input:checked::after {
  left: 47px;
}
.package__duration-2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 767px) {
  .package__duration-2 {
    margin-bottom: 40px;
    justify-content: center;
  }
}
.package__duration-2 button {
  border: none;
  color: var(--black-3);
  background-color: transparent;
}
.package__duration-2 button.active {
  display: inline-block;
  font-size: 16px;
  color: var(--white);
  font-family: var(--font-roboto);
  padding: 15px 35px;
  border-radius: 100px;
  position: relative;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}
.package__duration-2 button.active::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%) rotate(64deg);
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.yearly_price {
  display: none;
}

.dark.package__area {
  background-color: var(--dark);
}
.dark.package__area-2 {
  background-color: var(--dark-2);
}
.dark .package__title {
  color: var(--white);
}
.dark .package__sub-title {
  color: var(--gray-3);
}
.dark .package__feature li {
  color: var(--gray-7);
}
.dark .package__feature li.disabled {
  color: var(--gray);
}
.dark .package__type {
  box-shadow: var(--dark) 6px 2px 16px 0px, var(--dark-2) -6px -2px 16px 0px;
}
.dark .package__type-2 {
  background-color: var(--dark);
}
.dark .package__type-2.standard {
  background-color: var(--black-2);
}
.dark .package__duration-2 button {
  color: var(--white);
}
.dark .package__top {
  border-color: var(--dark-3);
}
.dark .package__price-2 .type {
  color: var(--gray-7);
}
.dark .package__price-2 strong {
  color: var(--gray-7);
}

/*----------------------------------------*/
/*  25. BRAND CSS START
/*----------------------------------------*/
.brand__area {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .brand__area {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .brand__area {
    padding: 60px 0;
  }
}
.brand__list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .brand__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.brand__list img {
  max-width: 100%;
}

.dark.brand__area {
  background-color: var(--dark);
}

/*----------------------------------------*/
/*  26. BLOG CSS START
/*----------------------------------------*/
.blog__area {
  background-color: var(--white-3);
}
.blog__area .sec-title-wrap {
  text-align: center;
  padding-bottom: 15px;
}
.blog__area-2 .sec-title-wrap {
  text-align: center;
  padding-bottom: 15px;
}
.blog__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black-3);
    padding-bottom: 6px;
    transition: all 0.3s;
}
@media (max-width: 1199px) {
  .blog__title {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .blog__title {
    font-size: 18px;
    padding-bottom: 15px;
  }
}
.blog__title-3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-3);
  padding-bottom: 20px;
  transition: all 0.3s;
  margin-top: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .blog__title-3 {
    font-size: 18px;
  }
}
.blog__title-3.plr {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1199px) {
  .blog__title-3.plr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog__item {
  position: relative;
  background-color: var(--white);    border-radius: 20px;
  margin-bottom: 10px;
}
.blog__item::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 5px;
  right: 100px;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
  background-color: var(--primary);
}
.blog__item::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 27px;
  right: 0;
  bottom: 100px;
  opacity: 0;
  transition: all 0.5s;
  background-color: var(--primary);
}
.blog__item img {
  width: 100%;
      border-radius: 20px 20px 0px 0px;
}
.blog__item .date {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 3px;
  transform: translateY(-50%);
  margin-bottom: 20px;
    background-image: linear-gradient(to right, var(--primary), #08416c);
}
@media (max-width: 991px) {
  .blog__item .date {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .blog__item p {
 
  }
}
.blog__item .link {
  color: var(--black-3);
  text-transform: capitalize;
}
.blog__item:hover::before {
  opacity: 1;
  right: 0;
}
.blog__item:hover::after {
  opacity: 1;
  bottom: 0;
}
.blog__item:hover .blog__title {
  color: var(--primary);
}
.blog__item:hover .link {
  color: var(--primary);
}
.blog__item-2 {
  background-size: 0%;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .blog__item-2 {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .blog__item-2 {
    margin-bottom: 30px;
  }
}
.blog__item-2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--black-3);
  opacity: 0;
  transition: all 0.5s;
}
@media (max-width: 1199px) {
  .blog__item-2::after {
    opacity: 0.5;
  }
}
@media (max-width: 1199px) {
  .blog__item-2 p,
  .blog__item-2 .blog__info-2 .link,
  .blog__item-2 .blog__title {
    color: var(--white);
  }
}
.blog__item-2 .date-wrap-2 {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  top: 50%;
  left: -60px;
  background-color: var(--black-3);
  padding: 6px 15px;
  text-align: center;
  z-index: 9;
}
@media (max-width: 991px) {
  .blog__item-2 .date-wrap-2 {
    top: 0;
    left: 0;
    transform: unset;
  }
}
.blog__item-2 .date-wrap-2 .date {
  font-size: 16px;
  color: var(--white);
}
.blog__item-2 .date-wrap-2 .date i {
  padding-right: 5px;
}
.blog__item-2:hover {
  background-size: cover;
}
.blog__item-2:hover::after {
  opacity: 0.5;
}
.blog__item-2:hover .date-wrap-2 {
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}
.blog__item-2:hover .blog__title,
.blog__item-2:hover .blog__info-2 p,
.blog__item-2:hover .blog__info-2 .link {
  color: var(--white);
}
.blog__item-3 {
  border: 1px solid var(--white-3);
  margin-bottom: 40px;
}
.blog__item-3 img {
  max-width: 100%;
}
.blog__item-3 p {
  line-height: 1.7;
  padding-bottom: 30px;
}
.blog__item-3 .link {
  display: inline-block;
  color: var(--black-3);
  text-transform: capitalize;
  padding-bottom: 30px;
}
.blog__item-3 .link i {
  transition: all 0.3s;
}
.blog__item-3:hover .blog__title-3 {
  color: var(--primary);
}
.blog__item-3:hover .link {
  color: var(--primary);
}
.blog__item-3:hover .link i {
  padding-left: 5px;
  color: var(--primary);
}
.blog__content {
    padding: 0 25px 7px;
    min-height: 240px;
}
@media (max-width: 991px) {
  .blog__content {
    padding: 0 10px 30px;
        min-height: auto;
  }
}
.blog__content-2 {
  padding: 35px 30px 35px 60px;
  border: 1px solid var(--white-3);
}
@media (max-width: 1199px) {
  .blog__content-2 {
    padding: 90px 15px 30px 45px;
  }
}
@media (max-width: 991px) {
  .blog__content-2 {
    padding: 90px 15px 30px;
  }
}
.blog__content-wrap {
  padding: 0 30px;
}
@media (max-width: 1199px) {
  .blog__content-wrap {
    padding: 0 20px;
  }
}
.blog__info-2 {
  position: relative;
  z-index: 9;
}
.blog__info-2 p {
  padding-bottom: 30px;
}
.blog__info-2 .link {
  color: var(--black-3);
  text-transform: capitalize;
}
.blog__inner-3 {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 2fr 1fr;
}
/*----------------------------------------*/
/*  27. CONTACT CSS START
/*----------------------------------------*/
.contact__area {
  position: relative;
}
.contact__area .bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  height: 55%;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .contact__area .bg {
    width: 480px;
  }
}
@media (max-width: 991px) {
  .contact__area .bg {
    display: none;
  }
}
.contact__area .map {
  position: absolute;
  width: 500px;
  height: 45%;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .contact__area .map {
    width: 480px;
  }
}
.contact__area .map iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .contact__area .map {
    position: unset;
    width: 100%;
    height: 360px;
  }
}
.contact__top-inner {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .contact__top-inner {
    grid-gap: 40px;
    grid-template-columns: 1fr;
  }
}
.contact__item {
  position: relative;
  z-index: 9;
}
.contact__item .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  border-radius: 50px;
  margin-bottom: 15px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}
.contact__item .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-2);
  padding-bottom: 10px;
}
.contact__item ul li {
  font-size: 16px;
  color: var(--gray);
}
.contact__item ul li a {
  font-size: 16px;
  color: var(--gray);
  padding-bottom: 5px;
  display: inline-block;
  transition: all 0.3s;
}
.contact__item ul li a:hover {
  color: var(--primary);
}
.contact__form {
  background-color: #F5F5F5;
}
.contact__form .input-grp {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1199px) {
  .contact__form .input-grp {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .contact__form .input-grp {
    grid-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .contact__form .input-grp {
    grid-gap: 0;
    grid-template-columns: 1fr;
  }
}
.contact__form input, select,
.contact__form textarea {
  width: 100%;
padding: 12px 20px !important;
  border-radius: 5px;
  outline: none;
  margin-bottom: 10px;
border: 1px solid #08416cab !important;
}

.form-control
{
    width: 100%;
    padding: 12px 10px;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
    border: 1px solid #08416c;
 
}

.contact__form textarea {
  height: 120px;
  resize: none;
}
.contact__form .submit {
  width: unset;
  color: var(--white);
  text-transform: capitalize;
  padding: 15px 40px;
  background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 25%, var(--primary) 50%, var(--secondary) 75%, var(--primary) 100%);
  background-size: 400% 400%;    border: 0;

  background-repeat: no-repeat;
  transition: all 0.7s;
  margin-bottom: 0;
}
.contact__form .submit:hover {
  background-position: 100% 100%;
}
.contact__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-2);
  padding-bottom: 40px;
}

.f-13
{
    font-size: 13px;
}
.submit-btn
{
       width: 100%;
    padding: 15px 0px;
    color: var(--white);
    text-transform: capitalize;
    padding: 15px 40px;
    background: linear-gradient(to right, var(--primary) 0%, var(--secondary) 25%, var(--primary) 50%, var(--secondary) 75%, var(--primary) 100%);
    background-size: 400% 400%;
    border: 0;
    background-repeat: no-repeat;
    transition: all 0.7s;
    margin-bottom: 0;
    margin-top: 20px;
    border-radius: 10px;
}

    .send-otp {
        border: 0;
        background: #f7941d;
        color: #fff;
        padding: 14px 11px;
        width: 100%;
        font-size: 19px;
        border-radius: 4px;
    
    }
    
    .send-otp-thai {
        border: 0;
        background: #f7941d;
        color: #fff;
        padding: 14px 11px;
        width: 100%;
        font-size: 19px;
        border-radius: 4px;
   
    }

    
.visitor__form h6
{
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
}
.form-group.about-hear #aboutus td label
{
      padding-left: 5px;
}


.visitor__form
{
    background-color: #fff;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    z-index: 0;
    position: relative;
}
.table-free-seminar td
  {
    display: flex;
    align-items: flex-start;
  }

  
  .table-free-seminar td label
  {
    padding-left: 10px !important;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 21px;
    font-weight: 500;
  }

  .table-free-seminar td label span {
    display: block;
        color: rgb(221 52 69) !important;
}

 .btncstm {
     border: 0;
     background: #f7941d;
     color: #fff;
     padding: 14px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}
.btncstm:focus
{
  background: #f7941d;
}
 select:focus, .form-control:focus, .form-select:focus, textarea:focus, input:focus {
     background: #fff;
}
 .send-otp-thai {
     border: 0;
     background: #f7941d;
     color: #fff;
     padding: 14px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}
 .send-otp {
     border: 0;
     background: #f7941d;
     color: #fff;
     padding: 14px 11px;
     width: 100%;
     font-size: 19px;
     border-radius: 4px;
}
 .pd-20 {
     padding: 20px;
}
 .br-12 {
     border-radius: 12px;
}
 .pl-0 {
     padding-left: 0px;
}
 .intl-tel-input.allow-dropdown {
     margin-bottom: 10px !important;
}
 .mt-30 {
     margin-top: 30px;
}
 .exhibitor-registration table input[type="checkbox"]{
     margin-top: 5px;
     margin-right: 8px;
     vertical-align: top;
}
 .exhibitor-registration table label{
     display: inline-block;
     max-width: calc(100% - 26px);
     vertical-align: top;
     font-size: 15px;
     line-height: 1.6;
}
 .mt-50 {
     margin-top: 50px;
}
 .mb-50 {
     margin-bottom: 50px;
}

@media (min-width: 320px) and (max-width: 575.98px) {

.visitor__form
{
    padding: 10px;
}
}
.pr-5
{
    padding-right: 5px;
}
.pl-5
{
    padding-left: 5px;
}
/*----------------------------------------*/
/*  28. FOOTER CSS START
/*----------------------------------------*/
.footer__area {
    background-color: #073080;
}
.footer__area-2 {
  padding-top: 150px;
  background-color: var(--black-3);
}
.footer__top {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .footer__top {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer__top p {
  color: #fff;
}
.footer__btm {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;

    background: #f9a94a;
}
.footer__btm p {
  color: #000;
}
.footer__btm p a {
  color: var(--primary);
}
.footer__btm p a:hover {
  color: var(--gray-3);
}
.footer__btm-2 {
  text-align: center;
  padding: 20px;
  background-color: var(--primary);
}
.footer__btm-2 p {
  color: var(--white);
}
.footer__btm-2 p a {
  color: var(--black-3);
}
.footer__btm-2 p a:hover {
  color: var(--gray-3);
}
.footer__widgets {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 0.5fr 0.5fr 1fr;
}
@media (max-width: 1199px) {
  .footer__widgets {
    grid-template-columns: 1fr 0.5fr 0.5fr 1.2fr;
    grid-gap: 20px;
  }
}
@media (max-width: 991px) {
  .footer__widgets {
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
  }
}
@media (max-width: 767px) {
  .footer__widgets {
    grid-gap: 40px;
    grid-template-columns: 1fr;
  }
}
.footer__widget-title {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  padding-bottom: 30px;
  font-family: var(--font-poppins);
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .footer__widget-title {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer__widget-title {
    padding-bottom: 15px;
  }
}
.footer__menu li {
  padding-bottom: 5px;
}
@media (max-width: 991px) {
  .footer__menu li {
    padding-bottom: 0;
  }
}
.footer__menu li a {
display: block;
    font-size: 16px;
    color: #fff;
    padding: 1px 0;
    font-weight: 500;
}
.footer__menu li a:hover {
  color: var(--white);
}
.footer__location {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__location li {

    align-items: center;
    color: #fff;
    font-size: 15px;
    grid-template-columns: 35px auto;
    font-weight: 400;
}
.footer__location li a {
  display: block;
  font-size: 16px;
  color: var(--gray-4);
  padding: 5px 0;
}
.footer__location li a:hover {
  color: var(--white);
}
.footer__location li span {
    display: block;
    font-size: 16px;
    color: var(--gray-4);
    padding: 0px 0;
    padding-left: 17px
}
.footer__location li i {
  color: var(--primary);
}

.widget__one img {
  padding-bottom: 40px;
}
.widget__one p {
  padding-bottom: 30px;
}

.newsletter {
  padding-top: 40px;
}
.newsletter form {
  position: relative;
}
.newsletter input {
  width: 100%;
  padding: 26px 150px 26px 30px;
  border: none;
  border-radius: 100px;
  outline: none;
}
@media (max-width: 991px) {
  .newsletter input {
    font-size: 14px;
    padding: 24px 150px 24px 15px;
  }
}
.newsletter .submit {
  position: absolute;
  right: 10px;
  top: 10px;
  height: calc(100% - 20px);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 0 22px;
  font-weight: 500;
  background-image: linear-gradient(to right, var(--primary), var(--secondary));
}
@media (max-width: 1399px) {
  .newsletter .submit {
    padding: 0 28px;
  }
}
.newsletter .submit:hover {
  background-image: linear-gradient(to right, var(--secondary), var(--primary));
}
 .social-media {
     display: flex;
     gap: 10px;
}
 .social-media li a {
     display: block;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     border-radius: 5px;
     background-color: var(--primary);
}
 .social-media li a:hover {
     background-color: var(--secondary);
}
 .dark .newsletter input {
     color: var(--gray-7);
     background-color: var(--dark);
}
/*# sourceMappingURL=master.css.map */
 .header__logo-2 p {
     font-weight: 500;
     font-size: 12px;
     color: #08416c;
}
 .hero-slider-banner {
     position: absolute;
     top: 42%;
     padding-left: 5%;
}
 .video-sliders video {
     width: 100%;
     object-fit: cover;
     height: 100%;
}
 .yellow {
     color: #ff8b00 !important;
}
 .ptb-50 {
     padding: 50px 0px;
}
 .ptb-80 {
     padding: 80px 0px;
}
 .our-partner {
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
     border-radius: 8px;
    /* border: 1px solid #cccccc9e;
     */
     margin-bottom: 10px;
     background: #fff;
}
 .our-partner p{
     color: var(--primary);
     text-align: center;
     font-weight: 500;
}
 .footer__logo {
     -webkit-filter: brightness(0) invert(1);
     filter: brightness(0) invert(1);
     -webkit-transition: 0.4s ease-in-out;
     transition: 0.4s ease-in-out;
     width: 200px;
}
 .Exhibitor li i {
     font-size: 15px;
     color: var(--primary);
     text-align: center;
     line-height: 25px;
     margin-right: 10px;
}
 @media (min-width: 320px) and (max-width: 767px) {
     .blog__content-1 {
         height: auto !important;
    }
     .menu-2-bg {
         width: auto;
         display: none;
    }
     .mean-container .mean-nav {
         background: #08416c;
    }
     .header__inner-2 {
         grid-template-columns:288px auto;
    }
     .m-pr-15 {
         padding-left: 15px !important;
    }
}
 @media (min-width: 768px) and (max-width: 1024px) {
     .blog__content-1 {
         height: 230px 
    }
}
 .Exhibitor li {
     line-height: 29px;
     margin-bottom: 8px;
     font-size: 18px;
}
 .Exhibitor li i {
     font-size: 15px;
     color: #000;
     text-align: center;
     line-height: 25px;
     margin-right: 10px;
}
 .Exhibitor-1 li {
     line-height: 29px;
     font-size: 18px;
     text-align: left;
     color: #fff;
     display: flex;
}
 .Exhibitor-1 li i {
     font-size: 15px;
     color: #fff;
     text-align: left;
     line-height: 25px;
     margin-right: 10px;
}
 .ex-img {
     padding: 10px;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
     border-radius: 20px;
     background: #fff;
}
 .ex-img img {
     border-radius: 20px;
}
 .contact-info {
     display: -webkit-box;
     display: -webkit-flex;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-align: center;
     -webkit-align-items: center;
     -ms-flex-align: center;
     align-items: center;
     max-width: 340px;
     gap: 10px;
     margin-bottom: 10px;
}
 .contact-info_icon {
     width: 30px;
     height: 30px;
     line-height: 30px;
     font-size: 13px;
     background-color: #f7941d;
     text-align: center;
     color: #fff;
     border-radius: 5px;
     -webkit-transition: .4s ease-in-out;
     transition: .4s ease-in-out;
}
 .media-body {
     -webkit-box-flex: 1;
     -webkit-flex: 1;
     -ms-flex: 1;
     flex: 1;
}
 .contact-info_text span a{
    color: #000;
}
 .contact-head {
     font-size: 17px;
     line-height: 27px;
     margin-bottom: 0;
     padding-bottom: 0;
}
 .pr-0 {
     padding-right: 0px;
     padding-left: 0px;
}
 .mt-10 {
     margin-top: 10px;
}
 .mt-20 {
     margin-top: 34px;
}
 .orange {
     color: #dc7902;
}
 .theiexh li{
     color: #dc7902;
}
 .blue{
     color: #08416c;
}
 .theiexh1 li {
     color: #08416c;
}
 .theiexh1 li i {
     color: #08416c;
}
 .theyello li {
     color: #ff8b00 ;
}
 .theyello li i{
     color: #ff8b00 ;
}
 .venu-header {
     margin-top: 12px;
     font-size: 14px;
     line-height: 22px;
     padding-left: 0;
}
 .video-sliders video {
     margin-top: 8%;
}
 .f-22 {
     font-size: 22px;
}
 .logoname {
     margin: 0;
     color: #000;
     line-height: 12px;
     font-size: 13px;
     font-weight: 600;
}
 .speakers {
     padding: 10px;
     box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
     background: #08416c;
     border-radius: 4px;
     text-align: center;
     min-height: 260px;
     max-height: 100%;
}
 .speakers img {
    border-radius: 100%;
    border: 2px solid #ffffff;
    width: 100px;
    padding: 3px;
    text-align: center;
    margin: 0px auto;
}
 .c-username {
     color: #fff;
     font-size: 16px;
     padding-top: 10px;
}
 .c-post {
     color: #f7941d;
     font-size: 14px;
     padding-top: 5px;
}
 .c-name {
     color: #fff;
     font-style: italic;
     font-size: 14px;
     padding-top: 5px;
}
 .partner-logos h6 {
     margin-bottom: 5px;
     font-size: 12px;
     text-align: center;
}
 .partner-logos img {
     border: 1px solid #ccc;
     border-radius: 4px;
     padding: 8px;
}
 .team__slider3 img {
     margin-bottom:10px;
}
 .blog__content-1 {
     padding: 15px;
     padding-top: 0;
     height: 270px;
}
 .media-partner {
     padding: 2px;
     background: #fff;
     border-radius: 8px;
     margin-bottom: 10px;
     box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
}
 .carousel-right {
     text-align: right !important;
     left: -9% !important;
}
 .bg-blue {
     background: #13416a !important;
}
 #carouselExampleCaptions .carousel-caption {
     position: absolute;
     right: 0;
     bottom: 0.25rem;
     left: 9%;
     padding-top: 1.25rem;
     padding-bottom: 1.25rem;
     color: #fff;
     text-align: left;
     width: 100%;
}
 .our-exhibitors {
     position: relative;
     background-color: #fff;
     margin-bottom: 10px;
     box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
     border-radius: 10px;
     padding: 20px;
}
 .our-exhibitors ul li {
     list-style: disc;
}
 .our-exhibitors ul {
     margin-left: 15px;
     margin-bottom: 15px;
}
 .our-exhibitors h6 {
     color: #fd6100;
     margin-bottom: 0;
     font-size: 18px;
}
 .blog-list {
     background-color: #fff;
     box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
     margin-bottom: 20px;
     border-radius: 8px;
}
 .blog-list img {
     border-top-left-radius: 8px;
     border-top-right-radius: 8px;
}
 .blog-tittle {
     padding: 20px;
}
 .blog-tittle a i{
     float: right;
}
 .blog-deatils p {
     margin-bottom: 10px;
}
 .related-blogs {
     background: #fff;
     border-radius: 8px;
     padding: 15px;
     box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
 .rb-title {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 15px;
     border-bottom: 2px solid #f7941d;
     padding-bottom: 6px;
}
 .rb-item {
     display: flex;
     gap: 10px;
     margin-bottom: 12px;
     border-bottom: 1px solid #ccc;
     padding-bottom: 10px;
}
 .rb-item img {
     width: 70px;
     height: 55px;
     object-fit: cover;
     border-radius: 4px;
}
 .rb-content h6 {
     font-size: 16px;
     margin: 0;
     line-height: 1.4;
     color: #000;
}
 .rb-content span {
     font-size: 13px;
     color: #f7941d;
}
 .share-wrapper {
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 .share-box {
     display: flex;
     gap: 8px;
     margin-bottom: 0;
     margin-top: 20px;
}
 .share-box a {
     margin-right: 10px;
     font-size: 18px;
     color: #333;
}
 .share-box p {
     font-weight: bold;
     color: #f7941d;
}
 .fixed-date {
     position: absolute;
     background: #08416c;
     color: #fff;
     padding: 6px 10px;
     right: 10px;
     top: 10px;
     border-radius: 4px;
}
 .fixed-date h6 {
     font-size: 14px;
}
 .blog-list {
     position: relative;
}
 .blog-tittle a {
     color: #08416c;
     font-weight: 500;
}

.pd-0
{
  padding: 0px;
}
 @media only screen and (min-width: 320px) and (max-width: 767px) {
     #carouselExampleCaptionsmobile .carousel-caption {
         width: 100%;
        left: 0;
         right: 0;
        padding-bottom: 0;
    }
    .m-pd-15
    {
      padding: 15px;
    }
}

.blog__item {
    position: relative;
    background-color: var(--white);
    margin-bottom: 10px;
    box-shadow: 0px 4px 50px rgba(0, 6, 18, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.blog__item h6 {
    font-size: 17px;
    margin-bottom: 4px;
    font-weight: 700;
    color: var(--primary);
}