h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-family: "Titillium Web", sans-serif;
}

/* === Модальне вікно === */
#cart-modal .modal-dialog {
  max-width: 680px;
  margin: 2rem auto;
}

#cart-modal .modal-content {
  border: none;
  border-radius: 20px;
  background: #f0f0f3;
  padding: 40px 30px;
  box-shadow: 8px 8px 20px #d1d9e6, -8px -8px 20px #ffffff;
}

/* === Заголовок === */
#shopping-cart h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 3rem;
  text-decoration: none;
  position: relative;
}

#shopping-cart h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
  margin: 12px auto 0;
}

/* === Таблиця === */
.table-cart {
  width: 100%;
  font-size: 1rem;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: #fdfdfd;
  box-shadow: inset 4px 4px 10px #dfe4ea, inset -4px -4px 10px #ffffff;
}

.table-cart thead th {
  background: #f0f0f3;
  font-weight: 700;
  padding: 14px;
  color: #444;
  border-bottom: 1px solid #ccc;
}

.table-cart tbody tr {
  transition: background 0.25s ease;
}

.table-cart tbody tr:hover {
  background: #e2e6ea;
}

.table-cart tbody td {
  padding: 16px;
  color: #333;
  text-align: left;
  font-weight: 500;
}

/* === Total Section === */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ccc;
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
}

/* === Сума справа === */
.cart-total-price {
  min-width: 90px;
  text-align: right;
  color: #007bff;
}

/* === Кнопка оформлення === */
.btn-purchase {
  margin-top: 3.5rem;
}

.btn-purchase .btn {
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  background: #f0f0f3;
  color: #007bff;
  border: none;
  box-shadow: 8px 8px 20px #d1d9e6, -8px -8px 20px #ffffff;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-purchase .btn:hover {
  background: #e8ecf1;
  box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
  color: #0056b3;
}

.btn-purchase i {
  font-size: 1.3rem;
}

/* === Мобільна адаптація === */
@media (max-width: 576px) {
  #cart-modal .modal-dialog {
    max-width: 95%;
  }

  #shopping-cart h3 {
    font-size: 1.6rem;
  }

  .table-cart thead th,
  .table-cart tbody td {
    font-size: 0.95rem;
    padding: 12px;
  }

  .cart-total {
    font-size: 1rem;
  }

  .btn-purchase .btn {
    font-size: 1rem;
    padding: 14px;
  }
}

/* === Базовий стиль обох кнопок === */
#cart-btn-desktop,
#cart-btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ebeb28;
  border: 2px solid #d6dc22;
  border-radius: 8px;
  background-color: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* === Анімована лінія зліва направо при hover === */
#cart-btn-desktop::before,
#cart-btn-mobile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #03932e;
  z-index: -1;
  transition: width 0.35s ease;
}

#cart-btn-desktop:hover::before,
#cart-btn-mobile:hover::before {
  width: 100%;
}

#cart-btn-desktop:hover,
#cart-btn-mobile:hover {
  color: #fff;
}

/* === Іконка — м’яка анімація при hover === */
#cart-btn-desktop i,
#cart-btn-mobile i {
  font-size: 17px;
  transition: transform 0.3s ease;
}

#cart-btn-desktop:hover i,
#cart-btn-mobile:hover i {
  transform: rotate(3deg) scale(1.15);
}

/* === Значення кошика === */
.top-cart {
  font-weight: 700;
  min-width: 65px;
  text-align: right;
  color: inherit;
}

/* === Адаптивність — показ лише потрібної кнопки === */
@media (min-width: 768px) {
  #cart-btn-mobile {
    display: none;
  }
}

@media (max-width: 767.98px) {
  #cart-btn-desktop {
    display: none;
  }
}

.cookies-eu-banner {
  background: #444;
  color: #fff;
  padding: 6px;
  font-size: 13px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}

.cookies-eu-banner .x8jc81HNYP {
  display: none;
}

.urbanpatio-chat-reviews {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background: #f9f9f9;
  font-family: "Quicksand", sans-serif;
}

.urbanpatio-title {
  text-align: center;
  font-size: 2.5rem;
  color: #3d3d3d;
  margin-bottom: 2rem;
}

.urbanpatio-chat-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.urbanpatio-chat-bubble {
  max-width: 70%;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  position: relative;
  background: #ffffff;
  border: 2px solid #ddd;
}

.urbanpatio-left {
  align-self: flex-start;
  background: #7ae7a5;
}

.urbanpatio-right {
  align-self: flex-end;
  background: #fff8e1;
}

.urbanpatio-user {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
  text-align: right;
}

.futuristic-products {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  color: #eef2f3;
  padding-bottom: 3rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: #ffdd57;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.futuristic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  padding: 0 1rem;
}

.futuristic-card {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 221, 87, 0.5);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.futuristic-card:hover,
.futuristic-card:focus {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 221, 87, 0.9);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #ffdd57;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.futuristic-card:hover .image-wrapper img,
.futuristic-card:focus .image-wrapper img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(255, 221, 87, 0.7);
}

.gradient-bg {
  background: linear-gradient(135deg, #f9d423, #ff4e50);
  color: #1a1a1a;
}

.product-title {
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  text-align: center;
}

.product-desc {
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 1.2rem;
  text-align: center;
  min-height: 60px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffdd57;
  margin-bottom: 1.5rem;
}

.btn-add-cart {
  background-color: #ffdd57;
  border: none;
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  color: #142d4c;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 221, 87, 0.6);
}

.btn-add-cart:hover,
.btn-add-cart:focus {
  background-color: #f9c20b;
  outline: none;
}

/* Responsive */
@media (max-width: 992px) {
  .futuristic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .futuristic-grid {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    height: 220px;
  }
}

.MaLpB8p7pe {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: sans-serif;
  z-index: 1000;
}

.hdr-inner-fresh {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-fresh {
  color: #ff4081;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: 1px;
}

.nav-desktop-fresh {
  display: flex;
  gap: 28px;
  align-items: center;
}

.logo-link {
  color: #fffdfd;
  font-weight: bold;
  font-size: 1.5em;
  display: flex;
  align-items: center;
}

.logo-img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}

.nav-desktop-fresh a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.nav-desktop-fresh a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4081;
  transition: width 0.3s;
}

.nav-desktop-fresh a:hover::after {
  width: 100%;
}

.menu-fresh-toggle {
  display: none;
}

.burger-fresh {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.burger-fresh span {
  width: 26px;
  height: 3px;
  background: #ff4081;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-fresh-toggle:checked + .burger-fresh span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-fresh-toggle:checked + .burger-fresh span:nth-child(2) {
  opacity: 0;
}

.menu-fresh-toggle:checked + .burger-fresh span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile-fresh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  gap: 40px;
  z-index: 1050;
}

.nav-mobile-fresh a {
  color: #ff4081;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-mobile-fresh a:hover {
  color: #fff;
}

.close-fresh {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #ff4081;
  cursor: pointer;
}

.menu-fresh-toggle:checked ~ .nav-mobile-fresh {
  transform: translateX(0);
}

@media (max-width: 768px) {
  .nav-desktop-fresh {
    display: none;
  }

  .burger-fresh {
    display: flex;
  }
}

.cookies-eu-banner .VnEVqgvHMA {
  display: inline-block;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner .VnEVqgvHMA:hover {
  background: #fff;
  color: #222;
}

.x8jc81HNYP:checked + .cookies-content {
  display: none;
}

h1 {
  font-size: 38px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 500;
}

h5 {
  font-size: 16px;
  font-weight: 400;
}

/**---Variable---**/
/**---Variable---**/
body {
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: #fff;
}

p {
  font-size: 16px;
  line-height: 22px;
  color: #555555;
}

.pb-120 {
  padding-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }

  .pb-120 {
    padding-bottom: 80px;
  }
}

.mb-60 {
  margin-bottom: 60px;
}

.text-color-white {
  color: #fff !important;
}

.text-color-black {
  color: #000 !important;
}

.text-color-theme {
  color: #0b185f !important;
}

.text-pra {
  color: #555 !important;
}

.theme1 {
  color: #86cf3b !important;
}

.theme2 {
  color: #ffb400 !important;
}

.theme3 {
  color: #47a1f2 !important;
}

.theme4 {
  color: #ff739c !important;
}

.theme5 {
  color: #d26dfb !important;
}

.theme6 {
  color: #00c08c !important;
}

.theme7 {
  color: #009cff !important;
}

.RmeJNIZVJw {
  border-radius: 12px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 8px 30px 0px rgba(38, 204, 133, 0.36) !important;
}

.bg-two {
  border-radius: 12px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 8px 24px 0px rgba(255, 114, 58, 0.36) !important;
}

.Wo9LF9Wzgi {
  border-radius: 12px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 8px 24px 0px rgba(233, 89, 197, 0.36) !important;
}

.bg-four {
  border-radius: 12px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 8px 24px 0px rgba(1, 203, 173, 0.36) !important;
}

.bg-five {
  border-radius: 5px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 4.659px 17.387px 24px 0px rgba(95, 81, 181, 0.36) !important;
}

.bg-six {
  border-radius: 5px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 18px 24px 0px rgba(248, 118, 158, 0.36) !important;
}

.bg-seven {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
}

.bg-eight {
  border-radius: 28px !important;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36) !important;
}

.bg-nine {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
}

.bg-ten {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
}

.bg-11 {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
}

.bg-b1 {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
}

.bg-b2 {
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(215, 238, 255) 0%,
    rgb(255, 231, 225) 100%
  );
}

.bg-b3 {
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(234, 232, 255) 0%,
    rgb(255, 237, 214) 100%
  );
}

.bg-b4 {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(1, 203, 173) 0%,
    rgb(71, 161, 242) 100%
  );
}

.bg-5 {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(95, 81, 181) 0%,
    rgb(206, 98, 253) 100%
  );
}

.bg-6 {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(184, 92, 255) 0%,
    rgb(255, 101, 147) 100%
  );
}

.bg-7 {
  background-color: rgb(239, 255, 251);
}

.bg-8 {
  background-color: rgb(240, 243, 255);
}

.bg-9 {
  background-color: rgb(255, 247, 240);
}

.s1 {
  border-radius: 12px !important;
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0px 0px 20px 0px rgba(38, 204, 133, 0.2) !important;
}

.s2 {
  border-radius: 12px !important;
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0px 0px 20px 0px rgba(255, 180, 0, 0.2) !important;
}

.s3 {
  border-radius: 12px !important;
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0px 0px 20px 0px rgba(71, 161, 242, 0.2) !important;
}

.ghsoGPxMT2 {
  border: 1px solid #8864fa !important;
}

.border-f2 {
  border-top: 1px solid #1c1d46 !important;
}

.border-f3 {
  border-top: 1px solid #3a59fb !important;
}

.border-f4 {
  border-top: 1px solid #1c1d46 !important;
}

.menu-border-2 {
  border-bottom: 1px solid #0e1c61 !important;
}

.menu-border-3 {
  border-bottom: 1px solid #687afc !important;
}

.menu-border-4 {
  border-bottom: 1px solid #f7f7f7 !important;
}

.menu-border-5 {
  border-bottom: 1px solid #f7f7f7 !important;
}

.iconbg1 {
  background: #64ce56 !important;
}

.iconbg2 {
  background: #ff6565 !important;
}

.iconbg3 {
  background: #ffb400 !important;
}

.iconbg4 {
  background: #47a1f2 !important;
}

.SPJA4lBdDZ {
  border-radius: 100px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
  padding: 15px 30px;
  margin-right: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.SPJA4lBdDZ i {
  padding-left: 8px;
  font-size: 16px;
}

.SPJA4lBdDZ-two {
  border-radius: 100px;
  padding: 15px 30px;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 15px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(255, 79, 88) 0%,
    rgb(255, 180, 0) 100%
  );
}

.SPJA4lBdDZ-two i {
  padding-left: 8px;
  font-size: 16px;
}

.image_w_f img {
  width: 100%;
}

/*--??/Responsive/??--*/
@media screen and (max-width: 1366px) {
  .banner-shape {
    position: absolute;
    bottom: 0;
    right: -9px;
    display: none;
  }

  .banner-shape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media screen and (max-width: 991px) {
  .banner-thumb {
    margin: 40px auto 0 0;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .banner-content {
    max-width: 600px;
    padding: 0 20px;
  }

  .banner-content .giggVdDLK5 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 18px;
    color: #fff;
  }

  .banner-content .vTuJnWSGqN {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
  }

  .banner-content .vTuJnWSGqN .SPJA4lBdDZ {
    margin-bottom: 10px;
  }
}

/*/------------------------Section-Header-------------------------/*/
/*/------------------------Overflow-Header-------------------------/*/
/*/------------------------Overflow Section-------------------------/*/
/*/------------------------Overflow Section-------------------------/*/
.gWeGO99wSl,
.feature-section,
.RpWalhFYoN,
.gallery-section,
.choose-section,
.team-section,
.client-section,
.pricing-section,
.work-section,
.blog-section,
.footer-section,
.domain-section,
.global-section,
.customar-section,
.user-section,
.newsletter,
.manesment-section,
.sponsor-section,
.video-section,
.risk-manesment,
.team-single,
.shop-section,
.cart-section,
.contact-section,
.error-section,
.screenshoot-section {
  overflow: hidden;
}

/*/------------------------Overflow Section-------------------------/*/
/*/------------------------Overflow Section-------------------------/*/
/*/------------------------Section-Header-------------------------/*/
.N053BMCvrw .dP3Arp6wv4 {
  max-width: 500px;
}

.N053BMCvrw .dP3Arp6wv4 .section-title {
  color: #f08e25;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.N053BMCvrw .dP3Arp6wv4 .section-sub {
  color: #0b185f;
  font-size: 36px;
  font-weight: 800 !important;
}

.N053BMCvrw .dP3Arp6wv4 p {
  color: #555555;
  font-size: 16px;
  font-weight: 500;
  margin-top: 25px;
}

.section-center {
  text-align: center;
  margin: 0 auto 60px;
  max-width: 500px;
}

@media screen and (max-width: 575px) {
  .N053BMCvrw .dP3Arp6wv4 {
    max-width: 500px;
  }

  .N053BMCvrw .dP3Arp6wv4 .section-title {
    color: #f08e25;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .N053BMCvrw .dP3Arp6wv4 .section-sub {
    color: #0b185f;
    font-size: 32px;
  }

  .N053BMCvrw .dP3Arp6wv4 p {
    color: #555555;
    font-size: 16px;
    font-weight: 500;
    margin-top: 25px;
  }
}

@media screen and (max-width: 490px) {
  .N053BMCvrw .dP3Arp6wv4 {
    max-width: 500px;
  }

  .N053BMCvrw .dP3Arp6wv4 .section-title {
    color: #f08e25;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .N053BMCvrw .dP3Arp6wv4 .section-sub {
    color: #0b185f;
    font-size: 26px;
  }

  .N053BMCvrw .dP3Arp6wv4 p {
    color: #555555;
    font-size: 15px;
    font-weight: 500;
    margin-top: 15px;
  }
}

/*/------------------------Section-Header-------------------------/*/
/*/------------------------Mibile Menu-Header-------------------------/*/
/*------------ custom mobile menu css  ----------------------*/
.mobile-menu-area {
  display: none;
}

div#bs-coolmatebags.com-navbar-collapse-1 {
  display: none;
}

.mobile-menu-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background-color: #62a0d1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.open-mobile-menu .mobile-menu-area {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.open-mobile-menu .mobile-menu ul {
  transform: scaleY(1);
}

.mobile-menu > ul.m-menu {
  padding: 50px;
}

.mobile-menu > ul {
  transform: scaleY(0);
  transition: all 1s ease;
  transform-origin: top;
  overflow-y: auto;
  max-height: 100vh;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu > ul li {
  position: relative;
}

.mobile-menu ul li a {
  font-size: 24px;
  line-height: 45px;
  color: #fff;
  text-transform: capitalize;
}

.mobile-menu ul li a > i {
  margin-left: 10px;
}

.mobile-menu > ul > li .mobile-submenu {
  display: none;
}

.mobile-menu > ul > li .mobile-submenu li a {
  font-size: 20px;
  line-height: 35px;
}

.mobile-menu > ul > li > a:focus,
.mobile-menu > ul > li .mobile-submenu li a:focus {
  text-decoration: none;
}

.mobile-menu > ul > li .mobile-submenu .mobile-submenu li a {
  font-size: 15px;
  line-height: 25px;
}

.comment-contact button.default-btn {
  background: #000;
  padding: 15px 25px;
}

#commentform input {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .menu-head > a {
    padding: 5px 0;
    display: inline-block;
    margin-left: -25px;
  }

  .yrPe8tt8CD-copyright {
    width: 100%;
    text-align: center;
  }

  .yrPe8tt8CD-tagrel {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .yrPe8tt8CD-tagrel li {
    float: none;
  }
}

/*/------------------------Mibile Menu-Header-------------------------/*/
/*/------------------------Header Menu-------------------------/*/
/* header section */
.menu-flex-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #c363f2;
}

.menu-fixed {
  background: #f156ed;
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999999999;
}

.header-top.style3 {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 0;
}

.header-top.style3 .primary-menu {
  padding: 27px 0px;
}

.menu-head {
  float: left;
}

.menu-head > a {
  padding: 5px 0;
  display: inline-block;
}

.menu-area {
  float: right;
}

.menu-area.style3 {
  width: 650px;
  margin: 0 auto;
  float: none;
}

.header-top-section {
  padding-bottom: 17px;
  border-bottom: 1px solid #eff2f7;
  overflow: hidden;
}

.menu-area.style3 .main-menu > li > a {
  padding: 23px 10px;
}

.donate {
  padding: 0;
  margin: 0;
  float: right;
}

.donate .search-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  display: block;
  line-height: 40px;
  margin-right: 15px;
}

.donate .search-box .search-icon i {
  color: #fff;
}

.donate .shop {
  position: relative;
}

