@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
.simple-section {
  padding: 80px 30px;
  position: relative;
}
.simple-section.bg-primary {
  background: linear-gradient(135deg, #1c1917, #292524, #7f1d1d);
}
.simple-section.bg-gray {
  background-color: rgb(248, 249, 250);
}
.simple-section.bg-secondary {
  background: linear-gradient(0deg, rgba(127, 29, 29, 0.96) 38%, rgba(36, 36, 36, 0.94) 100%);
}
.simple-section.primary-bg {
  background: linear-gradient(to right, #991b1b, #7f1d1d);
}

.section-title.text-center {
  max-width: 760px;
  margin: auto;
}
.section-title h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #ffffff;
  margin-bottom: 24px;
}
.section-title h1 span {
  color: rgb(248, 113, 110) !important;
}
.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 41px;
  color: #292524;
  margin-bottom: 15px;
}
.section-title h2 span {
  color: #991b1b;
}
.section-title h3 {
  font-size: 24px;
  font-weight: 600;
  color: #292524;
  margin-bottom: 10px;
}
.section-title h3 span {
  color: #d1d5db;
}
.section-title p {
  color: #44403c;
  font-size: 19px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}
.section-title p span {
  font-size: 20px;
  color: #d1d5db;
}
.section-title h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #292524;
}
.section-title h6 {
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #d97748;
}

.divider {
  width: 100%;
  background: #58534e;
  height: 1px;
}

div::-webkit-scrollbar {
  width: 4px;
}

div::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  .simple-section {
    padding: 50px 20px;
  }
  .section-title h1 {
    font-size: 44px;
    line-height: 51px;
    margin-bottom: 15px;
  }
  .section-title h2 {
    font-size: 33px;
    line-height: 39px;
  }
  .section-title p {
    font-size: 19px;
  }
  .section-title h6 {
    font-size: 18px;
  }
  .simple-section {
    padding: 50px 20px;
  }
}
.button {
  display: inline-block;
  padding: 8px 16px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 8px;
}
.button.button-primary {
  background-color: #991b1b;
  color: #fff;
}
.button.button-primary:hover, .button.button-primary:focus {
  border-color: #991b1b;
  background-color: transarent;
  color: #ffffff;
}
.button.button-secondary {
  background-color: #ffffff;
  color: #44403c;
}
.button.button-green {
  background-color: #17a74c;
  color: #ffffff;
  border-radius: 12px;
  width: 100%;
}
.button.button-outline-primary {
  border-color: #991b1b;
  color: #991b1b;
}
.button.button-outline-primary:hover, .button.button-outline-primary:focus {
  border-color: #991b1b;
  background-color: #991b1b;
  color: #fff;
}
.button.button-outline-yellow {
  border-color: #f59e0b;
  color: #d97748;
}
.button.button-outline-yellow:hover, .button.button-outline-yellow:focus {
  border-color: #991b1b;
  background-color: #991b1b;
  color: #fff;
}
.button.button-round {
  border-radius: 50px;
}

.button {
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  width: 10%;
  height: 25%;
  border-radius: 50%;
  z-index: 1;
  top: 35%;
  left: 45%;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.button:hover::before {
  -webkit-transform: scale(12);
  transform: scale(12);
  -webkit-transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s, -webkit-transform 0.5s;
}
.button:hover::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .button {
    font-size: 16px;
  }
}
.white-card {
  background-color: #ffffff;
  border-radius: 12px;
}
.white-card .bg-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.white-card .bg-icon i {
  font-size: 30px;
}
.white-card .bg-icon.primary {
  background-color: rgb(254, 226, 226);
  color: rgb(153, 27, 27);
}
.white-card .bg-icon.green {
  background-color: rgb(220, 252, 231);
  color: rgb(22, 101, 52);
}
.white-card .bg-icon.blue {
  background-color: rgb(219, 234, 254);
  color: rgb(30, 64, 175);
}
.white-card .info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}
.white-card .info p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.center {
  margin: 0px auto 20px auto;
}