.donate .shop i {
  font-size: 27px;
  margin-top: 14px;
  position: relative;
  color: #fff;
}

.donate .shop .shop-rea {
  position: absolute;
  top: -10px;
  left: 0;
  background: #4350ff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  color: #fff;
}

.donate .shop .checkout {
  position: absolute;
  top: 45px;
  right: 0%;
  background: rgba(246, 6, 210, 0.5);
  width: 320px;
  padding: 25px 20px;
  transform: scale(0);
  opacity: 1;
  z-index: 999;
}

.donate .shop .checkout li {
  display: flex;
  float: none;
  margin-bottom: 15px;
}

.donate .shop .checkout li .Yf16BTNGEm {
  margin-right: 18px;
  width: 60px;
  height: 60px;
}

.donate .shop .checkout li .Yf16BTNGEm img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.donate .shop .checkout li .content {
  margin-right: 15px;
}

.donate .shop .checkout li .content .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.donate .shop .checkout li .content p {
  color: #fff;
}

.donate .shop .checkout li .check-icon i {
  margin-top: 0;
  font-size: 17px;
  transition: all 0.3s;
  color: #fff;
}

.donate .shop .checkout li .check-icon i:hover {
  color: #ff6565;
}

.donate .shop .checkout li .total {
  color: #fff;
}

.donate .shop .checkout li .checkout-btn {
  width: 100%;
  background: #86cf3b;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 12px 5px;
  margin-top: 12px;
}