.mission-card {
  padding: 30px;
  border-radius: 16px;
}
.mission-card p {
  margin: 0;
  font-weight: 300;
}
.mission-card.white {
  background-color: #ffffff;
}
.mission-card.red {
  background-color: #7f1d1d;
}
.mission-card.red h3 {
  color: #ffffff;
}
.mission-card.red p {
  color: #ffffff;
}
.mission-card.green {
  background-color: #14532d;
}
.mission-card.green h3 {
  color: #ffffff;
}
.mission-card.green p {
  color: #ffffff;
}
.mission-card .info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.mission-card .info .mission-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-card .info .mission-icon i {
  font-size: 30px;
}
.mission-card .info .mission-icon.primary {
  background-color: rgb(254, 226, 226);
  color: rgb(153, 27, 27);
}
.mission-card .info .mission-icon.green {
  background-color: rgb(220, 252, 231);
  color: rgb(22, 101, 52);
}
.mission-card .info .mission-icon.trans {
  background-color: transparent;
  color: #e5e7eb;
}
.mission-card .info h3 {
  margin: 0;
}

.bg-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bg-icon i {
  font-size: 30px;
}
.bg-icon svg {
  width: 30px;
}
.bg-icon.primary {
  background-color: rgb(254, 226, 226);
  color: rgb(153, 27, 27);
}
.bg-icon.green {
  background-color: rgb(220, 252, 231);
  color: rgb(22, 101, 52);
}
.bg-icon.blue {
  background-color: rgb(219, 234, 254);
  color: rgb(30, 64, 175);
}
.bg-icon.purple {
  background-color: rgb(243, 232, 255);
  color: rgb(107, 33, 168);
}
.bg-icon.yellow {
  background-color: rgb(254, 249, 195);
  color: rgb(133, 77, 14);
}

.Ventures-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  min-height: 240px;
}
.Ventures-card .info h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: start;
  margin-bottom: 10px;
}
.Ventures-card .info p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: start;
}

.story-card {
  text-align: center;
  padding: 25px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 1rem;
}

.quote-box {
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card {
  box-shadow: 0 4px 12px #e5e5e5;
  border-radius: 20px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}
.product-card.right .info {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}
.product-card.right .product-list {
  align-items: flex-end !important;
}
.product-card.right .product-list li::before {
  left: unset !important;
  right: -15px;
}
.product-card .pt-img {
  overflow: hidden;
  width: 30%;
  height: 265px;
}
.product-card .pt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.product-card .pt-img:hover img {
  transform: scale(1.1);
}
.product-card:hover {
  background-color: #fee2e2;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.product-card .info {
  padding: 25px;
  width: calc(70% - 20px);
}
.product-card .info .product-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fecaca;
  margin-bottom: 15px;
}
.product-card .info .product-icon svg {
  width: 30px;
  color: rgb(153, 27, 27);
}
.product-card .info .product-list {
  margin: 0;
  padding: 0 20px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.product-card .info .product-list li {
  font-size: 14px;
  line-height: 18px;
  position: relative;
}
.product-card .info .product-list li::before {
  content: "•";
  position: absolute;
  left: -15px;
  font-size: 26px;
  font-weight: 600;
  color: #991b1b;
}

.world-card {
  padding: 30px;
  background: linear-gradient(135deg, #292524, #7f1d1d);
  border-radius: 16px;
}
.world-card .contnet-card P {
  color: #ffffff;
}
.world-card .contnet-card .head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.world-card .contnet-card .head i {
  font-size: 32px;
  color: rgb(252, 165, 165);
}
.world-card .contnet-card .head h3 {
  color: #ffffff;
  margin: 0;
  font-size: 24px;
}
.world-card .contnet-card .bottom {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 40px 0px 55px 0;
}
.world-card .contnet-card .bottom .info h4 {
  color: rgb(252, 165, 165);
  font-size: 30px;
  margin-bottom: 0px;
}
.world-card .contnet-card .bottom .info p {
  color: #ffffff;
}
.world-card .map-icon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.world-card .map-icon i {
  color: rgb(252, 165, 165);
  font-size: 90px;
}

.stats-card {
  border-radius: 12px;
  padding: 20px;
}
.stats-card.green {
  background-color: rgb(220, 252, 231);
  border: 1px solid #dcfce7;
  margin-bottom: 20px;
}
.stats-card.blue {
  background-color: rgb(239, 246, 255);
  border: 1px solid #dbeafe;
}
.stats-card .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.stats-card .head i {
  font-size: 24px;
}
.stats-card .head i.green {
  color: rgb(22, 101, 52);
}
.stats-card .head i.blue {
  color: rgb(30, 64, 175);
}
.stats-card .head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #292524;
  margin-bottom: 0;
}
.stats-card .stats-content .stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.stats-card .stats-content .stat-item .stat-value {
  font-weight: 700;
  color: rgb(22, 101, 52);
}
.stats-card .stats-content .stat-item .stat-label {
  color: #44403c;
  font-size: 14px;
}

.market-card {
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.market-card:hover {
  background-color: rgb(254, 242, 242);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}
.market-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}
.market-card p {
  color: #6c757d;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.market-card .market-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.market-card .market-stats .stat-label {
  color: #6c757d;
  font-size: 13px;
}
.market-card .market-stats .stat-value {
  font-weight: 700;
  color: #991b1b;
}

.mission-highlight {
  background: #fff7ed;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-highlight .icon-box {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.mission-highlight .icon-box i {
  color: #ffffff;
  font-size: 35px;
}
.mission-highlight h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0;
}
.mission-highlight p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4b5563;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.feature-card {
  padding: 48px;
  transition: all 0.3s ease;
  background-color: white;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 8px solid #ef4444;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.feature-card h3 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 16px;
  color: #1f2937;
}
.feature-card p {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 16px;
}
.feature-card .highlight-box {
  padding: 15px;
  border-radius: 12px;
  background-color: #fee2e2;
}
.feature-card .highlight-box p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: #991b1b;
  line-height: 26px;
}
.feature-card.green {
  border-left-color: #22c55e;
}
.feature-card.green .highlight-box {
  background-color: #dcfce7;
}
.feature-card.green .highlight-box p {
  color: #15803d;
}
.feature-card.blue {
  border-left-color: #3b82f6;
}
.feature-card.blue .highlight-box {
  background-color: #dbeafe;
}
.feature-card.blue .highlight-box p {
  color: #1d4ed8;
}
.feature-card.purple {
  border-left-color: #a855f7;
}
.feature-card.purple .highlight-box {
  background-color: #f3e8ff;
}
.feature-card.purple .highlight-box p {
  color: #7e22ce;
}