.donate .shop .checkout .checkout-flex-price {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.donate .shop:hover .checkout {
  transform: scale(1);
  opacity: 1;
}

.donatetwo .shop {
  position: relative;
}

.donatetwo .shop i {
  font-size: 27px;
  margin-top: 8px;
}

.donatetwo .shop .shop-rea {
  position: absolute;
  top: -17px;
  left: 0;
  background: #4350ff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
  color: #fff;
}

.donate li {
  float: left;
  list-style: none;
  margin: 0;
  cursor: pointer;
}

.donate li i {
  color: #0b185f;
}

.menu-area.style3 .donate > li {
  padding: 23px 5px;
}

.main-menu {
  margin: 0;
  padding: 0;
  float: left;
}

.main-menu li {
  float: left;
  list-style: none;
  position: relative;
}

.main-menu > .active > a {
  color: #fff;
}

.main-menu li a {
  padding: 20px 20px;
  margin: 13px 0;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
}

.main-menu li a i {
  font-size: 15px;
  font-weight: 600;
  padding: 5px;
  display: inline-block;
}

.main-menu li a:hover {
  color: #fff;
}

/* sub menu */
.sub-menu {
  position: absolute;
  width: 200px;
  z-index: 1;
  text-align: center;
  display: none;
}

.sub-menu > li {
  float: none;
  background: #fff;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.sub-menu > li > a {
  padding: 10px;
  text-align: left;
  font-size: 14px;
  color: #191919;
  text-transform: capitalize;
  display: block;
  margin: 0;
  transition: all 0.3s;
}

.sub-menu li:hover > a {
  background: #fff;
  color: #bf54f2;
}

.main-menu li:hover > .sub-menu {
  display: block;
}

.home-dov {
  position: relative;
}

.home-dov:hover .sub-menu {
  display: inline-block;
}

.substyle {
  margin-left: 200px;
  top: 0px;
  display: none;
}

.substyle > li > a {
  padding: 10px 0px 10px 10px;
}

.sub-menu > li > a > i {
  float: right;
}

.sub-menu > .active > a {
  color: #f156ed;
}

.mt-40 {
  margin-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px;
}

.banneroverlay {
  background: rgba(136, 136, 136, 0.9);
  z-index: 2;
  height: 100%;
  width: 100%;
}

.radius-none {
  border-radius: 4px;
}

.header-top {
  padding: 9px 0;
  overflow: hidden;
  background: #fff;
}

.header-top-left {
  padding: 0;
  margin: 0;
  float: left;
  overflow: hidden;
}

.header-top-left li {
  float: left;
  list-style: none;
  margin-right: 20px;
  overflow: hidden;
  color: #fff;
}

.header-top.style3 .header-top-left li {
  float: none;
  color: #191919;
  font-weight: 700;
  width: 100%;
}

.header-top-left li > span {
  margin: 0 5px;
}

.header-top-left li > a {
  display: inline-block;
  color: #fff;
}

.header-top.style3 .header-top-left li > a {
  color: #696969;
  font-weight: 400;
}

.header-top-left li > a:hover {
  text-decoration: underline;
}

.header-top-right {
  float: right;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.header-top-right li {
  float: right;
  list-style: none;
  margin: 3px;
}

.header-top-right li > a {
  display: inline-block;
  padding: 0 5px;
  color: #fff;
}

.header-top.style3 .header-top-right li > a {
  color: #696969;
}

.header-top.style3 .header-top-right li > a:hover {
  color: #fff;
}

.mobile-menu-bar {
  display: none;
}

.mobile-menu-bar a i {
  font-size: 26px;
}

/*/------------------------Header Menu-------------------------/*/
@media screen and (max-width: 1199px) {
  .main-menu li a {
    padding: 20px 7px;
    margin: 13px 0;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
  }
}

@media only screen and (max-width: 991px) {
  .donate {
    display: none;
  }

  .mobile-menu-area {
    background: #5e51fc;
  }

  .mobile-menu-area {
    display: block;
  }

  .open-mobile-menu .menu-area {
    transform: scaleY(1);
  }

  .open-mobile-menu .menu-area.style2 {
    transform: scaleY(1);
  }

  .mobile-menu-bar {
    display: inline-block;
    margin-top: 23px;
  }

  .mobile-menu-area .mobile-menu-bar {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    display: none;
  }

  .mobile-menu-area .mobile-menu-bar span {
    background-color: #000;
  }

  .menu-head {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
  }

  .menu-area {
    display: none;
  }

  .sub-menu > li > a {
    padding: 12px 10px;
  }

  .style3 .menu-area {
    top: 72px;
    width: 100%;
  }

  .header-top.style3 {
    display: none;
  }

  .sub-menu li > a {
    color: #191919;
  }

  .header-bottom.style3 .logo {
    display: inline-block;
  }

  .menu-area li > a {
    color: #191919;
  }

  .menu-area .donate li > i {
    color: #fff;
  }

  .main-menu {
    max-width: 550px;
    margin: 0 auto;
    margin-left: 100px;
    float: left;
  }

  .donate {
    width: calc(100% - 700px);
    float: right;
  }

  .donate li i {
    color: #fff;
  }

  .menu-area.style3 .main-menu > li > a {
    padding: 23px 7px;
  }

  .menu-area input[type="text"] {
    background: #fff;
    color: #fff;
    transform: translateY(-1px);
  }

  .header-section ::-webkit-input-placeholder {
    color: #fff;
    font-family: "Poppins", sans-serif;
  }

  .header-section :-moz-placeholder {
    color: #fff;
    font-family: "Poppins", sans-serif;
  }

  .header-section ::-moz-placeholder {
    color: #fff;
    font-family: "Poppins", sans-serif;
    opacity: 1;
    /* Since FF19 lowers the opacity of the placeholder by default */
  }

  .header-section :-ms-input-placeholder {
    color: #fff;
    font-family: "Poppins", sans-serif;
  }

  .button-scorl {
    overflow-x: scroll;
  }

  .spon_one {
    max-width: 1170px;
    margin: 10px;
  }

  .sopn_wide {
    overflow-x: scroll;
  }
}

@media only screen and (max-width: 768px) {
  .mobile-menu-bar {
    display: inline-block;
    float: right;
    top: 1px;
  }

  .main-menu {
    margin-left: 15px;
    max-width: 550px;
  }

  .testi-border {
    padding: 50px 0;
  }

  .testi-pagination {
    width: 94%;
  }

  .divider1 {
    width: 400px;
  }

  .divider2 {
    width: 300px;
  }

  .divider3,
  .divider4 {
    width: 200px;
  }

  .divider5,
  .divider6 {
    width: 200px;
  }

  .divider7:before {
    width: 50px;
    right: 210px;
  }

  .divider7:after {
    width: 50px;
    left: 210px;
  }
}

@media only screen and (max-width: 640px) {
  .donate {
    display: none;
  }

  .main-menu {
    width: 100%;
    margin-left: 40px;
  }

  .main-menu li {
    width: 100%;
    float: none;
    text-align: center;
  }

  .sub-menu {
    right: 0;
    top: 0;
  }

  .main-menu > li > a {
    padding: 5px 0;
    color: #fff;
  }

  .header-top {
    padding: 0 20px;
  }

  .menu-area {
    background: #5e51fc;
  }

  .header-top {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .menu-head {
    padding: 1px 20px 0px 45px;
  }
}

@media only screen and (max-width: 570px) {
  .donate {
    display: none;
  }

  .main-menu {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 400px) {
  .heading-section p {
    max-width: 340px;
    padding: 10px;
  }

  .main-menu {
    margin-left: 0px;
  }

  .menu-head {
    padding: 1px 20px 0px 45px;
  }

  .divider1 {
    width: 200px;
  }

  .divider2 {
    width: 100px;
  }

  .divider3,
  .divider4 {
    width: 100px;
  }

  .divider5,
  .divider6 {
    width: 100px;
  }

  .divider7:before {
    width: 10px;
    right: 210px;
  }

  .divider7:after {
    width: 10px;
    left: 210px;
  }
}

/*/------------------------Header Menu-------------------------/*/
/*/------------------------Menu-area-four Menu-------------------------/*/
.header-style-four .style-four-menu li a {
  color: #0b185f;
}

.header-style-four .donate .shop i {
  color: #ffad06;
}

/*/------------------------Menu-area-four Menu-------------------------/*/
/*/------------------------Searchbar Menu-------------------------/*/
.menu-search {
  display: inline-block;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  color: #0b185f;
  border: 2px solid #f1f1f1;
  border-radius: 100%;
  margin: 33px 0px 13px;
  cursor: pointer;
}

.menu-search-form {
  position: absolute;
  height: 100%;
  width: 100%;
  color: #707070;
  top: 0;
  left: 0;
  text-align: center;
  display: none;
}

.menu-search-form.open {
  display: block;
  z-index: 9;
}

.menu-search-form input {
  width: 100%;
  height: 100%;
  color: #707070;
  text-align: center;
  border: none;
  outline: none;
  padding: 15px 115px 15px 15px;
}

.menu-search-form .menu-search-close {
  position: absolute;
  right: 90px;
  top: 35%;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

/*/------------------------Searchbar Menu-------------------------/*/
/*/------------------------Banner Section-------------------------/*/
.gWeGO99wSl {
  background: url(../images/banner/banner3.jpg) no-repeat center center;
  background-size: cover;
  padding: 180px 0;
  position: relative;
  overflow: hidden;
}

.banner-six {
  background: url(../images/banner/banner6.jpg) no-repeat center center !important;
  background-size: cover !important;
}

.banner-six::before {
  display: none;
}

.s3-shape {
  position: absolute;
  top: 0;
  left: 0;
  animation: zoominout 10s infinite;
  animation-delay: 2s;
}

@keyframes zoominout {
  50% {
    transform: scale(1.2);
  }
}

.s4-shape {
  position: absolute;
  top: 0;
  right: 0;
  animation: zoominout 6s infinite;
  animation-delay: 2s;
}

.banner-shape {
  position: absolute;
  bottom: 0;
  right: -9px;
}

.banner-shape img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.banner-content .giggVdDLK5 {
  font-size: 35px;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 100px;
}

.banner-content p {
  font-size: 18px;
  color: #090303;
  line-height: 1.5;
}

.banner-content .vTuJnWSGqN {
  margin-top: 45px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.banner-content .vTuJnWSGqN .SPJA4lBdDZ {
  display: block;
}

.banner-thumb {
  position: relative;
  margin-bottom: -46px;
  z-index: 1;
}

.s1-shape {
  position: absolute;
  top: 30px;
  left: -145px;
}

.s2-shape {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1199px) {
  .s1-shape {
    position: absolute;
    top: 30px;
    left: -145px;
    display: none;
  }

  .s2-shape {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .banner-content .giggVdDLK5 {
    font-size: 30px;
    color: #030202;
    margin-bottom: 20px;
  }

  .banner-content p {
    font-size: 16px;
    color: #0e0505;
  }
}

@media screen and (max-width: 400px) {
  .banner-content .giggVdDLK5 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
  }

  .banner-content p {
    font-size: 16px;
    color: #fff;
  }
}

/*/------------------------Banner Section-------------------------/*/
/*/------------------------Banner-style-two Section-------------------------/*/
.gWeGO99wSl.banner-style-two {
  background: url(../images/banner/banner.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

.gWeGO99wSl.banner-style-two::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.49);
}

.gWeGO99wSl.banner-style-two .menu-flex-area {
  border: none;
}

.gWeGO99wSl.banner-style-two .banner-thumb {
  max-width: 570px;
  margin-bottom: 0;
  position: relative;
}

.gWeGO99wSl.banner-style-two .banner-thumb img {
  width: 100%;
  height: 100%;
}

.gWeGO99wSl.banner-style-two .banner-thumb .b-t-price {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 23px;
  left: 20px;
}

.gWeGO99wSl.banner-style-two .banner-thumb .b-t-price .title {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.gWeGO99wSl.banner-style-two .banner-thumb .b-t-price .price {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.gWeGO99wSl.banner-style-two .banner-thumb .b-t-price .price span {
  font-size: 18px;
  display: block;
}

.gWeGO99wSl.banner-style-two .banner-content .ban-sub {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.gWeGO99wSl.banner-style-two .banner-content ul li {
  color: #fff;
}

.gWeGO99wSl.banner-style-two .banner-content ul li i {
  color: #ffcf34;
  margin-right: 8px;
}

.gWeGO99wSl.banner-style-two .banner-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.gWeGO99wSl.banner-style-two .banner-content .vTuJnWSGqN .play-btn img {
  margin-right: 10px;
}

.gWeGO99wSl.banner-style-two .banner-content .vTuJnWSGqN .play-btn p {
  width: 100px;
  width: 147px;
  margin-bottom: 0;
}

@media screen and (max-width: 400px) {
  .gWeGO99wSl.banner-style-two {
    background: url(../images/banner/banner.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
  }

  .gWeGO99wSl.banner-style-two .banner-content .ban-sub {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
}

/*/------------------------Banner-style-two Section-------------------------/*/
/*/------------------------Banner-style-three Section-------------------------/*/
.gWeGO99wSl.banner-style-three {
  background: url(../images/banner/banner-bg1.png) no-repeat center center;
  background-size: cover;
}

.gWeGO99wSl.banner-style-three .banner-thumb {
  margin-bottom: 0;
  max-width: 754px;
}

.gWeGO99wSl.banner-style-three .banner-thumb img {
  width: 100%;
  height: 100%;
}

/*/------------------------Banner-style-three Section-------------------------/*/
/*/------------------------Banner-style-four Section-------------------------/*/
.gWeGO99wSl.banner-style-four {
  background: #fffcf8;
  overflow: hidden;
}

.gWeGO99wSl.banner-style-four .banner-content .banner-four-btn .SPJA4lBdDZ {
  border-radius: 4px;
  padding: 9px 20px;
}

.gWeGO99wSl.banner-style-four .banner-content .banner-four-btn .SPJA4lBdDZ i {
  font-size: 36px;
}

.gWeGO99wSl.banner-style-four
  .banner-content
  .banner-four-btn
  .SPJA4lBdDZ
  .cont
  span {
  font-size: 14px;
}

.gWeGO99wSl.banner-style-four
  .banner-content
  .banner-four-btn
  .SPJA4lBdDZ
  .cont
  .google {
  font-weight: 600;
  padding: 0;
  margin: 0;
  font-size: 17px;
}

.gWeGO99wSl.banner-style-four .banner-thumb {
  max-width: 400px;
}

.gWeGO99wSl.banner-style-four .banner-thumb img {
  width: 100%;
  height: 100%;
}

.gWeGO99wSl.banner-style-four .banner-thumb .b-four-thumb-shape1 {
  position: absolute;
  top: 13%;
  left: -25%;
  animation: btb 2s linear infinite;
  animation-delay: 2s;
}

.gWeGO99wSl.banner-style-four .banner-thumb .b-four-thumb-shape2 {
  position: absolute;
  top: 61%;
  left: -25%;
  animation: btb3 2s linear infinite;
  animation-delay: 2s;
}

.gWeGO99wSl.banner-style-four .banner-thumb .b-four-thumb-shape3 {
  position: absolute;
  top: 6%;
  right: -23%;
  animation: btb3 2s linear infinite;
  animation-delay: 2s;
}

.gWeGO99wSl.banner-style-four .banner-thumb .b-four-thumb-shape4 {
  position: absolute;
  top: 51%;
  right: -25%;
  animation: btb 2s linear infinite;
  animation-delay: 2s;
}

.banner-style-four-shape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.banner-style-four-shape2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

@keyframes btb {
  50% {
    transform: translateX(20px);
  }
}

@keyframes btb3 {
  50% {
    transform: translateY(20px);
  }
}

@media screen and (max-width: 767px) {
  .gWeGO99wSl.banner-style-four .banner-thumb {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .b-four-thumb-shape1,
  .b-four-thumb-shape2,
  .b-four-thumb-shape3,
  .b-four-thumb-shape4 {
    display: none;
  }
}

/*/------------------------Banner-style-four Section-------------------------/*/
/*/------------------------Banner-style-five Section-------------------------/*/
.gWeGO99wSl.banner-style-five {
  background-image: -webkit-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 100%
  );
}

.gWeGO99wSl.banner-style-five .banner-content .sub {
  font-size: 20px;
  font-weight: 500;
  color: #f08e25;
  margin-bottom: 15px;
  display: block;
}

.gWeGO99wSl.banner-style-five .banner-thumb {
  max-width: 752px;
}

.gWeGO99wSl.banner-style-five .banner-thumb img {
  width: 100%;
  height: 100%;
}

.bann-five-shape {
  position: absolute;
  bottom: 0;
  left: 250px;
  animation: zoominout 10s infinite;
}

@media screen and (max-width: 767px) {
  .gWeGO99wSl.banner-style-five .banner-thumb {
    max-width: 752px;
    margin-top: 30px;
  }
}

.checkout-cards {
  background-color: #f0f2f4;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
}

.checkout-box {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  padding: 50px 40px;
}

.checkout-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin-bottom: 40px;
}

.form-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card-field {
  background: #f9fafb;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px 30px;
}

.field-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #334155;
}

.field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.field-group input,
.field-group textarea {
  flex: 1 1 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e293b;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.submit-row {
  text-align: center;
}

.btn-submit {
  background-color: #049001;
  color: #fff;
  padding: 14px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #f1e049;
}

.form-note {
  text-align: center;
  margin-top: 10px;
}

.form-message {
  font-style: italic;
  color: #10b981;
}

@media (max-width: 768px) {
  .field-group input,
  .field-group textarea {
    flex: 1 1 100%;
  }
}

/*/------------------------Banner-style-five Section-------------------------/*/
/*/------------------------Breadcrumdbanner-one Section-------------------------/*/
.gWeGO99wSl.breadcrumd-banner-one {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(26, 40, 7) 100%
  ) !important;
  background-size: cover;
}

.gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one .title {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one p {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

@media screen and (max-width: 500px) {
  .gWeGO99wSl.breadcrumd-banner-one {
    background: url(../images/banner/banner3.jpg) no-repeat center center;
    background-size: cover;
  }

  .gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one .title {
    font-size: 50px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .gWeGO99wSl.breadcrumd-banner-one .breadcrumd-content-one p {
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
  }
}

/*/------------------------Breadcrumdbanner-one Section-------------------------/*/
/*/------------------------Breadcrumdbanner-two Section-------------------------/*/
.gWeGO99wSl.breadcrumb-banner-two {
  background: #fffcf8;
}

.gWeGO99wSl.breadcrumb-banner-two .breadcrumd-content-one .title {
  color: #0b185f;
}

.gWeGO99wSl.breadcrumb-banner-two .breadcrumd-content-one p {
  color: #555555;
}

/*/------------------------Breadcrumdbanner-two Section-------------------------/*/
/*/------------------------sponsor Section-------------------------/*/
.sponsor-wrapper .sponsor-items {
  width: 82px;
  height: 100px;
}

.sponsor-wrapper .sponsor-items img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*/------------------------sponsor Section-------------------------/*/
/*/------------------------Domain Section-------------------------/*/
.domain-section {
  background: url(../images/domain/domain.png) no-repeat center center;
  background-size: cover;
  position: relative;
}

.domain-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(214, 183, 99, 0.05);
}

.domain-section .N053BMCvrw {
  position: relative;
}

.domain-custom-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.domain-custom-wrapper input {
  width: 90%;
  height: 60px;
  border: none;
  text-align: center;
  position: relative;
  outline: none;
}

.domain-custom-wrapper .domain-btn {
  position: absolute;
  top: 4px;
  left: 6px;
  height: 50px;
  text-align: center;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(255, 79, 88) 0%,
    rgb(255, 180, 0) 100%
  );
}

.domain-custom-wrapper .domain-btn .form-select-lg {
  background: none;
  border: none;
  padding: 10px 60px;
  color: #fff;
}

.domain-custom-wrapper .domain-btn .form-select-lg option {
  background: #f08e25;
}

.domain-custom-wrapper .form-control:focus {
  border: none;
}

.domain-custom-wrapper .domain-search {
  width: 10%;
  height: 60px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  border-left: 1px solid rgba(212, 202, 202, 0.9);
}

.domain-custom-wrapper .domain-search a i {
  color: #0b185f;
}

.domain-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 60px;
  justify-content: space-around;
}

.domain-name li {
  margin-bottom: 10px;
  margin-right: 20px;
  position: relative;
  font-weight: 800;
  font-size: 17px;
  color: #000;
  margin-left: 42px;
}

.domain-name li::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -25px;
  width: 17px;
  height: 17px;
  background: #86cf3b;
  border-radius: 50%;
}

.domain-name li:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -25px;
  width: 17px;
  height: 17px;
  background: #f08e25;
  border-radius: 50%;
}

.domain-name li:nth-child(3)::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -25px;
  width: 17px;
  height: 17px;
  background: #47a1f2;
  border-radius: 50%;
}

.domain-name li:nth-child(4)::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -25px;
  width: 17px;
  height: 17px;
  background: #e85aca;
  border-radius: 50%;
}

.domain-name li:nth-child(5)::before {
  position: absolute;
  content: "";
  top: 4px;
  left: -25px;
  width: 17px;
  height: 17px;
  background: #c060f4;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .domain-custom-wrapper input {
    width: 80%;
  }

  .domain-custom-wrapper .domain-search {
    width: 20%;
  }

  .domain-custom-wrapper .domain-btn {
    position: absolute;
    top: 100%;
    left: 6px;
    height: 50px;
    margin-top: 10px;
    text-align: center;
    background-image: -webkit-linear-gradient(145deg, #ff4f58 0%, #ffb400 100%);
  }

  .domain-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 110px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

/*/------------------------Domain Section-------------------------/*/
/*/------------------------Feature Section-------------------------/*/
.cover-btn {
  text-align: center;
  margin: 50px auto 0 auto;
}

.feature-items {
  text-align: center;
  margin: 0 auto;
  padding: 60px 30px;
  border-radius: 12px;
  position: relative;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 18px 0px rgba(0, 12, 32, 0.05);
  transition: all 0.4s;
}

.feature-items .feature-shapebg {
  position: absolute;
  top: 0;
  left: 0;
  width: 249px;
  height: 249px;
}

.feature-items .feature-shapebg img {
  width: 100%;
  height: 100%;
}

.feature-items .feature-shape {
  position: absolute;
  top: 39px;
  left: 35px;
}

.feature-items:hover {
  transform: scale(1.1);
}

.feature-items .feature-thumb {
  border-radius: 50%;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
  box-shadow: 0px 8px 30px 0px rgba(38, 204, 133, 0.36);
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.feature-items .feature-thumb .Yf16BTNGEm {
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 auto;
  line-height: 70px;
}

.feature-items .feature-thumb .Yf16BTNGEm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-items .feature-content .title,
.feature-items .feature-content .title2,
.feature-items .feature-content .title3,
.feature-items .feature-content .title4 {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}

.feature-items .feature-content .title a,
.feature-items .feature-content .title2 a,
.feature-items .feature-content .title3 a,
.feature-items .feature-content .title4 a {
  color: #0b185f;
}

.feature-items .feature-content .title::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
}

.feature-items .feature-content .title2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(255, 79, 88) 0%,
    rgb(255, 180, 0) 100%
  );
}

.feature-items .feature-content .title3::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(232, 90, 202) 0%,
    rgb(252, 78, 101) 100%
  );
}

.feature-items .feature-content .title4::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 70px;
  height: 4px;
  border-radius: 4px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(1, 203, 173) 0%,
    rgb(71, 161, 242) 100%
  );
}

.feature-items .feature-content .title a {
  color: #0b185f;
  font-size: 24px;
}

@media screen and (max-width: 420px) {
  .feature-section.host-section .host-itmes {
    padding: 60px 15px !important;
    text-align: left;
    border-bottom: 5px solid #fff;
  }
}

/*/------------------------Feature Section-------------------------/*/
/*/------------------------Feature-Style-two Section-------------------------/*/
.feature-section.feature-style-two .feature-items .feature-thumb {
  border-radius: 4px;
}

/*/------------------------Feature-Style-two Section-------------------------/*/
/*/------------------------Feature-Style-three Section-------------------------/*/
.feature-section.feature-style-three .feature-items {
  border-bottom: 0 !important;
  position: relative;
}

.feature-section.feature-style-three .feature-items .feature-thumb {
  border-radius: 50% !important;
}

.feature-section.feature-style-three .feature-items .storke {
  color: transparent;
  -webkit-text-stroke: 1px #86cf3b;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke2 {
  color: transparent;
  -webkit-text-stroke: 1px #ffa50d;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke3 {
  color: transparent;
  -webkit-text-stroke: 1px #3fa6ea;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke4 {
  color: transparent;
  -webkit-text-stroke: 1px #ed57af;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke5 {
  color: transparent;
  -webkit-text-stroke: 1px #6652b9;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke6 {
  color: transparent;
  -webkit-text-stroke: 1px #c15df2;
  font-size: 49px;
}

.feature-section.feature-style-three .feature-items .storke,
.feature-section.feature-style-three .feature-items .storke1,
.feature-section.feature-style-three .feature-items .storke2,
.feature-section.feature-style-three .feature-items .storke3,
.feature-section.feature-style-three .feature-items .storke4,
.feature-section.feature-style-three .feature-items .storke5,
.feature-section.feature-style-three .feature-items .storke6 {
  position: absolute;
  top: 16%;
  right: 12%;
}

/*/------------------------Feature-Style-three Section-------------------------/*/
/*/------------------------Host-style-five Section-------------------------/*/
.feature-section.host-style-five .feature-items {
  text-align: center !important;
  margin: 0 auto !important;
}

.feature-section.host-style-five .feature-items .feature-thumb {
  border-radius: 50% !important;
  margin: 0 auto 20px !important;
}

/*/------------------------Host-style-five Section-------------------------/*/
/*/------------------------Manesment Section-------------------------/*/
.manesment-section {
  overflow: hidden;
}

.section-bg {
  background: #fffeef !important;
}

.section-bg2 {
  background: #ffffff !important;
}

.section-bg3 {
  background: #effff8 !important;
}

.section-bg4 {
  background: #fafbff !important;
}

.section-bg5 {
  background: #fff !important;
}

.section-bg6 {
  background: #fffceb !important;
}

.manesment-thumb {
  max-width: 736px;
}

.manesment-thumb img {
  width: 100%;
  height: 100%;
}

.manesment-content {
  margin-top: 30px;
}

.manesment-content .manesment-tabing {
  margin-top: 33px;
}

.manesment-content .manesment-tabing .accordion-item {
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 8px 0px rgba(136, 136, 136, 0.08);
  border: none;
  margin-top: 10px;
}

.manesment-content
  .manesment-tabing
  .accordion-item
  .accordion-header
  .accordion-button {
  padding: 8px 15px;
  font-size: 18px;
  font-weight: 700;
  color: #0b185f;
  background: #fff;
}

.manesment-content
  .manesment-tabing
  .accordion-item
  .accordion-header
  .accordion-button
  .Yf16BTNGEm {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
}

.manesment-content
  .manesment-tabing
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  color: #0b185f;
  background-color: #fff;
  box-shadow: none;
}

.manesment-content
  .manesment-tabing
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: rotate(-180deg);
}

.manesment-content
  .manesment-tabing
  .accordion-item
  .accordion-header
  .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

.manesment-content .manesment-tabing .accordion-item .accordion-body {
  padding-left: 70px;
  padding-top: 0px;
}

@media screen and (max-width: 350px) {
  .manesment-content
    .manesment-tabing
    .accordion-item
    .accordion-header
    .accordion-button {
    font-size: 16px;
  }

  .manesment-content
    .manesment-tabing
    .accordion-item
    .accordion-header
    .accordion-button
    .Yf16BTNGEm {
    margin-right: 10px;
    width: 44px;
    height: 41px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
  }
}

/*/------------------------Manesment Section-------------------------/*/
/*/------------------------RiskManesment Section-------------------------/*/
.risk-manesment-items {
  display: flex;
  align-items: center;
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.risk-manesment-items .risk-manesment-tumb {
  margin-right: 15px;
  max-width: 260px;
}

.risk-manesment-items .risk-manesment-tumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.risk-manesment-items .risk-manesment-content {
  width: 60%;
  padding: 15px 21px;
}

.risk-manesment-items .risk-manesment-content .title {
  color: #0b185f;
  margin-bottom: 15px;
}

.risk-manesment-items .risk-manesment-content p {
  color: #555555;
  font-size: 18px;
}

.risk-manesment-items .risk-manesment-content .risk-btn {
  color: #f08e25;
  text-decoration: underline;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

@media screen and (max-width: 500px) {
  .risk-manesment-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  }

  .risk-manesment-items .risk-manesment-tumb {
    margin-right: 15px;
    max-width: 260px;
  }

  .risk-manesment-items .risk-manesment-tumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .risk-manesment-items .risk-manesment-content {
    width: 100%;
    padding: 15px 21px;
  }

  .risk-manesment-items .risk-manesment-content .title {
    color: #0b185f;
    margin-bottom: 15px;
  }

  .risk-manesment-items .risk-manesment-content p {
    color: #555555;
    font-size: 18px;
  }

  .risk-manesment-items .risk-manesment-content .risk-btn {
    color: #f08e25;
    text-decoration: underline;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
  }
}

/*/------------------------RiskManesment Section-------------------------/*/
/*/------------------------Global Section-------------------------/*/
.global-section {
  background: #fefff1;
}

.global-content .team-a li {
  margin-bottom: 10px;
}

.global-content .team-a li img {
  margin-right: 9px;
}

.global-thumb {
  max-width: 770px;
}

.global-thumb img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .global-thumb {
    max-width: 770px;
    margin-top: 40px;
    width: 100%;
    height: 100%;
  }
}

/*/------------------------Global Section-------------------------/*/
/*/------------------------Host Section-------------------------/*/
.feature-section.host-section .host-itmes {
  padding: 60px 55px;
  text-align: left;
  border-bottom: 5px solid #fff;
}

.feature-section.host-section .host-itmes .feature-thumb {
  border-radius: 4px;
  margin: 0 0 auto 0;
  margin-bottom: 17px;
}

.feature-section.host-section .host-itmes .feature-content .f-title {
  margin-bottom: 15px;
}

.feature-section.host-section .host-itmes .feature-content .f-title a {
  color: #000;
}

.feature-section.host-section .host-itmes:hover {
  border-bottom: 5px solid #86cf3b;
}

.feature-section.host-section .hover-two:hover {
  border-bottom: 5px solid #ffb003;
}

.feature-section.host-section .hover-three:hover {
  border-bottom: 5px solid #47a1f2;
}

.feature-section.host-section .hover-four:hover {
  border-bottom: 5px solid #e959c3;
}

.feature-section.host-section .hover-five:hover {
  border-bottom: 5px solid #6151b6;
}

.feature-section.host-section .hover-six:hover {
  border-bottom: 5px solid #bb5cfa;
}

.feature-section.host-section .hover-seven:hover {
  border-bottom: 5px solid #e959c5;
}

.feature-section.host-section .hover-eight:hover {
  border-bottom: 5px solid #ff6247;
}

/*/------------------------Host Section-------------------------/*/
/*/------------------------Customar Section-------------------------/*/
.customar-section {
  background: #fffdf6;
  overflow: hidden;
}

.map-image {
  position: relative;
  text-align: center;
  max-width: 1170px;
  margin: 0 auto;
}

.map-image img {
  width: 100%;
  height: 100%;
}

.image-effect-one {
  position: absolute;
  top: 0px;
  left: 40%;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-one .avtive-popup {
  background: #fff;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@keyframes zmin {
}

.image-effect-two {
  position: absolute;
  top: 112px;
  left: 15%;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-three {
  position: absolute;
  left: 29%;
  bottom: 112px;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-four {
  position: absolute;
  right: 18%;
  top: 102px;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-five {
  position: absolute;
  left: 55%;
  top: 49%;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-six {
  position: absolute;
  right: 16%;
  bottom: 96px;
  animation: zmin 2s infinite;
  animation-delay: 2s;
}

.image-effect-one .popup-area,
.image-effect-two .popup-area,
.image-effect-three .popup-area,
.image-effect-four .popup-area,
.image-effect-five .popup-area,
.image-effect-six .popup-area {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  top: 46px;
  transition: all 0.4s;
  left: -131px;
  z-index: 1;
  width: 350px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
}

.image-effect-one .popup-area .designation,
.image-effect-two .popup-area .designation,
.image-effect-three .popup-area .designation,
.image-effect-four .popup-area .designation,
.image-effect-five .popup-area .designation,
.image-effect-six .popup-area .designation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-effect-one .popup-area .designation .name,
.image-effect-two .popup-area .designation .name,
.image-effect-three .popup-area .designation .name,
.image-effect-four .popup-area .designation .name,
.image-effect-five .popup-area .designation .name,
.image-effect-six .popup-area .designation .name {
  font-size: 16px;
  font-weight: 600;
}

.image-effect-one .popup-area .designation .name span,
.image-effect-two .popup-area .designation .name span,
.image-effect-three .popup-area .designation .name span,
.image-effect-four .popup-area .designation .name span,
.image-effect-five .popup-area .designation .name span,
.image-effect-six .popup-area .designation .name span {
  font-size: 14px;
  color: #555555;
}

.image-effect-one .popup-area .designation .star span i,
.image-effect-two .popup-area .designation .star span i,
.image-effect-three .popup-area .designation .star span i,
.image-effect-four .popup-area .designation .star span i,
.image-effect-five .popup-area .designation .star span i,
.image-effect-six .popup-area .designation .star span i {
  font-size: 14px;
  color: #ffcf34;
}

.image-effect-one .popup-area::before,
.image-effect-two .popup-area::before,
.image-effect-three .popup-area::before,
.image-effect-four .popup-area::before,
.image-effect-five .popup-area::before,
.image-effect-six .popup-area::before {
  position: absolute;
  z-index: -1;
  transform: rotate(90deg);
  content: "";
  border-style: solid;
  left: 150px;
  top: -14px;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff;
}

.image-effect-one:hover .popup-area,
.image-effect-two:hover .popup-area,
.image-effect-three:hover .popup-area,
.image-effect-four:hover .popup-area,
.image-effect-five:hover .popup-area,
.image-effect-six:hover .popup-area {
  background: #fff;
  opacity: 1;
  transform: scale(1);
  top: 56px;
}

.image-effect-one:hover .popup-area {
  display: none;
}

@media screen and (max-width: 1199px) {
  .image-effect-one {
    position: absolute;
    display: none;
    top: 0px;
    left: 40%;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-one .avtive-popup {
    background: #fff;
    opacity: 0;
    transform: scale(0);
    display: none;
  }

  .image-effect-two {
    position: absolute;
    top: 10%;
    left: 19%;
  }

  .image-effect-four {
    position: absolute;
    right: 25%;
    top: 8%;
  }
}

@media screen and (max-width: 767px) {
  .map-image {
    position: relative;
    text-align: center;
    max-width: 1170px;
    min-height: 1400px;
    margin: 270px auto -613px;
  }

  .image-effect-two {
    position: absolute;
    top: -234px;
    left: 50%;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-three {
    position: absolute;
    left: 50%;
    bottom: 794px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-four {
    position: absolute;
    right: 40%;
    top: 30px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-five {
    position: absolute;
    left: 50%;
    top: 21%;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-six {
    position: absolute;
    display: none;
    left: 50%;
    top: 96px;
    margin-top: 120px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-one .pop,
  .image-effect-two .pop,
  .image-effect-three .pop,
  .image-effect-four .pop,
  .image-effect-five .pop,
  .image-effect-six .pop {
    background: #fff;
    opacity: 1;
    transform: scale(1);
    top: 56px;
  }
}

@media screen and (max-width: 460px) {
  .map-image {
    position: relative;
    text-align: center;
    max-width: 1170px;
    min-height: 1400px;
    margin: 270px auto -613px;
  }

  .image-effect-two {
    position: absolute;
    top: -234px;
    left: 45%;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-three {
    position: absolute;
    left: 45%;
    bottom: 794px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-four {
    position: absolute;
    right: 39%;
    top: 30px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-five {
    position: absolute;
    left: 45%;
    top: 21%;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-six {
    position: absolute;
    display: none;
    left: 45%;
    top: 96px;
    margin-top: 120px;
    animation: zmin 2s infinite;
    animation-delay: 2s;
  }

  .image-effect-one .pop,
  .image-effect-two .pop,
  .image-effect-three .pop,
  .image-effect-four .pop,
  .image-effect-five .pop,
  .image-effect-six .pop {
    background: #fff;
    opacity: 1;
    transform: scale(1);
    top: 56px;
    width: 289px;
    padding: 20px 25px;
  }

  .image-effect-one .pop .designation,
  .image-effect-two .pop .designation,
  .image-effect-three .pop .designation,
  .image-effect-four .pop .designation,
  .image-effect-five .pop .designation,
  .image-effect-six .pop .designation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
  }
}

/*/------------------------Customar Section-------------------------/*/
/*/------------------------Service Section-------------------------/*/
.RpWalhFYoN {
  background: #fffceb;
}

.CWSHr0qJWS {
  padding: 30px 50px;
  position: relative;
  transition: 0.3s;
}

.CWSHr0qJWS .service-thumb {
  margin-bottom: 20px;
}

.CWSHr0qJWS .service-content {
  max-width: 340px;
}

.CWSHr0qJWS .service-content .title {
  color: #fff;
  margin-bottom: 10px;
}

.CWSHr0qJWS .service-content p {
  color: #fff;
}

.CWSHr0qJWS .s-shape {
  position: absolute;
  top: 20%;
  left: 50%;
  opacity: 9;
  animation: updownleftright 4s linear infinite;
}

.CWSHr0qJWS .s-shape i {
  color: #ccc;
}

.CWSHr0qJWS .s-shape img {
  width: 100%;
  height: 100%;
}

@keyframes updownleftright {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 420px) {
  .CWSHr0qJWS {
    padding: 30px 15px;
  }

  .CWSHr0qJWS .service-content .title {
    color: #fff;
    font-size: 22px;
  }
}

/*/------------------------Service Section-------------------------/*/
/*/------------------------Service-five Section-------------------------/*/
.service-style-four.service-style-five .sercive-four-content-about .SPJA4lBdDZ {
  border-radius: 100px;
}

.service-style-four.service-style-five .service-four-thumb {
  max-width: 690px;
}

.service-style-four.service-style-five .service-four-thumb img {
  width: 100%;
  height: 100%;
}

.service-style-four.service-style-five-one .service-four-thumb {
  max-width: 584px;
}

.service-style-four.service-style-five-one .service-four-thumb img {
  width: 100%;
  height: 100%;
}

.service-style-four.service-style-five-one
  .service-four-wrapper-four
  .four-service-items
  .Yf16BTNGEm {
  width: 50px !important;
  height: 50px !important;
}

/*/------------------------Service-five Section-------------------------/*/
/*/------------------------Service-five-two Section-------------------------/*/
.service-style-four.service-style-five-two
  .service-four-content
  .service-four-wrapper
  .four-service-items {
  padding: 30px 40px;
  height: 250px;
}

.service-style-four.service-style-five-two
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .Yf16BTNGEm {
  width: 100px;
  height: 95px;
  line-height: 91px;
}

.service-style-four.service-style-five-two
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .content {
  width: calc(100% - 100px);
}

@media screen and (max-width: 500px) {
  .service-style-four.service-style-five-two
    .service-four-content
    .service-four-wrapper
    .four-service-items {
    padding: 30px 40px;
    height: 350px;
    flex-wrap: wrap;
  }

  .service-style-four.service-style-five-two
    .service-four-content
    .service-four-wrapper
    .four-service-items
    .Yf16BTNGEm {
    width: 100px;
    height: 95px;
    line-height: 91px;
  }

  .service-style-four.service-style-five-two
    .service-four-content
    .service-four-wrapper
    .four-service-items
    .content {
    width: 100% !important;
  }
}

@media screen and (max-width: 400px) {
  .service-style-four.service-style-five-two
    .service-four-content
    .service-four-wrapper
    .four-service-items
    .content
    .title {
    font-size: 19px;
  }
}

/*/------------------------Service-five-two Section-------------------------/*/
/*/------------------------Service-style-four Section-------------------------/*/
.service-style-four {
  background: #fffcfa;
  overflow: hidden;
}

.service-style-four .service-four-content {
  position: relative;
  z-index: 999;
}

.service-style-four .service-four-content .service-four-wrapper {
  margin-top: 60px;
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items {
  background: #fff;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 8px 0px rgba(136, 136, 136, 0.08);
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .Yf16BTNGEm {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  margin-right: 20px;
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .Yf16BTNGEm
  img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .content {
  width: calc(100% - 75px);
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .content
  .title {
  font-weight: 700;
  color: #0b185f;
  margin-bottom: 10px;
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items
  .content
  p {
  color: #555555;
  font-size: 17px;
  padding: 0;
  margin: 0;
}

.service-style-four
  .service-four-content
  .service-four-wrapper
  .four-service-items:not(:last-child) {
  margin-bottom: 35px;
}

.service-style-four
  .service-four-content
  .service-four-wrapper-four
  .four-service-items {
  background: none;
  box-shadow: none !important;
  margin-bottom: 0px !important;
  padding: 15px 0 !important;
}

.service-style-four
  .service-four-content
  .service-four-wrapper-four
  .four-service-items
  .Yf16BTNGEm {
  width: 45px;
  height: 45px;
  line-height: 48px;
}

.service-style-four
  .service-four-content
  .service-four-wrapper-four
  .four-service-items
  .Yf16BTNGEm
  i {
  color: #fff;
  font-size: 21px;
}

.service-style-four .bg-img-service {
  background: url(../images/feature/shape-bg.png) no-repeat center center;
  background-size: contain;
  max-width: 600px;
  padding: 100px;
}

.service-style-four .bg-img-service .service-four-thumb {
  position: relative;
  text-align: center;
  margin: 0 auto;
  max-width: 404px;
  z-index: 5;
}

.service-style-four .bg-img-service .service-four-thumb img {
  width: 100%;
  height: 100%;
}

.service-style-four .bg-img-service .service-four-thumb .service-circle {
  position: absolute;
  top: 129px;
  left: -207px;
  z-index: -1;
  width: 744px;
  animation: handed 18s linear infinite;
}

.service-style-four .bg-img-service .service-four-thumb .service-circle img {
  width: 100%;
  height: 100%;
}

.service-style-four .bg-img-service .service-four-thumb .service-circle-two {
  position: absolute;
  top: 0px;
  left: -207px;
  z-index: -1;
  width: 744px;
  animation: handed 18s linear infinite;
}

.service-style-four-four {
  background: #fff;
}

.sercive-four-content-about .N053BMCvrw .dP3Arp6wv4 p {
  font-size: 17px;
  line-height: 1.7;
}

.sercive-four-content-about .SPJA4lBdDZ {
  border-radius: 4px;
}

@keyframes handed {
  100% {
    transform: rotate(-360deg);
  }
}

@media screen and (max-width: 400px) {
  .service-style-four
    .service-four-content
    .service-four-wrapper
    .four-service-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .service-style-four
    .service-four-content
    .service-four-wrapper
    .four-service-items
    .Yf16BTNGEm {
    width: 75px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .service-style-four .service-four-content .service-four-wrapper .content {
    width: 100% !important;
  }
}

/*/------------------------Service-style-four Section-------------------------/*/
/*/------------------------Service-style-single Section-------------------------/*/
.service-single .services-s-all-service {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  margin-bottom: 45px;
}

.service-single .services-s-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b185f;
  border-bottom: 1px solid #f1f1f1;
  padding: 25px 30px;
}

.service-single .services-s-item a {
  font-size: 18px;
  font-weight: 500;
  color: #0b185f;
  transition: all 0.3s ease-in-out;
}

.service-single .services-s-item a:hover {
  color: #0b185f;
}

.service-single .services-s-item a i {
  padding-right: 5px;
}

.service-single .services-s-item li {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.service-single .services-s-item li:last-child {
  border-bottom: none;
}

.service-s-about {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  margin-bottom: 45px;
}

.service-s-about .services-s-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b185f;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.service-s-about p {
  padding: 25px 30px;
  color: #555555;
  font-size: 17px;
}

.service-s-about .services-thumb {
  max-width: 350px;
  text-align: center;
  margin: 30px;
  background: #f8faff;
}

.service-s-about .services-thumb img {
  width: 100%;
  height: 100%;
}

.service-s-about .services-download-area {
  padding: 25px 30px;
}

.service-s-about .services-download-area h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 30px;
}

.service-s-about .services-download-area .download-pdf {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  padding: 12px 15px;
}

.service-s-about .services-download-area .download-pdf a {
  font-size: 16px;
  padding: 10px 15px;
  font-weight: 600;
  display: block;
  color: #ffcf34 !important;
  display: flex;
  text-transform: uppercase;
  justify-content: space-between;
}

.service-s-about .services-download-area .download-pdf i {
  margin-left: 20px;
}

.service-s-about .services-download-area .download-pdf h4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffcf34 !important;
  margin-right: 30px;
}

.service-s-about .services-download-area .download-zip {
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  padding: 12px 15px;
  margin-top: 15px;
}

.service-s-about .services-download-area .download-zip a {
  display: flex;
  padding: 10px 15px;
  color: #0b185f;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
  justify-content: space-between;
}

.service-s-about .services-download-area .download-zip h4 {
  font-size: 14px;
  font-weight: 600;
  color: #0b185f;
  margin-right: 30px;
}

.service-s-about .services-download-area .download-zip i {
  margin-left: 20px;
}

.s-contact-info {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  margin-bottom: 45px;
}

.s-contact-info h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b185f;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.s-contact-info .s-c-info {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 30px;
}

.s-contact-info .s-c-info:last-child {
  border: none;
}

.s-contact-info .s-c-info i {
  font-size: 20px;
  color: #0b185f;
  padding-right: 15px;
}

.s-contact-info .s-c-info .c-info-details {
  padding-left: 8px;
}

.s-contact-info .s-c-info .c-info-details h4 {
  color: #0b185f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.s-contact-info .s-c-info .c-info-details h5 {
  font-size: 16px;
  color: #555555;
}

.services-single-right .service-overview .overview-thumb {
  max-width: 860px;
}

.services-single-right .service-overview .overview-thumb img {
  width: 100%;
  height: 100%;
}

.services-single-right .service-overview .service-overview-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b185f;
  margin-bottom: 15px;
}

.services-single-right .service-overview .service-overview-content p {
  color: #555555;
  font-size: 17px;
}

.services-single-right .services-single-work {
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.services-single-right .services-single-work .service-overview-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b185f;
  margin-bottom: 15px;
}

.services-single-right .services-single-work .service-overview-content p {
  color: #555555;
  font-size: 17px;
}

.services-single-right .services-single-work .services-single-work-thumb {
  margin-left: 20px;
}

.services-single-right .services-single-work .left-thumb {
  margin-right: 20px;
}

.services-single-right .service-overview-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b185f;
  margin-bottom: 15px;
}

.services-single-right .service-overview-content p {
  color: #555555;
  font-size: 17px;
}

.services-single-right .space {
  margin-top: 30px;
  margin-bottom: 30px;
}

.services-single-right .service-s-range-area {
  display: flex;
  align-items: center;
}

.services-single-right .service-s-range-area .service-s-range-item {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-thumb {
  width: 100%;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-thumb
  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-content {
  padding: 20px 25px;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-content
  h3 {
  color: #0b185f;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-content
  p {
  font-size: 17px;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-content
  .range-btn {
  font-size: 17px;
  font-weight: 700;
  color: #0b185f;
  display: flex;
  align-items: center;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item
  .range-content
  .range-btn
  i {
  padding-left: 8px;
}

.services-single-right
  .service-s-range-area
  .service-s-range-item:not(:last-child) {
  margin-right: 30px;
}

.services-single-right .space2 {
  margin-top: 40px;
  margin-bottom: 30px;
}

.services-single-right .leadership-wrapper {
  margin-top: 25px;
}

.services-single-right .leadership-wrapper .leadership-team-area {
  padding: 20px 20px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.services-single-right
  .leadership-wrapper
  .leadership-team-area
  .leadership-thumb {
  margin-right: 15px;
}

.services-single-right
  .leadership-wrapper
  .leadership-team-area
  .leadership-content
  h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 5px;
}

.services-single-right
  .leadership-wrapper
  .leadership-team-area
  .leadership-content
  h5 {
  font-size: 16px;
  color: #555555;
}

.overview-thumb img {
  width: 100%;
  height: 100%;
}

.b-post-form {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.b-post-form .b-post-form-title h3 {
  font-size: 30px;
  font-weight: 600;
  color: #0b185f;
  border-bottom: 1px solid #f1f1f1;
  padding: 25px 30px;
}

.b-post-form .b-post-form-area {
  padding: 20px 10px;
}

.b-post-form .b-post-form-area .q-from form .form-select {
  border: none;
  outline: none;
}

.b-post-form .b-post-form-area .q-from form .form-select option {
  font-size: 14px;
  color: #555555;
}

.b-post-form .b-post-form-area .q-from form input {
  width: 100%;
  border: none;
  outline: none;
  color: #555555;
  font-weight: 500;
  margin-bottom: 15px;
}

.b-post-form .b-post-form-area .q-from form textarea {
  border: none;
  outline: none;
  color: #555555;
}

.b-post-form .b-post-form-area .q-from form button {
  border: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 8px;
}

@media screen and (max-width: 991px) {
  .services-single-right {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .services-single-right .services-single-work {
    flex-wrap: wrap;
  }

  .services-single-right .services-single-work .service-overview-content {
    margin-bottom: 20px;
  }

  .services-single-right .services-single-work .left-thumb {
    margin-bottom: 20px;
  }

  .service-s-range-area {
    flex-wrap: wrap;
  }

  .service-s-range-area .service-s-range-item {
    margin-bottom: 20px;
  }

  .service-s-range-area .service-s-range-item:not(:last-child) {
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 470px) {
  .services-single-right .services-single-work {
    flex-wrap: wrap;
  }

  .services-single-right .services-single-work .service-overview-content {
    margin-bottom: 20px;
  }

  .services-single-right .services-single-work .services-single-work-thumb {
    max-width: 500px;
  }

  .services-single-right .services-single-work .services-single-work-thumb img {
    width: 100%;
    height: 100%;
  }

  .services-single-right .services-single-work .left-thumb {
    margin-bottom: 20px;
    max-width: 500px;
  }

  .services-single-right .services-single-work .left-thumb img {
    width: 100%;
    height: 100%;
  }

  .services-single-right .service-overview .service-overview-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b185f;
    margin-bottom: 15px;
  }

  .services-single-right .service-overview .service-overview-content p {
    color: #555555;
    font-size: 15px;
  }

  .services-single-right .services-single-work .service-overview-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b185f;
    margin-bottom: 15px;
  }

  .services-single-right .services-single-work .service-overview-content p {
    color: #555555;
    font-size: 15px;
  }

  .services-single-right .service-overview-content h3 {
    font-size: 26px;
  }

  .services-single-right .service-overview-content p {
    color: #555555;
    font-size: 15px;
  }

  .services-single-right
    .service-s-range-area
    .service-s-range-item
    .range-content
    h3 {
    color: #0b185f;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .services-single-right
    .service-s-range-area
    .service-s-range-item
    .range-content
    p {
    font-size: 15px;
  }

  .services-single-right
    .service-s-range-area
    .service-s-range-item
    .range-content
    .range-btn {
    font-size: 15px;
  }

  .s-contact-info h3 {
    font-size: 24px;
  }

  .s-contact-info .s-c-info i {
    font-size: 20px;
  }

  .s-contact-info .s-c-info .c-info-details {
    padding-left: 8px;
  }

  .s-contact-info .s-c-info .c-info-details h4 {
    color: #0b185f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }

  .s-contact-info .s-c-info .c-info-details h5 {
    font-size: 16px;
    color: #555555;
  }

  .b-post-form {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  }

  .b-post-form .b-post-form-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0b185f;
    border-bottom: 1px solid #f1f1f1;
    padding: 25px 30px;
  }

  .b-post-form .b-post-form-area {
    padding: 20px 10px;
  }

  .b-post-form .b-post-form-area .q-from form .form-select {
    border: none;
    outline: none;
  }

  .b-post-form .b-post-form-area .q-from form .form-select option {
    font-size: 14px;
    color: #555555;
  }

  .b-post-form .b-post-form-area .q-from form input {
    width: 100%;
    border: none;
    outline: none;
    color: #555555;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .b-post-form .b-post-form-area .q-from form textarea {
    border: none;
    outline: none;
    color: #555555;
  }

  .b-post-form .b-post-form-area .q-from form button {
    border: none;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 8px;
  }

  .service-s-about .services-download-area .download-pdf i {
    margin-left: 0px;
  }

  .service-s-about .services-download-area .download-pdf h4 {
    margin-right: 0px;
  }

  .service-s-about .services-download-area .download-pdf {
    border-radius: 30px;
    padding: 7px 9px;
  }

  .service-s-about .services-download-area .download-zip a {
    padding: 5px 7px;
    color: #0b185f;
  }

  .service-s-about .services-download-area .download-zip i {
    margin-left: 0px;
  }
}

/*/------------------------Service-style-single Section-------------------------/*/
/*/------------------------Screenshot Section-------------------------/*/
.screenshoot-section {
  background: #fffcfa;
}

/*/------------------------Screenshot Section-------------------------/*/
/*/------------------------Video Section-------------------------/*/
.video-section {
  overflow: hidden;
  position: relative;
}

.video-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.video-wrapper {
  border-radius: 20px;
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(255, 252, 250) 0%,
    rgba(255, 252, 250, 0.01) 1%,
    rgb(255, 252, 250) 100%
  );
  box-shadow: 0px 20px 20px 0px rgba(136, 136, 136, 0.2);
  padding: 20px 0 0;
  position: relative;
}

.video-wrapper .video-main {
  max-width: 985px;
  margin: 0 auto;
}

.video-wrapper .video-main img {
  width: 100%;
  height: 100%;
}

.video-wrapper .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f08e25;
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 68px;
  display: block;
}

.video-wrapper .video i {
  color: #fff;
  font-size: 26px;
  position: relative;
}

.video-wrapper .video::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f08e25;
  animation: scals 2s linear infinite;
  animation-delay: 2s;
  opacity: 0.1;
}

@keyframes scals {
  0% {
    width: 0;
    opacity: 0.5;
  }

  50% {
    width: 60px;
    opacity: 0.9;
  }
}

/*/------------------------Video Section-------------------------/*/
.video-style-two {
  transform: translateY(-120px);
  margin-bottom: -120px;
}

/*/------------------------Video Section-------------------------/*/
/*/------------------------Gallery Section-------------------------/*/
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-shape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.gallery-items {
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
}

.gallery-items .gallery-thumb {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.gallery-items .gallery-thumb img {
  width: 100%;
  height: 100%;
}

.gallery-items .gallery-thumb .search-area {
  opacity: 0;
  transition: all 0.9s;
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.9);
  width: 95%;
  height: 95%;
  border-radius: 12px;
}

.gallery-items .gallery-thumb .search-area .main-search {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.gallery-items .gallery-thumb .search-area .main-search .title {
  width: 55px;
  height: 55px;
  display: block;
  border-radius: 50%;
  line-height: 55px;
  text-align: center;
  margin-right: 9px;
}

.gallery-items .gallery-thumb .search-area .main-search .title i {
  color: #fff;
}

.gallery-items .gallery-content {
  text-align: center;
  margin: 0 auto;
  padding: 25px 5px;
}

.gallery-items .gallery-content .title a {
  color: #0b185f;
  margin-bottom: 10px;
  display: block;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.3s;
}

.gallery-items .gallery-content .subtitle {
  color: #0b185f;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.gallery-items:hover .gallery-content .title a {
  text-decoration: underline;
}

.gallery-items:hover .gallery-thumb .search-area {
  opacity: 1;
}

@media screen and (max-width: 420px) {
  .gallery-items .gallery-content .title a {
    font-size: 22px;
  }
}

/*/------------------------Gallery Section-------------------------/*/
/*/------------------------Gallery-style-two Section-------------------------/*/
.gallery-section.gallery-style-two
  .gallery-items
  .gallery-thumb
  .search-area
  .search-show {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-section.gallery-style-two
  .gallery-items
  .gallery-thumb
  .search-area
  .search-show
  .main-show
  .main-search {
  position: relative;
  margin-top: 40px;
  justify-content: center;
}

.gallery-section.gallery-style-two
  .gallery-items
  .gallery-thumb
  .search-area
  .gallery-content {
  padding: 0 0;
}

.gallery-section.gallery-style-two
  .gallery-items
  .gallery-thumb
  .search-area
  .gallery-content
  .subtitle {
  font-size: 16px !important;
  color: #0b185f;
}

.gallery-section.gallery-style-two
  .gallery-items
  .gallery-thumb
  .search-area
  .gallery-content
  .title
  a {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #0b185f;
  text-decoration: none;
}

/*/------------------------Gallery-style-two Section-------------------------/*/
/*/------------------------Protfolio Section-------------------------/*/
.protfolio-single .service-single-left-thumb {
  width: 100%;
  height: 520px;
}

.protfolio-single .service-single-left-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protfolio-single .service-single-right-thumb .item {
  max-width: 390px;
  height: 248px;
}

.protfolio-single .service-single-right-thumb .item img {
  width: 100%;
  height: 100%;
}

.protfolio-single .service-single-right-thumb .item:not(:last-child) {
  margin-bottom: 25px;
}

.service-content-letf-single {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
}

.service-content-letf-single .project-header {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  padding: 20px 30px;
  align-items: center;
}

.service-content-letf-single .project-header h3 {
  color: #0b185f;
  margin-left: 8px;
  font-weight: 700;
}

.service-content-letf-single .project-address li {
  padding: 15px 30px;
  display: flex;
  align-items: center;
}

.service-content-letf-single .project-address li i {
  font-size: 29px;
  margin-right: 9px;
  width: 35px;
  color: #555555;
}

.service-content-letf-single .project-address li .cont h4 {
  font-weight: 600;
  color: #0b185f;
}

.service-content-letf-single .project-address li .cont span {
  color: #555555;
}

.service-content-letf-single .project-address li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.service-content-letf-single .file {
  padding: 40px 40px;
}

.service-content-letf-single .download-pdf a {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  padding: 20px 40px;
  display: flex;
  border-radius: 100px;
  justify-content: space-between;
  align-items: center;
}

.service-content-letf-single .download-pdf a i {
  color: #62e0c1;
}

.service-content-letf-single .download-pdf a h4 {
  color: #0b185f;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.service-content-letf-single .download-pdf:not(:last-child) {
  margin-bottom: 20px;
}

.service-content-letf-single.right-customize .project-header {
  margin-bottom: 30px;
}

.service-content-letf-single.right-customize p {
  padding: 0 40px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
}

.service-content-letf-single.right-customize .single-btn {
  padding: 40px 40px;
}

@media screen and (max-width: 991px) {
  .service-content-letf-single {
    margin-bottom: 30px;
  }

  .protfolio-single .service-single-left-thumb {
    width: 100%;
    height: 520px;
    margin-bottom: 30px;
  }

  .protfolio-single .service-single-left-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .protfolio-single .service-single-right-thumb {
    display: flex;
    align-items: center;
  }

  .protfolio-single .service-single-right-thumb .item {
    max-width: 390px;
    height: 248px;
  }

  .protfolio-single .service-single-right-thumb .item img {
    width: 100%;
    height: 100%;
  }

  .protfolio-single .service-single-right-thumb .item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 20px;
  }
}

@media screen and (max-width: 575px) {
  .protfolio-single .service-single-right-thumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .protfolio-single .service-single-right-thumb .item {
    max-width: 390px;
    height: 248px;
  }

  .protfolio-single .service-single-right-thumb .item img {
    width: 100%;
    height: 100%;
  }

  .protfolio-single .service-single-right-thumb .item:not(:last-child) {
    margin-bottom: 25px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 370px) {
  .service-content-letf-single {
    box-shadow: 0px 0px 10px 0px #f0f0f0;
    border-radius: 5px;
  }

  .service-content-letf-single .project-header {
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    padding: 20px 8px;
    align-items: center;
  }

  .service-content-letf-single .project-header h3 {
    color: #0b185f;
    margin-left: 8px;
    font-weight: 700;
    font-size: 20px;
  }

  .service-content-letf-single .project-address li {
    padding: 15px 30px;
    display: flex;
    align-items: center;
  }

  .service-content-letf-single .project-address li i {
    font-size: 29px;
    margin-right: 9px;
    width: 35px;
    color: #555555;
  }

  .service-content-letf-single .project-address li .cont h4 {
    font-weight: 600;
    color: #0b185f;
  }

  .service-content-letf-single .project-address li .cont span {
    color: #555555;
  }

  .service-content-letf-single .project-address li:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
  }

  .service-content-letf-single .file {
    padding: 40px 40px;
  }

  .service-content-letf-single .download-pdf a {
    box-shadow: 0px 0px 10px 0px #f0f0f0;
    padding: 15px 9px;
    display: flex;
    border-radius: 100px;
    justify-content: space-between;
    align-items: center;
  }

  .service-content-letf-single .download-pdf a i {
    color: #62e0c1;
  }

  .service-content-letf-single .download-pdf a h4 {
    color: #0b185f;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
  }

  .service-content-letf-single .download-pdf:not(:last-child) {
    margin-bottom: 20px;
  }

  .service-content-letf-single.right-customize .project-header {
    margin-bottom: 30px;
  }

  .service-content-letf-single.right-customize p {
    padding: 0 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #555555;
  }

  .service-content-letf-single.right-customize .single-btn {
    padding: 40px 10px;
  }
}

/*/------------------------Protfolio Section-------------------------/*/
/*/------------------------Choose Section-------------------------/*/
.choose-section {
  background: #f2ffff;
  overflow: hidden;
}

.choose-item {
  display: flex;
  margin-top: 45px;
}

.choose-item .choose-left {
  margin-right: 25px;
}

.choose-item .choose-left .choose-left-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 23px 10px;
  text-align: center;
}

.choose-item .choose-right-content {
  max-width: 400px;
}

.choose-item .choose-right-content .title {
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 10px;
}

.choose-item .choose-right-content p {
  color: #555555;
  font-size: 16px;
  font-weight: 500;
}

.uNepJmiOrj {
  max-width: 570px;
}

.uNepJmiOrj img {
  width: 100%;
  height: 100%;
}

/*/------------------------Choose Section-------------------------/*/
/*/------------------------Team Section-------------------------/*/
.team-section {
  overflow: hidden;
}

.team-items {
  box-shadow: -1px 0px 14px 1px #ccc;
}

.team-items .social-thumb-area .Yf16BTNGEm {
  width: 100%;
  position: relative;
}

.team-items .social-thumb-area .Yf16BTNGEm img {
  width: 100%;
}

.team-items .social-thumb-area .Yf16BTNGEm .social-btn {
  position: absolute;
  top: 25px;
  right: -24px;
}

.team-items .social-thumb-area .Yf16BTNGEm .social-btn .flow-btn {
  display: block;
  padding: 17px 16px;
  transform: rotate(90deg);
  width: 106px;
  letter-spacing: 1px;
  border-radius: 0 !important;
  position: relative;
}

.team-items .social-thumb-area .Yf16BTNGEm .social {
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-items .social-thumb-area .social ul li {
  background: #fff;
  border-bottom: 1px solid #555555;
  text-align: center;
  width: 58px;
  height: 50px;
  line-height: 50px;
}

.team-items .social-thumb-area .social ul li a i {
  color: #000;
}

.team-items .team-content {
  padding: 20px;
}

.team-items .team-content .title {
  color: #0b185f;
}

.team-items .team-content .title a {
  color: #0b185f;
}

.team-items .team-content .subtitle {
  color: #555555;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.team-items .team-content ul li {
  border-bottom: 1px solid #555555;
  padding: 14px 0;
}

.team-items .team-content ul li a {
  color: #555555;
}

.team-items .team-content ul li a i {
  color: #555555;
  padding: 0 15px;
  font-size: 20px;
}

.team-items .team-content ul li:first-child {
  border-top: 1px solid #555555;
}

/*/------------------------Team Section-------------------------/*/
/*/------------------------Team-single Section-------------------------/*/
.team-s-wrapper {
  padding: 30px;
}

.team-s-wrapper .team-left-item .team-item-thumb {
  max-width: 606px;
}

.team-s-wrapper .team-left-item .team-item-thumb img {
  width: 100%;
  height: 100%;
}

.team-s-wrapper .team-more {
  margin-top: 20px;
}

.team-s-wrapper .team-more h3 {
  color: #0b185f;
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0px;
}

.team-s-wrapper .team-right-item .team-more-details {
  margin-top: 30px;
}

.team-s-wrapper .team-right-item .team-more-details h3 {
  font-size: 24px;
  font-weight: 700 !important;
  color: #0b185f;
  margin-bottom: 15px;
  display: block;
}

.team-s-wrapper .team-right-item .team-more-details h4 {
  font-size: 16px;
}

.team-s-wrapper .team-right-item .team-more-details .team-address-area li {
  font-size: 16px;
  color: #555555;
  padding-bottom: 15px;
}

.team-s-wrapper .team-right-item .team-more-details .team-address-location li {
  display: flex;
  align-items: center;
  border: 1px solid #f3f3f3;
  border-right: none;
  padding: 15px 10px;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  i {
  padding-right: 30px;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li:not(:last-child) {
  border-bottom: none;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon {
  display: flex;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  .fa-twitter {
  color: #23b6ea;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  .fa-instagram {
  color: #db4437;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  .fa-vimeo-v {
  color: #3b5998;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  .fa-behance {
  color: #0084ff;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  .fa-linkedin-in {
  color: #0084ff;
}

.team-s-wrapper
  .team-right-item
  .team-more-details
  .team-address-location
  li
  .icon
  a
  i {
  margin-right: -10px;
}

.team-s-wrapper .team-right-item .team-right-details h3 {
  font-size: 24px;
  font-weight: 700 !important;
  color: #0b185f;
  margin-bottom: 8px;
  display: block;
}

.team-s-wrapper .team-right-item .team-right-details h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.team-s-wrapper .team-right-item .team-right-details p {
  font-size: 16px;
}

.team-s-wrapper .progress-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
}

.team-s-wrapper .progress-area .item {
  margin-right: 30px;
  margin-bottom: 20px;
}

.team-s-wrapper .progress-area h4 {
  font-size: 16px;
  color: #555;
}

.team-s-wrapper .progress-area h3 {
  font-size: 25px;
  color: #0b185f;
  margin-bottom: 30px;
  font-weight: 700;
}

.team-s-wrapper .progress-area div[role="progressbar"] {
  --size: 7rem;
  --fg: #2dca73;
  --bg: #f7fafc;
  --pgPercentage: var(--value);
  animation: growProgressBar 2s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      white 94%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

.team-s-wrapper .progress-area div[role="progressbar two"] {
  --size: 7rem;
  --fg: #ff7d51;
  --bg: #f7fafc;
  --pgPercentage: var(--value);
  animation: growProgressBar 2s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      white 94%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

.team-s-wrapper .progress-area div[role="progressbar three"] {
  --size: 7rem;
  --fg: #ffc212;
  --bg: #f7fafc;
  --pgPercentage: var(--value);
  animation: growProgressBar 2s 1 forwards;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      closest-side,
      white 94%,
      transparent 0 99.9%,
      white 0
    ),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-family: Helvetica, Arial, sans-serif;
  font-size: calc(var(--size) / 5);
  color: var(--fg);
}

.team-s-wrapper .progress-area div[role="progressbar two"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}

.team-s-wrapper .progress-area div[role="progressbar three"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}

.team-s-wrapper .progress-area div[role="progressbar"]::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) "%";
}

.team-s-wrapper .team-award {
  margin-top: 50px;
}

.team-s-wrapper .team-award h3 {
  font-size: 24px;
  color: #0b185f;
  margin-bottom: 30px;
  font-weight: 700;
}

.team-s-wrapper .team-award .award-thumb-area {
  display: flex;
  flex-wrap: wrap;
}

.team-s-wrapper .team-award .award-thumb-area .award-thumb {
  margin-right: 40px;
}

.team-s-wrapper .team-award .award-thumb-area .award-thumb h4 {
  font-size: 17px;
  color: #555555;
  font-weight: 500;
  margin-top: 20px;
}

@keyframes growProgressBar {
  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@media screen and (max-width: 991px) {
  .team-s-wrapper .team-left-item .team-item-thumb {
    max-width: 606px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  .team-s-wrapper .team-award .award-thumb-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
  }

  .progress-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
  }
}

/*/------------------------Team-single Section-------------------------/*/
/*/------------------------Clients Section-------------------------/*/
.testtimonial-wrapper {
  position: relative;
  z-index: 999;
}

.testtimonial-wrapper .owl-nav {
  left: 50%;
  bottom: -50px;
  position: absolute;
}

.testtimonial-wrapper .owl-nav button.owl-next {
  color: #fff;
  font-size: 55px;
}

.testtimonial-wrapper .owl-nav button.owl-prev {
  color: #fff;
  font-size: 55px;
}

.client-section {
  background: url(../images/client/client-bg-1.png) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.item-wrapper {
  background: #fff;
  margin-left: 10px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.item-wrapper p {
  padding: 20px 25px;
}

.item-wrapper .star-area {
  padding: 0 30px 30px;
}

.item-wrapper .star-area .c-icon i {
  color: #ffcf34;
}

.item-wrapper .star-area .quate i {
  font-size: 36px;
  color: #26c976;
}

.item-area {
  display: flex;
  flex-wrap: wrap;
}

.item-area img {
  width: 100%;
  height: 100%;
  margin: 20px;
}

.item-area .client-thumb {
  width: 60px;
  height: 60px;
}

.client-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #8c8c8c;
}

.client-wrapper .client-title {
  padding: 30px;
}

.client-wrapper .client-title h4 {
  color: #0b185f;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.client-wrapper .client-title h5 {
  font-size: 15px;
  color: #8c8c8c;
}

.client-wrapper .client-logo {
  width: 60px;
  height: 60px;
  margin-right: 30px;
}

/*/------------------------Clients Section-------------------------/*/
/*/------------------------Pricing Section-------------------------/*/
.pricing-item {
  padding: 30px 40px;
  position: relative;
  transition: all 0.4s;
}

.pricing-item .pricing-image {
  text-align: center;
  margin: 0 auto;
  max-width: 280px;
}

.pricing-item .pricing-image img {
  width: 100%;
  height: 100%;
}

.pricing-item .basic-content {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 30px;
}

.pricing-item .pricing-menu {
  position: relative;
  z-index: 1;
}

.pricing-item .pricing-menu .pricing-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.pricing-item .pricing-menu .pricing-list li i {
  color: #fff;
  background: #86cf3b;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  text-align: center;
  line-height: 29px;
  margin-right: 8px;
}

.pricing-item .pricing-menu .pricing-list .cros i {
  background: #ff6565;
}

.pricing-item .pricing-button {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-bottom: 20px;
}

.pricing-item .price {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.pricing-item .price .title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #86cf3b;
}

.pricing-item .price span {
  font-size: 17px;
  font-weight: 500;
  color: #86cf3b;
}

.pricing-item .pricing-shape {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 446px;
  border-radius: 0 0 7px 7px;
  overflow: hidden;
}

.pricing-item .pricing-shape img {
  width: 100%;
  height: 100%;
}

.pricing-item:hover {
  transform: translateY(-15px);
}

.pricing-section.pricing-style-two .pricing-image {
  text-align: center;
}

.basic-content h5 {
  font-size: 30px;
  color: #fff;
}

/*/------------------------Pricing Section-------------------------/*/
/*/------------------------Pricing-style-two Section-------------------------/*/
.pricing-section.pricing-style-two .pricing-items-two {
  padding: 0 0;
}

.pricing-section.pricing-style-two .pricing-items-two .basic-content {
  padding: 40px 25px 0 25px;
  text-align: left !important;
}

.pricing-section.pricing-style-two .pricing-items-two .basic-content h5 {
  color: #0b185f;
  font-weight: 700;
  font-size: 30px;
}

.pricing-section.pricing-style-two .pricing-items-two .pricing-s-t-f {
  display: flex;
  padding: 40px 25px 12px 25px;
  justify-content: space-between;
}

.pricing-section.pricing-style-two
  .pricing-items-two
  .pricing-s-t-f
  .price
  .title {
  color: #fff;
}

.pricing-section.pricing-style-two
  .pricing-items-two
  .pricing-s-t-f
  .price
  span {
  color: #fff;
}

.pricing-section.pricing-style-two .pricing-items-two .pricing-menu {
  padding: 50px 25px 0 25px;
}

.pricing-section.pricing-style-two .pricing-items-two .pricing-button {
  padding: 10px 25px 50px 25px;
}

.pricing-section.pricing-style-two
  .pricing-items-two
  .pricing-button
  .SPJA4lBdDZ {
  border-radius: 4px;
  text-transform: uppercase;
}

/*/------------------------Pricing-style-two Section-------------------------/*/
/*/------------------------Pricing-style-four Section-------------------------/*/
.pricing-section.pricing-style-four .pricing-item .pricing-image {
  width: 104px;
  margin: 0 0 0 auto;
}

.pricing-section.pricing-style-four .pricing-item .pricing-image img {
  width: 100%;
  height: 100%;
}

.pricing-section.pricing-style-four .pricing-item .basic-content {
  text-align: left;
}

/*/------------------------Pricing-style-four Section-------------------------/*/
/*/------------------------Shop Section-------------------------/*/
.shop-showing-result {
  display: flex;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  margin-bottom: 35px;
}

.shop-showing-result .shop-showing-title h4 {
  font-size: 16px;
  color: #0b185f;
  font-weight: 500;
}

.shop-showing-result .shop-showing-icon i {
  font-size: 18px;
  color: #0b185f;
}

.shop-showing-result .shop-showing-icon .icon-1 {
  color: #f08e25;
  margin-right: 10px;
}

.shop-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  margin-bottom: 30px;
}

.shop-area .shop-thumb {
  padding: 10px;
}

.shop-area .shop-thumb img {
  width: 100%;
  height: 100%;
}

.shop-area .shop-content {
  padding: 20px 30px;
}

.shop-area .shop-content a {
  font-size: 18px;
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 10px;
}

.shop-area .shop-content h5 {
  font-size: 16px;
  color: #0b185f;
}

.shop-area .shop-content .shop-icon i {
  color: #f08e25;
  padding: 10px 0px;
  margin-bottom: 10px;
}

.shop-latest {
  margin-left: 15px;
}

.shop-latest h4 {
  font-size: 16px;
  color: #0b185f;
}

.shop-latest h4 a {
  color: #0b185f;
}

.shop-latest h5 {
  font-size: 16px;
  color: #0b185f;
}

.shop-latest i {
  color: #f08e25;
  font-size: 14px;
}

.reply-icon i {
  color: #f08e25;
}

.form-select {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid #f0f0f0;
  padding: 15px 31px;
}

.b-post-form-two .b-post-form-area .q-from form .form-group1 input {
  margin-bottom: 0;
  background: #f6fafd;
  padding: 12px 15px;
}

.b-post-form-two .b-post-form-area .q-from form .form-group textarea {
  background: #f6fafd;
  margin-top: 20px;
  padding: 20px 20px 110px;
}

.b-post-form-two .b-post-form-area .q-from form .my-ratting {
  color: #555555;
}

.b-post-form-two .b-post-form-area .q-from form .my-ratting .comnt-icon {
  padding-left: 4px;
}

.b-post-form-two .b-post-form-area .q-from form .my-ratting .comnt-icon i {
  color: #ffcf34;
  font-size: 13px;
}

.b-post-form-two .space-b-post-area {
  padding: 33px 20px 0px 20px !important;
}

/* Shop Pangination */
.shop-pagination {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.shop-pagination li a {
  font-size: 18px;
  color: #0b185f;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  font-weight: 500;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.15);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}

.shop-pagination li a:hover {
  background: #f08e25;
  color: #fff;
}

/* Shop Single Style */
.s-product-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  padding: 20px 25px 0px;
  display: flex;
  margin-bottom: 35px;
}

.s-product-area .s-product-img .s-thumb-wrap {
  max-width: 300px;
  overflow: hidden;
}

.s-product-area .s-product-img .s-thumb-wrap .s-product-thumb {
  max-width: 300px;
  overflow: hidden;
}

.s-product-area .s-product-img .s-thumb-wrap .s-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-product-area .btn {
  margin-bottom: 30px;
}

.s-product-area .small-img-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 10px;
}

.s-product-area .small-img-group img {
  margin-right: 10px;
}

.s-product-area .s-product-details {
  padding-right: 15px;
}

.s-product-area .s-product-details h5 {
  font-size: 18px;
  color: #0b185f;
  font-weight: 600;
  margin-top: 10px;
}

.s-product-area .s-product-details .s-product-title h3 {
  font-size: 24px;
  color: #0b185f;
  font-weight: 600;
  margin-bottom: 9px;
}

.s-product-area .s-product-details .s-product-review {
  display: flex;
}

.s-product-area .s-product-details .s-product-review h4 {
  font-size: 16px;
}

.s-product-area .s-product-details .s-product-review .review-icon i {
  font-size: 16px;
  color: #f08e25;
}

.s-product-area .s-product-details .s-product-description h3 {
  font-size: 18px;
  color: #0b185f;
  margin-top: 15px;
  margin-bottom: 6px;
}

.s-product-area .s-product-details .s-product-size-wrapper {
  display: flex;
  margin-top: 30px;
}

.s-product-area .s-product-details .s-product-size-wrapper .s-product-color {
  margin-left: 10px;
}

.s-product-area .s-product-details .s-discount-area {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.s-product-area .s-product-details .s-discount-area .s-discout-nbr {
  display: flex;
  align-items: center;
}

.s-product-area .s-product-details .s-discount-area .s-discout-nbr a {
  border: 1px solid #f0f0f0;
  color: #555555;
  padding: 11px 21px;
}

.s-product-area .s-product-details .s-discount-area .s-discount-code input {
  padding: 10px 0px;
  margin-left: 10px;
  border: 1px solid #f0f0f0;
  font-weight: 500;
  color: #555555;
  outline: none;
  padding-left: 10px;
}

.s-product-area .s-product-details .btn {
  background: #86cf3b;
  padding: 15px 15px;
  width: 100%;
  border-radius: 4px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.b-comnts-area .b-comnts-area-accordian {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  margin-bottom: 35px;
  padding: 20px 20px;
}

.b-comnts-area .b-comnts-area-accordian .accordian-items-wrap {
  display: flex;
  align-items: center;
}

.b-comnts-area .b-comnts-area-accordian .accordian-items-wrap .accordion-item {
  border: none;
  margin-right: 8px;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordian-items-wrap
  .accordion-item
  .accordion-header {
  border: none;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordian-items-wrap
  .accordion-item
  .accordion-button:not(.collapsed) {
  color: #0b185f;
  background-color: #f7fbff;
  box-shadow: none;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordian-items-wrap
  .accordion-item
  .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #0b185f;
  text-align: left;
  background-color: #f7fbff;
  font-weight: 600;
  text-transform: uppercase;
  border: 0;
  box-shadow: none;
  border: none;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordian-items-wrap
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  display: none;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordian-items-wrap
  .accordion-item
  .accordion-button::after {
  display: none;
}

.b-comnts-area .b-comnts-area-accordian .accordion-body {
  padding: 1rem 0.25rem;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .b-comnts-area-1
  .b-comnts-1 {
  padding: 16px 0 10px;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .b-comnts-area-1
  .b-comnts-1:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .b-comnts-area-1
  .b-comnts-1
  .b-comnts-details
  .name-area
  h4 {
  font-weight: 600;
  color: #0b185f;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .b-comnts-area-1
  .b-comnts-1
  .b-comnts-details
  .name-area
  p {
  font: 16px;
  color: #555555;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .b-comnts-area-1
  .b-comnts-1
  .b-comnts-details
  .name-area
  .comnt-icon
  i {
  color: #ffcf34;
}

.b-comnts-area
  .b-comnts-area-accordian
  .accordion-body
  .shop-b-post-form
  .b-post-form-title
  h3 {
  font-size: 24px !important;
}

.shop-cart-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
}

.shop-cart-area table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.shop-cart-area table thead td {
  background: #86cf3b;
  color: #fff;
  padding: 21px 0px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

table tbody td {
  border-bottom: 1px solid #f1f1f1;
}

table tbody .quantity .qtybutton {
  width: 50px;
  height: 50px;
  border: 1px solid #f0f0f0;
  line-height: 50px;
  transition: all 0.3s;
  font-size: 16px;
}

table tbody .quantity .qtybutton:hover {
  background: #86cf3b;
  color: #fff;
  cursor: pointer;
}

table tbody .quantity input {
  width: 50px;
  height: 50px;
  border: 1px solid #f0f0f0;
  text-align: center;
  transition: all 0.3s;
  font-size: 16px;
}

table tbody .quantity input:hover {
  background: #86cf3b;
  color: #fff;
  cursor: pointer;
}

table tbody img {
  margin-top: 35px;
  margin-bottom: 40px;
}

table tbody i {
  color: #ffcf34;
  font-size: 18px;
  font-weight: 500;
}

table tbody h4,
table tbody h5 {
  font-size: 18px;
  color: #0b185f;
  font-weight: 500;
}

.shop-coupon-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  padding: 25px 20px;
  margin: 50px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.shop-coupon-area .shop-coupon-code {
  border: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 0px 10px;
}

.shop-coupon-area .shop-coupon-code input {
  border: none;
  color: #0b185f !important;
  font-weight: 600;
  font-size: 16px;
  outline: none;
}

.shop-coupon-area .shop-coupon-code button {
  border: none;
  outline: none;
  background: #f7fbff;
  text-transform: uppercase;
  font-size: 16px;
  color: #0b185f;
  font-weight: 600;
  padding: 20px 30px;
}

.shop-coupon-area .shop-coupon-code h4 {
  font-size: 16px;
  color: #555;
  margin-right: 20px;
}

.shop-coupon-area .shop-coupon-code a {
  font-size: 14px;
  font-weight: 600;
  color: #0b185f;
  background: #f7fbff;
  padding: 20px;
}

.shop-coupon-area .shop-checkout a {
  font-size: 14px;
  font-weight: 600;
  color: #0b185f;
  background: #f7fbff;
  text-transform: uppercase;
  padding: 20px;
  margin-left: 10px;
}

.shop-shipping-area {
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.shop-shipping-area h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0b185f;
}

.shoping-main-wrap {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
}

.shipping-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.shipping-wrapper .calculate-shipping-wrapper {
  width: 49%;
}

.shipping-wrapper .calculate-shipping-wrapper .post-code-btn {
  margin-top: 40px;
}

.shipping-wrapper .calculate-shipping-wrapper .post-code-btn .SPJA4lBdDZ {
  border-radius: 4px;
}

.shipping-wrapper .shipping-card-wrapper {
  width: 49%;
}

.shipping-wrapper .shipping-item {
  display: flex;
  margin-top: 30px;
  margin-bottom: 20px;
}

.shipping-wrapper .shipping-item .shipping-country select {
  outline: none;
  border: none;
  border: 1px solid #f0f0f0;
  margin-right: 10px;
  padding: 10px 10px;
}

.shipping-wrapper .shipping-item .shipping-country h4 {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 15px 25px;
}

.shipping-wrapper .shipping-item .shipping-post-code select {
  outline: none;
  border: none;
  border: 1px solid #f0f0f0;
  margin-right: 10px;
  padding: 10px 10px;
}

.shipping-wrapper .shipping-item .shipping-post-code h4 {
  font-size: 16px;
  color: #555;
  border: 1px solid #f1f1f1;
  padding: 15px 25px;
  margin-left: 10px;
}

.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item {
  display: flex;
  justify-content: space-between;
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.shipping-wrapper .shipping-card-wrapper .shipping-card-item .s-card-item h4 {
  font-size: 16px;
  color: #0b185f;
  font-weight: 500;
  padding: 15px 25px;
}

.shop-search-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  padding: 0 0 25px 0;
}

.shop-search-area .head-title {
  color: #0b185f;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px;
}

.shop-search-area .search-wrapper {
  border: 1px solid #f0f0f0;
  padding: 10px 25px;
  margin: 30px 30px 10px;
}

.shop-search-area .search-wrapper .blog-search input {
  border: none;
  outline: none !important;
}

.shop-search-area .cus-accor {
  margin-top: 30px;
}

.shop-search-area .cus-accor .accordion-button:not(.collapsed) {
  color: #0b185f;
  font-size: 16px;
  font-weight: 600;
  background-color: none;
  box-shadow: none;
}

.shop-search-area .cus-accor .accordion-item {
  background: none;
  border: none;
}

.shop-search-area .cus-accor .accordion-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.shop-search-area .cus-accor .accordion-item .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 17px;
  font-weight: 600;
  color: #0b185f;
  /* font-size: 0rem; */
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}

.shop-search-area .s-wrap-search {
  padding: 20px 20px;
}

.shop-search-area .s-wrap-search .most-popular-area:not(:last-child) {
  margin-bottom: 20px;
}

.shop-search-areas-none {
  padding: 0;
}

@media screen and (max-width: 991px) {
  .s-product-area .s-product-img .s-thumb-wrap {
    max-width: 300px;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
  }

  .s-product-img {
    margin-bottom: 30px;
  }

  .shoppppp {
    margin-top: 40px;
  }

  .shop-coupon-area .shop-coupon-code {
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    padding: 0px 0px 0px 10px;
  }

  .shop-coupon-area {
    box-shadow: 0px 0px 10px 0px #f0f0f0;
    border-radius: 5px;
    padding: 25px 20px 43px;
    margin: 50px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .shipping-wrapper {
    display: flex;
    flex-wrap: wrap;
  }

  .shipping-wrapper .calculate-shipping-wrapper {
    width: 100%;
  }

  .shipping-wrapper .shipping-card-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 575px) {
  .s-product-area .s-product-details .s-discount-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
  }

  .s-product-area .s-product-details .s-discount-area .s-discount-code input {
    margin-left: 0px !important;
  }

  .s-product-area .s-product-details .s-discount-area .s-discout-nbr {
    margin-bottom: 10px;
  }

  .s-product-area .s-product-details .btn {
    width: 85%;
  }

  .form-select {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    border: 1px solid #f0f0f0;
    padding: 12px 27px;
  }
}

@media screen and (max-width: 500px) {
  .b-comnts-1.d-flex.align-items-center {
    flex-wrap: wrap;
  }

  .b-comnts-thumb.me-4 {
    margin-bottom: 10px;
  }

  table,
  thead,
  tbody,
  td,
  tr {
    display: block;
  }

  .quantity {
    justify-content: center;
    padding: 5px 0;
  }

  table tbody h4,
  table tbody h5 {
    padding: 7px 0;
  }

  table tbody td {
    border-bottom: 1px solid #f1f1f1;
    padding: 7px 0;
  }

  .shop-cart-area table thead td {
    padding: 8px 0px;
  }
}

@media screen and (max-width: 400px) {
  .s-product-area {
    padding: 20px 12px 0px;
  }

  .b-comnts-area .b-comnts-area-accordian {
    padding: 20px 10px;
  }

  .b-post-form-two .space-b-post-area {
    padding: 33px 10px 0px 10px !important;
  }
}

@media screen and (max-width: 395px) {
  .shop-coupon-area .shop-coupon-code input {
    font-weight: 600;
    font-size: 12px;
  }

  .shop-coupon-area .shop-coupon-code button {
    font-size: 11px;
    padding: 20px 20px;
  }

  .shop-coupon-area .shop-checkout a {
    font-size: 14px;
    font-weight: 500;
    color: #0b185f;
    background: #f7fbff;
    text-transform: uppercase;
    padding: 15px 10px;
    margin-left: 0px;
  }

  .shop-coupon-area {
    -webkit-box-shadow: 0px 0px 10px 0px #f0f0f0;
    box-shadow: 0px 0px 10px 0px #f0f0f0;
    border-radius: 5px;
    padding: 25px 7px 43px;
    margin: 50px 0px;
  }

  .shop-shipping-area h3 {
    font-size: 14px;
    font-weight: 700;
  }

  .shipping-wrapper .shipping-item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  select {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*/------------------------Shop Section-------------------------/*/
/*/------------------------User Section-------------------------/*/
.user-section {
  background: #fffaf8;
}

.trust-item {
  box-shadow: 0px 0px 14px -4px #ccc;
  width: 100px;
  height: 100px;
  line-height: 90px;
  margin: 0 auto;
  border-radius: 8px;
  margin-right: 80px;
  transform: rotate(45deg);
}

.trust-item .trust-image {
  text-align: center;
  transform: rotate(-45deg);
  padding: 3px;
}

@media screen and (max-width: 991px) {
  .one-row {
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 575px) {
  .two-row {
    margin-bottom: 55px;
  }

  .trust-item {
    box-shadow: 0px 0px 14px -4px #ccc;
    width: 50%;
    height: 100px;
    line-height: 90px;
    margin: 0 auto;
    border-radius: 8px;
    margin-right: 80px;
    transform: rotate(45deg);
  }

  .trust-item .trust-image {
    text-align: center;
  }
}

/*/------------------------User Section-------------------------/*/
/*/------------------------Working Section-------------------------/*/
.work-section {
  background: #effaff;
}

.work-item .work-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  text-align: center;
  padding: 50px 15px;
  margin: 0 auto;
  position: relative;
}

.work-item .work-image .ar {
  position: absolute;
  right: -124px;
  top: 73px;
}

.work-item .work-image .work-effect {
  position: absolute;
  top: 0;
  right: 0;
}

.work-item .work-image .work-effect .work-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 4px solid #fff;
}

.work-item .work-image .work-effect .work-icon .works-contents {
  width: 50px;
  padding: 8px;
  text-align: center;
  margin: 0 auto;
}

.work-item .work-image .work-effect .work-icon .works-contents h5 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.work-item .work-image .work-effect .work-icon .works-contents p {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.work-item .work-content {
  width: 230px;
  text-align: center;
  margin: 0 auto;
}

.work-item .work-content h5 {
  font-size: 24px;
  color: #0b185f;
  font-weight: 600;
  margin-top: 30px;
}

.work-item .work-content p {
  font-size: 15px;
  color: #555555;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .work-item .work-image .ar {
    position: absolute;
    right: -124px;
    top: 73px;
    display: none;
  }

  .work-item .work-image .ar {
    position: absolute;
    right: -124px;
    top: 73px;
    display: none;
  }
}

.work-section.page-six {
  position: relative;
}

.work-section.page-six .sec-shape {
  position: absolute;
  top: 5%;
  right: 0;
}

.work-section.page-six .sec-shape2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.gear-rotate {
  animation: rotate 30s infinite linear;
}

/*/------------------------Working Section-------------------------/*/
/*/------------------------Blog Section-------------------------/*/
.uobfDCwXPf {
  box-shadow: 0px 0px 14px -4px #ccc;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
}

.uobfDCwXPf .blogs-image {
  padding: 30px 20px 30px;
  position: relative;
}

.uobfDCwXPf .blogs-image .Yf16BTNGEm {
  max-width: 287px;
  height: 250px;
  text-align: center;
  margin: 0 auto;
}

.uobfDCwXPf .blogs-image .Yf16BTNGEm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.uobfDCwXPf .blogs-image .comment-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.uobfDCwXPf .blogs-image .comment-area li {
  display: flex;
  align-items: center;
}

.uobfDCwXPf .blogs-image .comment-area li .name {
  padding-left: 8px;
}

.uobfDCwXPf .blog-content {
  max-width: 325px;
  padding: 35px 10px;
  margin-left: 15px;
}

.uobfDCwXPf .blog-content h4 {
  font-size: 20px;
  color: #0b185f;
  font-weight: 600;
  margin-bottom: 20px;
}

.uobfDCwXPf .blog-content h4 a {
  color: #0b185f;
}

.uobfDCwXPf .blog-content .date i {
  color: #555555;
  margin-right: 8px;
}

.uobfDCwXPf .blog-content .date span {
  color: #555555;
}

.uobfDCwXPf .blog-content .comm-four-area .date i {
  color: #86cf3b;
}

.uobfDCwXPf .blog-content .comm-four-area .react i {
  color: #ff6565;
}

.uobfDCwXPf:hover {
  transform: translateY(15px);
}

/*/------------------------Blog Section-------------------------/*/
/*/------------------------Blog-style-two Section-------------------------/*/
.blog-section.blog-style-two .blgo-items-two {
  border-radius: 0;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two {
  border-top: 1px solid #f7f7f7;
  display: flex;
  padding: 20px 20px;
  align-items: center;
  justify-content: space-between;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two .bbttnn {
  color: #000;
  font-size: 18px;
  font-weight: 700;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two .bbttnn i {
  font-size: 14px;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two .icon {
  position: relative;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two .icon i {
  position: relative;
  font-size: 22px;
  color: #555555;
}

.blog-section.blog-style-two .blgo-items-two .blog-btn-two .icon span {
  display: block;
  background: #f08e25;
  width: 17px;
  height: 18px;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  top: -10px;
  left: 2px;
}

.blog-section.blog-style-two .blgo-items-two .blog-content {
  padding: 40px 10px 25px;
}

.blog-section.blog-style-two .blgo-items-two .blog-content h3 {
  margin-bottom: 18px;
}

.blog-section.blog-style-two .blgo-items-two .blog-content h3 a {
  color: #0b185f;
}

.blog-section.blog-style-two .blgo-items-two .blog-content .comment-area {
  display: flex;
  margin-bottom: 15px;
  align-items: center;
  justify-content: space-between;
}

.blog-section.blog-style-two .blgo-items-two .blog-content .comment-area li {
  display: flex;
  align-items: center;
}

.blog-section.blog-style-two .blgo-items-two .blog-content .comment-area li i {
  color: #ffcf34;
}

.blog-section.blog-style-two .blgo-items-two .blog-content .comment-area li h4 {
  margin-bottom: 0;
  margin-left: 8px;
  font-weight: 400;
  font-size: 16px;
  color: #555555;
}

.blog-section.blog-style-two .blgo-items-two .blogs-image {
  padding: 0;
}

.blog-section.blog-style-two .blgo-items-two .blogs-image .Yf16BTNGEm {
  max-width: 416px;
  height: 315px;
}

.blog-section.blog-style-two .blgo-items-two .blogs-image .Yf16BTNGEm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*/------------------------Blog-style-two Section-------------------------/*/
/*/------------------------Blog-style-four Section-------------------------/*/
.blog-section.blog-style-four .uobfDCwXPf {
  border-radius: 0;
}

/*/------------------------Blog-style-four Section-------------------------/*/
/*/------------------------Blog-style-five Section-------------------------/*/
.blog-section.blog-style-five
  .uobfDCwXPf
  .blog-content
  .comm-four-area
  .date
  span {
  font-size: 17px;
  font-weight: 600;
  color: #555555;
  margin-bottom: 7px;
  display: block;
}

.blog-section.blog-style-five .uobfDCwXPf .blog-content .blgo-five .blog-btn {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: #0b185f;
}

.blog-section.blog-style-five .uobfDCwXPf .blog-content .blgo-five .blog-btn i {
  padding-left: 5px;
}

.blog-section.blog-style-five .uobfDCwXPf .blog-content h3 {
  color: #0b185f;
}

.blog-section.blog-style-five .uobfDCwXPf .blog-content h3 a {
  color: #0b185f;
  font-size: 22px;
}

/*/------------------------Blog-style-five Section-------------------------/*/
/*/------------------------Blog-single-two Section-------------------------/*/
.blog-section.blog-style-two.bolg-single-style-two .blog-search-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  padding: 20px 20px;
  margin-bottom: 40px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .blog-search-area
  .search-wrapper {
  padding: 8px 8px;
  background: #fafafa;
}

.blog-section.blog-style-two.bolg-single-style-two
  .blog-search-area
  .search-wrapper
  input {
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.blog-section.blog-style-two.bolg-single-style-two .post-category-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  margin-bottom: 40px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category-title {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category-title
  h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category
  li {
  padding: 15px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category
  li
  a {
  transition: all 0.3s;
  color: #555555;
  font-size: 16px;
  font-weight: 600;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category
  li
  a
  i {
  padding-right: 5px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category
  li
  a:hover {
  color: #0b185f;
  margin-left: 5px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-category-area
  .post-category
  li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.blog-section.blog-style-two.bolg-single-style-two .most-popular-post {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  margin-bottom: 40px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .post-category-title {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .post-category-title
  h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area {
  padding: 20px 20px;
  display: flex;
  align-items: center;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area
  .most-popular-content {
  width: calc(100% - 90px);
  padding-right: 25px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area
  .most-popular-content
  a {
  color: #555555;
  font-size: 17px;
  font-weight: 600;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area
  .most-popular-content
  h4 {
  color: #555555;
  font-size: 16px;
  font-weight: 500;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area
  .most-popular-thumb {
  width: 90px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two
  .most-popular-post
  .most-popular-area
  .most-popular-thumb
  img {
  width: 100%;
  height: 100%;
}

.blog-section.blog-style-two.bolg-single-style-two .post-gallery {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  margin-bottom: 40px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-gallery
  .post-category-title {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-gallery
  .post-category-title
  h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-gallery
  .post-gallery-img {
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-gallery
  .post-gallery-img
  .post-gallery-items {
  width: 100%;
}

.blog-section.blog-style-two.bolg-single-style-two
  .post-gallery
  .post-gallery-img
  .post-gallery-items
  img {
  width: 100%;
  height: 100%;
  background: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two .popular-tags {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .post-category-title {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .post-category-title
  h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0b185f;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .popular-tags-area {
  padding: 20px 20px;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .popular-tags-area
  .popular-tags-list {
  display: flex;
  flex-wrap: wrap;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .popular-tags-area
  .popular-tags-list
  li
  a {
  color: #555555;
  border: 1px solid #f0f0f0;
  padding: 6px 11px;
  font-size: 16px;
  display: inline-block;
  margin: 7px 7px;
  transition: all 0.3s;
}

.blog-section.blog-style-two.bolg-single-style-two
  .popular-tags
  .popular-tags-area
  .popular-tags-list
  li
  a:hover {
  background: #f08e25;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .blog-section.blog-style-two .blgo-items-two .blog-content h3 {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .blog-section.blog-style-two.bolg-single-style-two
    .most-popular-post
    .most-popular-area
    .most-popular-content
    a {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
  }
}

@media screen and (max-width: 767px) {
  .blog-section.blog-style-two .blgo-items-two .blogs-image .Yf16BTNGEm {
    max-width: 519px;
    height: 100% !important;
  }

  .blog-section.blog-style-two .blgo-items-two .blogs-image .Yf16BTNGEm img {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 575px) {
  .blog-section.blog-style-two.bolg-single-style-two .post-gallery {
    box-shadow: 0px 0px 10px 0px #f0f0f0;
    border-radius: 5px;
    margin-bottom: 40px;
  }

  .blog-section.blog-style-two.bolg-single-style-two
    .post-gallery
    .post-category-title {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 20px;
  }

  .blog-section.blog-style-two.bolg-single-style-two
    .post-gallery
    .post-category-title
    h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0b185f;
  }

  .blog-section.blog-style-two.bolg-single-style-two
    .post-gallery
    .post-gallery-img {
    padding: 20px 20px;
  }

  .blog-section.blog-style-two.bolg-single-style-two
    .post-gallery
    .post-gallery-img
    .post-gallery-items
    img {
    width: 160px;
    height: 100%;
  }
}

/*/------------------------Blog-single-two Section-------------------------/*/
/*/------------------------Swipper Section-------------------------/*/
.screenshot-swipper .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.screenshot-swipper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 312px;
  filter: blur(3px);
}

.screenshot-swipper .swiper-slide-active {
  filter: blur(0px);
}

.screenshot-swipper .swiper-slide img {
  display: block;
  width: 100%;
}

.screenshot-swipper .swiper-3d .swiper-slide-shadow-left {
  background-image: none;
}

.screenshot-swipper .swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

/*/------------------------Swipper Section-------------------------/*/
/*/------------------------Blog-single-wrapper-two Section-------------------------/*/
.blgo-single-wrapper-two .blog-left-wrapper-items {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .Yf16BTNGEm-img {
  width: 100%;
  position: relative;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .Yf16BTNGEm-img img {
  width: 100%;
  height: 100%;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .Yf16BTNGEm-img .video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #86cf3b;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  text-align: center;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .Yf16BTNGEm-img .video i {
  font-size: 20px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .blog-quote-content {
  border-radius: 12px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(255, 79, 88) 0%,
    rgb(255, 180, 0) 100%
  );
  box-shadow: 0px 18px 24px 0px rgba(255, 114, 58, 0.36);
  text-align: center;
  padding: 40px 70px;
  border-radius: 5px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .blog-quote-content .icon {
  margin-bottom: 20px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .blog-quote-content .icon i {
  font-size: 56px;
  color: #fff;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .blog-quote-content P {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content {
  padding: 30px 30px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content .title {
  font-size: 30px;
  font-weight: 800 !important;
  color: #0b185f;
  display: block;
  margin-bottom: 15px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content ul {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content ul li {
  margin-right: 22px;
  font-size: 17px;
  color: #555555;
  font-weight: 600;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content ul li i {
  padding-right: 5px;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content p {
  font-size: 18px;
  color: #555555;
  line-height: 1.5;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content .wrap {
  margin: 48px 0;
  display: block;
}

.blgo-single-wrapper-two .blog-left-wrapper-items .content .wrap .SPJA4lBdDZ {
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

/*/------------------------Blog-single-wrapper-two Section-------------------------/*/
/*/------------------------Blog-single-wrapper-three Section-------------------------/*/
.blog-left-wrapper-items-single-three .content ul li i {
  color: #ff6565;
}

.blog-left-wrapper-items-single-three .quote-list-one {
  background: #0b185f;
  padding: 30px 35px;
  border-radius: 10px;
  margin-bottom: 25px;
  margin-top: 20px;
}

.blog-left-wrapper-items-single-three .quote-list-one .quote-content {
  display: flex;
}

.blog-left-wrapper-items-single-three .quote-list-one .quote-content i {
  font-size: 59px;
  color: #283666;
  margin-right: 10px;
}

.blog-left-wrapper-items-single-three .quote-list-one .quote-content p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

.blog-left-wrapper-items-single-three .quote-list-one .designation {
  color: #fff;
  display: block;
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
}

.blog-left-wrapper-items-single-three .single-social-area {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 0 0px;
  border-top: 1px solid #f0f0f0;
  justify-content: space-between;
}

.blog-left-wrapper-items-single-three .single-social-area .single-left-social {
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog-left-wrapper-items-single-three
  .single-social-area
  .single-left-social
  li
  a {
  border: 1px solid #f0f0f0;
  color: #0b185f;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-left-wrapper-items-single-three
  .single-social-area
  .single-right-social
  li
  a
  i {
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  line-height: 45px;
  text-align: center;
  font-size: 20px;
  padding-right: 0;
  background: #0b185f;
}

.article-area {
  display: flex;
  padding: 0 30px;
  justify-content: space-between;
}

.article-area .article-left a {
  font-size: 15px;
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 10px;
  display: block;
}

.article-area .article-left a i {
  color: #0b185f;
}

.article-area .article-left a p {
  font-size: 16px;
  color: #555555;
}

.article-area .text-right {
  text-align: right;
}

.admin-name-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
}

.admin-name-area .Yf16BTNGEm {
  margin-right: 20px;
}

.admin-name-area .content .title {
  color: #0b185f;
  margin-bottom: 8px;
}

.admin-name-area .content p {
  color: #555555;
  margin-bottom: 10px;
  font-size: 17px;
}

.admin-name-area .content ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.admin-name-area .content ul li a i {
  color: #0b185f;
  font-size: 20px;
}

.admin-name-area .content ul li:not(:last-child) {
  margin-right: 15px;
}

.comment-area {
  box-shadow: 0px 0px 10px 0px #f0f0f0;
  border-radius: 5px;
}

.comment-area .head {
  border-bottom: 1px solid #f0f0f0;
  padding: 30px 30px;
  color: #0b185f;
  font-weight: 600;
}

.comment-area .comment-itmes {
  display: flex;
  padding: 30px 30px;
}

.comment-area .comment-itmes .Yf16BTNGEm {
  margin-right: 15px;
}

.comment-area .comment-itmes .comment-con p {
  font-size: 16px;
  margin-bottom: 0;
}

.comment-area .comment-itmes .comment-con .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-area .comment-itmes .comment-con .content .namenad-reply .title {
  font-weight: 600;
  color: #0b185f;
  margin-bottom: 2px;
}

.comment-area .comment-itmes .comment-con .content .namenad-reply .designation {
  color: #555555;
  display: block;
  font-weight: 500;
}

.comment-area .comment-itmes .comment-con .content .reply {
  color: #0b185f;
  font-weight: 600;
}

.comment-area .comment-itmes:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.leave-comment-area .leave-comment {
  padding: 30px 30px;
}

.leave-comment-area .leave-comment input {
  width: 100% !important;
  border: none;
  outline: none;
  border-radius: 3px;
  border: 1px solid #f0f0f0;
  padding: 15px 20px;
}

.leave-comment-area .leave-comment textarea {
  width: 100% !important;
  border: none;
  outline: none;
  border-radius: 3px;
  border: 1px solid #f0f0f0;
  padding: 15px 20px 110px;
}

.leave-comment-area .leave-comment button {
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .blgo-single-wrapper-two .blog-left-wrapper-items .content .title {
    font-size: 27px;
    font-weight: 800 !important;
    margin-bottom: 15px;
  }

  .blgo-single-wrapper-two .blog-left-wrapper-items .content p {
    font-size: 16px;
  }

  .admin-name-area .content p {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .blgo-single-wrapper-two .blog-left-wrapper-items .content {
    padding: 30px 10px;
  }

  .blgo-single-wrapper-two .blog-left-wrapper-items .content .title {
    font-size: 20px;
    font-weight: 700 !important;
    margin-bottom: 15px;
  }

  .blgo-single-wrapper-two .blog-left-wrapper-items .content ul li {
    margin-right: 18px;
    font-size: 13px;
  }

  .blog-left-wrapper-items-single-three .quote-list-one .quote-content {
    display: flex;
    flex-wrap: wrap;
  }

  .blgo-single-wrapper-two .blog-left-wrapper-items .content p {
    font-size: 14px;
  }

  .blog-left-wrapper-items-single-three .quote-list-one {
    padding: 30px 12px;
  }

  .article-area {
    display: flex;
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .article-area .text-right {
    text-align: left;
  }

  .admin-name-area {
    padding: 40px 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .admin-name-area .Yf16BTNGEm {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .comment-area .comment-itmes {
    display: flex;
    padding: 30px 15px;
    flex-wrap: wrap;
  }

  .comment-area .comment-itmes .Yf16BTNGEm {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .leave-comment-area .leave-comment {
    padding: 30px 15px;
  }
}

/*/------------------------Blog-single-wrapper-three Section-------------------------/*/
/*/------------------------Newsletter Section-------------------------/*/
.newsletter {
  overflow: hidden;
  padding: 70px 0;
}

.forms-contents h5 {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}

.effect-btns {
  text-decoration: none;
  padding: 15px 20px;
  font-size: 20px;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  border-radius: 2px;
  margin-right: 20px;
  border-radius: 5px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
}

.form {
  position: relative;
}

.form input {
  color: #555555;
  width: 100%;
  padding: 25px 35px;
  border: none;
  outline: none;
  border-radius: 2px;
}

.form i {
  position: absolute;
  top: 30px;
  left: 14px;
  color: #86cf3b;
}

.effect-button {
  position: absolute;
  top: 7px;
  right: -10px;
}

@media screen and (max-width: 767px) {
  .forms-contents {
    text-align: center;
    margin: 0 auto 20px;
  }
}

/*/------------------------Newsletter Section-------------------------/*/
/*/------------------------Contact Section-------------------------/*/
.contact-area-left .VAAkB1r9qg {
  padding: 20px 0;
}

.contact-area-left .VAAkB1r9qg .content .title {
  margin-bottom: 4px;
}

.contact-area-left .VAAkB1r9qg .content p {
  font-size: 17px;
  color: #555555;
  font-weight: 500;
}

.contact-area-left .VAAkB1r9qg:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.AY7pWsqws0 .ifUMWu8Vqt input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid #f0f0f0;
}

.AY7pWsqws0 .ifUMWu8Vqt textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
  color: #555555;
  padding-bottom: 5px;
  border: 2px solid #f0f0f0;
  padding: 20px 20px 130px;
}

.AY7pWsqws0 .ifUMWu8Vqt .SPJA4lBdDZ {
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

/*/------------------------Contact Section-------------------------/*/
/*/------------------------Commingson Section-------------------------/*/
.comming-son-content {
  position: relative;
  z-index: 1;
}

.comming-son-content .title {
  font-size: 54px;
  color: #0b185f;
  font-weight: 800 !important;
  margin-bottom: 15px;
}

.comming-son-content P {
  font-size: 18px;
  color: #555555;
  line-height: 1.5;
}

.notify-area {
  display: flex;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.notify-area input {
  width: 60%;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px 0px rgba(136, 136, 136, 0.1);
  border: none;
  border: none;
  background: #fff;
  padding: 10px 15px;
  outline: none;
  height: 70px;
  font-size: 17px;
}

.notify-area .SPJA4lBdDZ {
  border-radius: 0;
  width: 40%;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  height: 70px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.counter-wrapper li {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  list-style-type: none;
  padding-right: 35px;
  color: #555555;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.counter-wrapper li span {
  display: block;
  font-size: 36px;
  font-weight: 800;
}

.commning-page {
  position: absolute;
  right: 0;
  bottom: 0;
}

.commning-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media all and (max-width: 768px) {
  h1 {
    font-size: calc(1.5rem * var(--smaller));
  }

  li {
    font-size: calc(1.125rem * var(--smaller));
  }

  li span {
    font-size: calc(3.375rem * var(--smaller));
  }
}

@media screen and (max-width: 757px) {
  .comming-son-content .title {
    font-size: 36px;
  }

  .notify-area .SPJA4lBdDZ {
    border-radius: 0;
    width: 50%;
    font-size: 14px;
    font-weight: 500;
    height: 70px;
  }
}

/*/------------------------Commingson Section-------------------------/*/
/*/------------------------Error Section-------------------------/*/
.error-section {
  position: relative;
}

.error-shape {
  position: absolute;
  bottom: 0;
  right: 0;
}

.error-content {
  position: relative;
  z-index: 1;
}

.error-content .title {
  font-size: 54px;
  color: #0b185f;
  font-weight: 800;
}

.error-content .error-btn {
  margin-top: 45px;
}

.error-content .error-btn .SPJA4lBdDZ {
  text-transform: uppercase;
  font-size: 16px;
}

.error-thumb {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.error-thumb img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .error-thumb {
    margin-top: 40px;
  }
}

@media screen and (max-width: 575px) {
  .error-content .title {
    font-size: 45px;
  }
}

@media screen and (max-width: 480px) {
  .error-content .title {
    font-size: 29px;
  }
}

/*/------------------------Error Section-------------------------/*/
/*/------------------------Map Section-------------------------/*/
.map-section iframe {
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 767px) {
  .map-section iframe {
    width: 100%;
    height: 500px;
  }
}

@media screen and (max-width: 575px) {
  .map-section iframe {
    width: 100%;
    height: 400px;
  }
}

@media screen and (max-width: 475px) {
  .map-section iframe {
    width: 100%;
    height: 300px;
  }
}

/*/------------------------Map Section-------------------------/*/
/*/------------------------Footer Section-------------------------/*/
.footer-section {
  padding-top: 35px;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(57, 204, 145) 0%,
    rgb(118 170 48) 100%
  ) !important;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.footer-section-six {
  background: url(../images/banner/banner6.jpg) no-repeat center center !important;
  background-size: cover !important;
}

.footer-section.footer-styletwo .f-shape::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.49);
}

.P1qNoOnnBt {
  position: relative;
  z-index: 1;
}

.f-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.f-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-shape2 {
  position: absolute;
  top: 0;
  right: 0;
}

.f-shape2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-widget-items .widget-header h3 {
  color: #fff;
  margin-bottom: 30px;
}

.footer-widget-items p {
  color: #fff;
  padding-bottom: 15px;
}

.footer-widget-items .vuQuV7v953 ul li {
  margin-bottom: 20px;
}

.footer-widget-items .vuQuV7v953 ul li a {
  position: relative;
  display: block;
  color: #fff;
  margin-left: 20px;
}

.footer-widget-items .vuQuV7v953 ul li a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  left: -21px;
  top: 5px;
}

.footer-widget-items .vuQuV7v953 ul li .loca {
  color: #fff;
  padding: 10px 0;
  display: block;
}

.footer-widget-items .vuQuV7v953 ul li .call-bold {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.footer-social-items .vuQuV7v953 ul li {
  display: flex;
  align-items: center;
}

.footer-social-items .vuQuV7v953 ul li i {
  color: #fff;
}

.footer-social-items .vuQuV7v953 ul li a {
  position: relative;
  display: block;
  color: #fff;
  margin-left: 10px;
}

.footer-social-items .vuQuV7v953 ul li a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  left: -21px;
  top: 5px;
  display: none;
}

.yrPe8tt8CD {
  padding: 30px 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
}

.yrPe8tt8CD p {
  color: #fff;
}

.yrPe8tt8CD a {
  color: #fff;
  letter-spacing: 2px;
  font-weight: 700;
}

/*/------------------------Footer Section-------------------------/*/
/*/------------------------Footer-style-two Section-------------------------/*/
.footer-section.footer-style-three::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(36, 3, 251, 0.99);
}

/*/------------------------Footer-style-two Section-------------------------/*/
/*/------------------------Footer-style-four Section-------------------------/*/
.footer-section.footer-style-four {
  background: #191930;
}

.footer-section.footer-style-four .newsletter {
  border-bottom: 1px solid #555555;
  position: relative;
  padding: 40px 0;
}

.footer-section.footer-style-four .newsletter .forms-contents h5 {
  margin-bottom: 12px;
}

.footer-section.footer-style-four .newsletter .forms-contents p {
  color: #fff;
}

.footer-section.footer-style-four .yrPe8tt8CD {
  background: #fff;
}

.footer-section.footer-style-four .yrPe8tt8CD p {
  color: #000;
}

.footer-section.footer-style-four .f-four-shape1 {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-section.footer-style-four .f-four-shape2 {
  position: absolute;
  bottom: 10%;
  right: 0;
}

@media screen and (max-width: 1199px) {
  .f-four-shape2 {
    position: absolute;
    bottom: 10%;
    right: 0;
    display: none;
  }

  .f-four-shape1 {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
  }
}

/*/------------------------Footer-style-four Section-------------------------/*/
/*/------------------------Footer-style-five Section-------------------------/*/
.footer-section.footer-style-five {
  background-color: rgb(98, 49, 214);
}

.footer-section.footer-style-five .footer-feature-wrapper {
  border-bottom: 1px solid #7346e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section.footer-style-five
  .footer-feature-wrapper
  .footer-feature-items {
  padding: 22px 40px;
  display: flex;
  align-items: center;
  width: 33.3333333333%;
}

.footer-section.footer-style-five
  .footer-feature-wrapper
  .footer-feature-items
  .Yf16BTNGEm {
  margin-right: 15px;
}

.footer-section.footer-style-five
  .footer-feature-wrapper
  .footer-feature-items
  .cont
  span {
  font-size: 17px;
  display: block;
  color: #fff;
}

.footer-section.footer-style-five
  .footer-feature-wrapper
  .footer-feature-items
  .cont
  a {
  font-size: 18px;
  font-weight: 500;
}

.footer-section.footer-style-five
  .footer-feature-wrapper
  .footer-feature-items:not(:last-child) {
  border-right: 1px solid #7346e0;
}

.footer-section.footer-style-five .footer-widget-items .widget-header .title {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.footer-section.footer-style-five
  .footer-widget-items
  .widget-header
  .title::before {
  position: absolute;
  top: 100%;
  content: "";
  left: 0;
  width: 60px;
  height: 2px;
  background: #7346e0;
}

.footer-section.footer-style-five .footer-widget-items p {
  line-height: 1.7;
}

.footer-section.footer-style-five .footer-widget-items .vuQuV7v953-five span {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-section.footer-style-five .footer-widget-items .vuQuV7v953-five ul {
  display: flex;
  align-items: center;
}

.footer-section.footer-style-five .footer-widget-items .vuQuV7v953-five ul li {
  margin-right: 15px;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li {
  display: flex;
  padding-bottom: 6px;
  margin-bottom: 32px;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li
  .Yf16BTNGEm
  a {
  width: 100px;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  padding: 10px 10px;
  margin-right: 20px;
  display: block;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li
  .Yf16BTNGEm
  img {
  width: 78px;
  height: 67px;
  object-fit: contain;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li
  .contents
  span {
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li
  .contents
  p {
  font-size: 16px;
  color: #fff;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-s-blog
  ul
  li:not(:last-child) {
  border-bottom: 1px solid #7346e0;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-input
  input {
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #7346e0;
  border-radius: 100px;
  background: none;
  color: #fff !important;
  padding: 14px 20px;
  margin-bottom: 20px;
}

.footer-section.footer-style-five
  .footer-widget-items
  .vuQuV7v953-five-input
  button {
  border: none;
  outline: none;
  border: 1px solid #7346e0;
  border-radius: 100px;
  background: none;
  color: #fff !important;
  padding: 16px 40px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
  box-shadow: 0px 18px 30px 0px rgba(38, 204, 133, 0.36);
}

.footer-section.footer-style-five .yrPe8tt8CD ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer-section.footer-style-five .yrPe8tt8CD ul li {
  padding-right: 20px;
}

.footer-section.footer-style-five .yrPe8tt8CD ul li a {
  display: flex;
  align-items: center;
  color: #0b185f;
  font-weight: 600;
  font-size: 17px;
}

.footer-section.footer-style-five .yrPe8tt8CD ul li a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  margin-right: 8px;
  color: #fff;
  background: #0b185f;
}

.footer-section.footer-style-five .yrPe8tt8CD ul li:not(:last-child) {
  border-right: 1px solid #efefef;
  margin-right: 20px;
}

.footer-section.footer-style-five .yrPe8tt8CD p {
  padding: 0;
  margin: 0;
}

.footer-section.footer-style-five .yrPe8tt8CD-five-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .footer-section.footer-style-five .yrPe8tt8CD-five-flex {
    justify-content: center;
  }

  .footer-section.footer-style-five .yrPe8tt8CD-five-flex p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 991px) {
  .footer-section.footer-style-five {
    background-color: rgb(98, 49, 214);
  }

  .footer-section.footer-style-five .footer-feature-wrapper {
    border-bottom: 1px solid #7346e0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items {
    padding: 22px 40px;
    display: flex;
    align-items: center;
    width: 50%;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items
    .Yf16BTNGEm {
    margin-right: 15px;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items:not(:last-child) {
    border-right: 1px solid #7346e0;
  }
}

@media screen and (max-width: 767px) {
  .footer-section.footer-style-five {
    background-color: rgb(98, 49, 214);
  }

  .footer-section.footer-style-five .footer-feature-wrapper {
    border-bottom: 1px solid #7346e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items {
    padding: 22px 40px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items
    .Yf16BTNGEm {
    margin-right: 15px;
  }

  .footer-section.footer-style-five
    .footer-feature-wrapper
    .footer-feature-items:not(:last-child) {
    border-right: none;
  }
}

@media screen and (max-width: 600px) {
  .footer-section.footer-style-five .yrPe8tt8CD .yrPe8tt8CD-five-flex {
    justify-content: center;
  }

  .footer-section.footer-style-five .yrPe8tt8CD .yrPe8tt8CD-five-flex p {
    margin-bottom: 20px;
  }

  .footer-section.footer-style-five .yrPe8tt8CD .yrPe8tt8CD-five-flex ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-section.footer-style-five .yrPe8tt8CD .yrPe8tt8CD-five-flex ul li {
    padding-right: 10px;
    margin-right: 10px;
    border: none;
    margin-bottom: 10px;
  }
}

/*/------------------------Footer-style-five Section-------------------------/*/
/*/------------------------Page six style area start here-------------------------/*/
.pricing-section.pricing-style-two.page-six .s1 {
  border-radius: 0px !important;
}

.pricing-section.pricing-style-two.page-six .s2 {
  border-radius: 0px !important;
}

.pricing-section.pricing-style-two.page-six .s3 {
  border-radius: 0px !important;
}

.pricing-section.pricing-style-two.page-six .SPJA4lBdDZ {
  border-radius: 0 !important;
}

.pricing-section.pricing-style-two.page-six .pricing-s-t-f {
  border-radius: 0 !important;
}

.feature-section.page-six .feature-items {
  border-radius: 0px;
  border: none;
  position: relative;
}

.feature-section.page-six .feature-items::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 5px;
  left: 0;
  bottom: 0;
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(35, 204, 136) 0%,
    rgb(142, 207, 53) 100%
  );
  transition: 0.4s;
}

.feature-section.page-six .feature-items:hover {
  transform: scale(1);
  border: none !important;
  box-shadow: rgba(0, 12, 32, 0.2) 0px 0px 18px 0px;
}

.feature-section.page-six .feature-items:hover::after {
  width: 100%;
}

.feature-section.page-six .feature-items.hover-two::after {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(255, 79, 88) 0%,
    rgb(255, 180, 0) 100%
  ) !important;
}

.feature-section.page-six .feature-items.hover-seven::after {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(232, 90, 202) 0%,
    rgb(252, 78, 101) 100%
  ) !important;
}

.feature-section.page-six .feature-items.hover-three::after {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(1, 203, 173) 0%,
    rgb(71, 161, 242) 100%
  ) !important;
}

.feature-section.page-six .feature-items.hover-five::after {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(95, 81, 181) 0%,
    rgb(206, 98, 253) 100%
  ) !important;
}

.feature-section.page-six .feature-items.hover-six::after {
  background-image: -webkit-linear-gradient(
    145deg,
    rgb(184, 92, 255) 0%,
    rgb(255, 101, 147) 100%
  ) !important;
}

.feature-section.page-six .feature-thumb {
  margin: 0 auto !important;
  border-radius: 0 !important;
}

.feature-section.page-six .feature-content {
  text-align: center;
  margin-top: 20px;
}

@keyframes moveAndRotate {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(45deg);
  }
}

.animated-element {
  animation: moveAndRotate 5s linear infinite;
}

/*/------------------------Page six style area start here-------------------------/*/
/*# sourceMappingURL=kcLRWij6GK.css.map */