.office-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  min-height: 145px;
}
.office-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.office-card .office-content {
  padding: 24px;
  display: flex;
  gap: 16px;
}
.office-card .office-content .office-icon {
  width: 48px;
  height: 48px;
  background-color: #b91c1c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.office-card .office-content .office-icon i {
  color: white;
  font-size: 25px;
}
.office-card .office-content .office-details h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #292524;
  margin-bottom: 8px;
}
.office-card .office-content .office-details .address {
  color: #44403c;
  margin-bottom: 16px;
}
.office-card .office-content .office-details .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.office-card .office-content .office-details .contact-info .info-item i {
  color: #b91c1c;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .Ventures-card {
    min-height: auto;
  }
  .world-card .contnet-card .bottom {
    margin: 30px 0;
  }
  .world-card .map-icon {
    width: 160px;
    height: 160px;
  }
  .world-card .map-icon i {
    font-size: 80px;
  }
  .feature-card {
    padding: 30px;
    min-height: auto;
  }
  .product-card {
    flex-direction: column;
  }
  .product-card.right {
    flex-direction: column-reverse;
  }
  .product-card.right .info {
    text-align: left;
    justify-content: flex-start;
    align-items: start;
  }
  .product-card.right .product-list {
    align-items: flex-start !important;
  }
  .product-card.right .product-list li::before {
    left: -15px !important;
    right: unset;
  }
  .product-card .pt-img {
    overflow: hidden;
    width: 100%;
    height: 265px;
  }
  .product-card .info {
    padding: 25px;
    width: 100%;
  }
  .product-card .info .product-list li {
    font-size: 19px;
  }
}
.hero .hero-img img {
  width: 100%;
  border-radius: 25px;
  height: 500px;
}
.hero .section-title p {
  color: #ffffff;
  font-size: 22px;
}
.hero .trust-indicators {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero .trust-indicators .trust-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero .trust-indicators .trust-item i {
  font-size: 20px;
}
.hero .trust-indicators .trust-item i.sucess {
  color: rgb(74, 222, 128);
}
.hero .trust-indicators .trust-item i.blue {
  color: rgb(96, 165, 250);
}
.hero .trust-indicators .trust-item i.yellow {
  color: rgb(250, 204, 21);
}
.hero .trust-indicators .trust-item span {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}

.about-section .about-right {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
.about-section .about-right img {
  width: 260px;
  border-radius: 12px;
}
.about-section .about-right .highlight-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #991b1b;
  color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.about-section .about-right .highlight-box h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #ffffff;
}
.about-section .about-right .highlight-box p {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}

.cta {
  background: linear-gradient(to right, #292524, #7f1d1d);
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
}
.cta .contant {
  max-width: 600px;
  margin: auto;
  text-align: center;
}
.cta .contant h3 {
  font-size: 30px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 34px;
  text-align: center;
}
.cta .contant p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
}

.ils-card {
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
  background-color: #ffffff;
}
.ils-card h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #292524;
}
.ils-card .check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ils-card .check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ils-card .check-list li i {
  font-size: 24px;
  color: rgb(22, 163, 74);
}
.ils-card .check-list li span {
  font-size: 15px;
  color: #44403c;
  font-weight: 300;
}
.ils-card img {
  width: 100%;
  border-radius: 12px;
}

.two-btns {
  display: flex;
  gap: 20px;
}

.btn-group {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.partnership-section {
  background-color: #991b1b;
}
.partnership-section .content .stats {
  display: flex;
  margin-top: 40px;
  justify-content: space-around;
}
.partnership-section .content .stats .stat {
  padding: 1rem;
}
.partnership-section .content .stats .stat .value {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-align: center;
}
.partnership-section .content .stats .stat .label {
  font-size: 1rem;
  color: #fca5a5;
  text-align: center;
}

.map-container {
  background: linear-gradient(to bottom right, #dcfce7, #bbf7d0);
  height: 384px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.map-container .map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.map-container .map-placeholder i {
  color: #b91c1c;
  margin-bottom: 10px;
  font-size: 60px;
}
.map-container .map-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map-container .map-markers .marker {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #b91c1c;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 1.5s infinite;
}
.map-container .map-markers .marker-1 {
  top: 25%;
  left: 50%;
}
.map-container .map-markers .marker-2 {
  top: 70%;
  left: 35%;
}
.map-container .map-markers .marker-3 {
  bottom: 25%;
  left: 50%;
}
.map-container .map-markers .marker-4 {
  top: 50%;
  left: 40%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-methods .contact-method {
  display: flex;
  align-items: center;
  padding: 1rem;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact-methods .contact-method .bg-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  background-color: #b91c1c;
  flex-shrink: 0;
}
.contact-methods .contact-method .bg-icon i {
  font-size: 25px;
  color: #ffffff;
}
.contact-methods .contact-method .method-icon {
  font-size: 1.5rem;
}
.contact-methods .contact-method .method-details .method-title {
  font-weight: 500;
  color: #44403c;
  margin: 0;
}
.contact-methods .contact-method .method-details .method-value {
  color: #292524;
  font-weight: 400;
  margin: 0;
  font-size: 16px;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border: none;
}
.contact-form label {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .two-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  .hero .hero-img img {
    height: auto;
  }
  .hero .trust-indicators {
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .about-section .about-right {
    flex-wrap: wrap;
  }
  .about-section .about-right img {
    width: 100%;
  }
  .about-section .about-right .highlight-box {
    bottom: -25px;
    left: -10px;
    padding: 13px;
  }
  .cta {
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
  }
  .cta .contant h3 {
    font-size: 25px;
  }
  .cta .contant p {
    font-size: 16px;
    line-height: 22px;
  }
  .ils-card {
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
  }
  .partnership-section .content .stats {
    flex-wrap: wrap;
  }
  .map-container .map-markers .marker-1 {
    top: 20%;
    left: 50%;
  }
  .map-container .map-markers .marker-2 {
    top: 70%;
    left: 25%;
  }
  .map-container .map-markers .marker-3 {
    bottom: 30%;
    left: 70%;
  }
  .map-container .map-markers .marker-4 {
    top: 45%;
    left: 30%;
  }
}
body {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

header {
  padding: 10px 30px;
  background-color: #ffffff;
}
header .nav-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
header .nav-wrap .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .nav-wrap .navbar-brand .logo-avatar {
  width: 80px;
}
header .nav-wrap .navbar-brand .logo-avatar .logo-letter {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
}
header .nav-wrap .navbar-brand .logo-info h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #292524;
}
header .nav-wrap .navbar-brand .logo-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #44403c;
}
header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
}
header .navbar-nav .nav-item .nav-link {
  color: #44403c;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
}
header .navbar-nav .nav-item .nav-link:hover, header .navbar-nav .nav-item .nav-link:focus {
  color: #991b1b;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

header .navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .navbar-right .navbar-nav .nav-item {
  width: 100%;
}
header .navbar-right .navbar-nav .nav-item a {
  width: 100% !important;
}
header .navbar-right .navbar-right-link {
  align-items: start;
  margin-left: 10px;
}

.dropdown-language button,
.dropdown-country button {
  background: transparent !important;
  color: black !important;
  border: none;
}
.dropdown-language button:hover,
.dropdown-country button:hover {
  background-color: none;
}

@media screen and (max-width: 767px) {
  header .nav-wrap {
    align-items: start;
  }
  header .navbar-collapse {
    order: 2;
  }
  .menu {
    display: inline-block;
    align-items: center;
    margin-top: 13px;
  }
  .menu svg {
    width: 40px;
  }
}
footer {
  background-color: #1c1917;
  padding: 70px 30px;
}
footer .footer-logo {
  margin-bottom: 20px;
}
footer .footer-logo .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .footer-logo .navbar-brand .logo-avatar {
  width: 80px;
}
footer .footer-logo .navbar-brand .logo-avatar .logo-letter {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
}
footer .footer-logo .navbar-brand .logo-info h4 {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #ffffff;
}
footer .footer-logo .navbar-brand .logo-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: #a8a29e;
}
footer .footer-logo img {
  width: 100px;
}
footer .footer-text {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 20px;
  color: #d6d3d1;
}
footer .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .social-links a i {
  background: transparent;
  color: #d6d3d1;
  padding: 0px;
  font-size: 25px;
  border-radius: 12px;
}
footer .ft-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .ft-links li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
footer .ft-links li i {
  color: #f87171;
}
footer .ft-links li h6 {
  color: #d1d5db;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
footer .ft-links li a {
  font-size: 16px;
  color: #d1d5db;
  font-family: "Roboto", sans-serif;
}
footer .footer-copyright {
  text-align: center;
  color: #a8a29e;
}
footer .footer-copyright a {
  color: #a8a29e;
}
footer .footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer .footer-badges span {
  background-color: #292524;
  padding: 10px 20px;
  border-radius: 0.5rem;
  font-size: 14px;
  font-weight: bold;
  color: #d6d3d1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
footer .footer-badges span:hover {
  background-color: rgb(54.5779220779, 49.2532467532, 47.9220779221);
  cursor: default;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 50px 20px;
  }
  footer .footer-badges {
    justify-content: space-between;
  }
  footer .footer-badges span {
    width: calc(50% - 10px);
    font-size: 13px;
  }
}

/*# sourceMappingURL=style.css.map */
