@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(15, 15, 15, 0.85) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 10px 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1030;
  transition: background-color 0.3s ease-in-out;
}

.navbar-logo-img {
  width: 150px;
  height: 20px;
  object-fit: cover;
}

.navbar .nav-links {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar .nav-links li {
  margin: 0 20px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.navbar .icons {
  display: flex;
  align-items: center;
  width: 300px;
  justify-content: flex-end;
}

.navbar {
  color: #fff;
  font-size: 20px;
}

.hero {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  background-color: #333;
}

.slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide-item {
  width: 25%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.slide-item.light-background .slide-content h2,
.slide-item.light-background .slide-content p {
  color: #1a1a1a;
  text-shadow: none;
}

.slide-item.light-background .slide-content .slide-button {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.slide-item.light-background .slide-content .slide-button::before {
  background-color: #1a1a1a;
}

.slide-item.light-background .slide-content .slide-button:hover {
  color: #ffffff;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  width: 40%;
  max-width: 600px;
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.slide-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.slide-content .slide-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease-in-out;
}

.slide-content .slide-button span {
  position: relative;
  z-index: 2;
}

.slide-content .slide-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.slide-content .slide-button:hover {
  color: #1a1a1a;
}

.slide-content .slide-button:hover::before {
  transform: translateY(0);
}

.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: white;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 18px;
  color: #888;
  margin-bottom: 60px;
}

.text {
  text-align: center;
}

.product-header {
    margin-top: 100px;
    margin-bottom: -20px;
}

.category-section {
    margin-left: 100px;
    margin-right: 100px;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  margin-bottom: 1rem;
}

.category-header h3 {
    font-weight: normal;
}

.category-nav {
  display: flex;
  gap: 0.5rem;
}

.scroll-btn {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 100%;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.scroll-btn:hover {
    background-color: #e0e0e0;
    border-color: #999;
}

.product-grid-horizontal {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 5px;
}

.product-item-horizontal {
  width: 300px;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-item-horizontal:hover {
  transform: translateY(-5px);
}

.product-item-horizontal .product-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-item-horizontal .product-details {
  padding: 15px;
  text-align: left;
}

.product-item-horizontal .product-title p {
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}

.product-item-horizontal .product-price p {
  font-weight: 500;
  color: #666;
  margin: 0;
}

.product-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 15px;
  -webkit-overflow-scrolling: touch;
}

/* .product-item-horizontal .product-action {
    margin-top: 15px;
} */

.product-item-horizontal .add-to-cart {
    width: 100%;
    height: 50px;
    background-color: #000;
    color: white;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.card {
  width: 700px;
  height: 360px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  color: white;
  font-weight: bold;
  position: relative;
  margin: 50px 0;
}

.card.yellow {
  background-color: #ffc107;
}

.collab-button {
  color: #ffc107;
}

.card.red {
  background: linear-gradient(90deg, #ff3d3d, #ff6a6a);
}

.card .title {
  font-size: 24px;
}

.card .subtitle {
  font-size: 48px;
  opacity: 0.7;
}

.card {
  font-size: 16px;
}

/* .card button {
  background-color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  position: absolute;
  padding: 10px 20px;
  bottom: 40px;
} */

.collab-button:hover,
.collect-button:hover {
  background-color: #000;
  color: white;
  transition: 0.6s ease;
}

.collab-button::before,
.collect-button::before {
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.card.red {
  background-color: #ff3d3d;
}

.collect-button {
  color: #ff3d3d;
}

.feature-header {
    margin-top: 100px;
    margin-bottom: -20px;
}

.features {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
}

.feature {
    padding: 35px 25px;
    border-radius: 12px;
    border: 2px solid #806C00;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-basis: 260px;
    flex-grow: 1;
    max-width: 300px;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 48px;
    color: #806C00;
    margin-bottom: 20px;
}

.feature .title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.feature .description {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.5;
}

.info {
  padding: 0 100px;

  margin-top: 50px;
}

.location {
  display: flex;
}

#contact {
  padding-top: 150px;
}

.footer {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  padding: 50px 100px;

  background-color: white;
}

.footer-logo {
  width: 450px;

  object-fit: cover;
}

.footer-logo img {
  width: 150px;
}

.footer-logo p {
  width: 250px;

  color: #666;

  margin-top: 10px;

  margin-left: 8px;
}

.footer-links,
.footer-contact {
  width: 200px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;

  font-weight: bold;

  margin-bottom: 10px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;

  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li {
  color: #333;

  font-size: 14px;
}

.footer-contact ul li {
  color: #666;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  color: #333;

  margin: 0 10px;

  font-size: 18px;
}

.footer-subscribe {
  text-align: center;

  width: 450px;
}

.footer-subscribe h3 {
  font-size: 18px;

  font-weight: bold;

  margin-bottom: 10px;
}

.footer-subscribe h2 {
  font-size: 24px;

  font-weight: bold;

  margin-bottom: 20px;
}

.footer-subscribe input[type="email"] {
  padding: 10px;

  width: 300px;

  border: 1px solid #ccc;

  border-radius: 20px 0 0 20px;

  outline: none;
}

.footer-subscribe button {
  padding: 10px 20px;

  border: none;

  background-color: #ff3b3f;

  color: #fff;

  border-radius: 0 20px 20px 0;

  cursor: pointer;

  outline: none;
}

.footer-bottom {
  display: flex;

  background-color: #000;

  color: #fff;

  text-align: center;

  padding: 30px 100px;

  font-size: 14px;

  justify-content: space-between;
}

.footer-bottom a {
  color: #fff;

  margin: 0 10px;
}

.footer-bottom .back-to-top {
  right: 20px;

  bottom: 20px;

  background-color: #fff;

  color: #000;

  border-radius: 50%;

  padding: 10px;

  cursor: pointer;
}

/* Modal styles */

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 80%;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 20px;
  border-radius: 8px;
}

.modal-personal {
  display: none;
  position: fixed;
  top: 60%;
  transform: translate(-34%, -50%);
  width: 100%;
  background-color: rgba(15, 15, 15, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 100%;
  border-radius: 8px;
  z-index: 101;
}

#modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  background-color: white;
  padding: 0 20px;
}

.modal-header-personal {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between !important;
  padding: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.modal-title-personal {
  margin: 0;
  line-height: 1.5;
}

.modal-body-personal {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-body-personal p {
  color: black !important;
}

.modal-content-personal {
  position: relative;
}

#modal-footer-personal {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-login {
  display: none;
  top: 10%;
  width: 60px;
  margin-left: 20px;
  background-color: transparent;
  z-index: 1000;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  color: #333;
}

.modal-header-login {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 15px;
}

.modal-body-login {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  margin-bottom: 5px;
}

.modal-body-login a {
  color: white;
  padding: 8px;
  border-radius: 10px;
}

.modal-body-login a:hover {
  background-color: #fff;

  color: black;
}

/* .btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  background-color: var(--bs-btn-bg);
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  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;
} */

/* .btn:hover {

background-color: var(--bs-btn-hover-border-color);

} */

.modal-header-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.modal-header-cart h5 {
    font-size: large;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  opacity: 2;
  z-index: 1000;
  cursor: pointer;
  margin: 5px;
}

.btn-green-custom {
  color: #fff;
  background-color: #b6b6b6;
  border-color: #b6b6b6;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.5);

  z-index: 500;
}

.table {
  margin-bottom: 0;
}

.table-striped {
  border-collapse: collapse;
}

.table-striped th,
.table-striped td {
  border: 1px solid #ddd;

  padding: 10px;

  text-align: left;
}

.table-striped th {
  background-color: #f0f0f0;
}

.cart-icon {
  position: relative;
}

.cart-icon .cart-count {
  position: absolute;

  top: -10px;

  right: -10px;

  background-color: #ff6b6b;

  color: #fff;

  border-radius: 50%;

  padding: 5px 10px;

  font-size: 12px;
}

.cart-dropdown {
  position: absolute;

  top: 40px;

  right: 0;

  background-color: #fff;

  border: 1px solid #ddd;

  padding: 20px;

  display: none;
}

.cart-dropdown ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.cart-dropdown li {
  margin-bottom: 10px;
}

.cart-dropdown li a {
  color: #337ab7;
}

.cart-dropdown li a:hover {
  color: #23527c;
}

.cart-dropdown .cart-item {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.cart-dropdown .cart-item img {
  width: 50px;

  height: 50px;

  object-fit: cover;

  margin-right: 10px;
}

.cart-dropdown .cart-item .cart-item-name {
  font-weight: bold;
}

.cart-dropdown .cart-item .cart-item-price {
  color: #666;
}

.cart-dropdown .cart-item .cart-item-quantity {
  color: #666;
}

.cart-dropdown .cart-total {
  font-weight: bold;

  margin-top: 10px;
}

.cart-dropdown .cart-checkout {
  background-color: #ff6b6b;

  color: #fff;

  border: none;

  padding: 10px 20px;

  border-radius: 5px;

  cursor: pointer;
}

.cart-dropdown .cart-checkout:hover {
  background-color: #c9302c;
}

.login-button {
  padding: 8px 20px;

  border: 2px solid white;

  border-radius: 50px;

  text-decoration: none;

  color: white;

  font-size: 15px;

  font-weight: 600;
}

.login-button:hover {
  background-color: white;

  transition-delay: 200ms;

  color: black;
}

#pay-button {
  background-color: #e63946;

  border-color: #e63946;

  color: #ffffff;

  font-weight: 600;

  padding: 10px 25px;

  border-radius: 50px;

  transition: all 0.3s ease-in-out;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  letter-spacing: 0.5px;
}

/* .navbar-nav {

display: flex;

flex-direction: row;

padding-left: 0;

margin-top: 0;

margin-bottom: 0;

list-style: none

} */

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.ms-auto {
  margin-left: auto !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.navbar-nav {
  display: flex;

  flex-direction: column;

  padding-left: 0;

  margin-bottom: 0;

  list-style: none;
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;

  padding-left: 0.5rem;
}

.navbar-nav .nav-link {
  padding-right: 0;

  padding-left: 0;
}

.nav-link {
  display: block;

  padding: 0.5rem 1rem;

  color: #0d6efd;

  text-decoration: none;

  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

[role="button"] {
  cursor: pointer;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu {
  position: absolute;

  z-index: 1000;

  display: none;

  min-width: 10rem;

  padding: 0.5rem 0;

  margin: 0;

  font-size: 1rem;

  color: #212529;

  text-align: left;

  list-style: none;

  background-color: #fff;

  background-clip: padding-box;

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 0.25rem;
}

.dropdown-item {
  display: block;

  width: 100%;

  padding: 0.25rem 1rem;

  clear: both;

  font-weight: 400;

  color: #212529;

  text-align: inherit;

  text-decoration: none;

  white-space: nowrap;

  background-color: transparent;

  border: 0;

  font-size: 14px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;

  left: auto;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;

  left: 0;

  margin-top: 0.125rem;
}

.my-2 {
  margin-top: 0.5rem !important;

  margin-bottom: 0.5rem !important;
}

.d-none {
  display: none !important;
}

.input-group {
  position: relative;

  display: flex;

  flex-wrap: wrap;

  align-items: stretch;

  width: 100%;
}

.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;

  border-bottom-right-radius: 0;
}

.input-group > .form-control,
.input-group > .dataTable-input,
.input-group > .form-select,
.input-group > .dataTable-selector {
  position: relative;

  flex: 1 1 auto;

  width: 1%;

  min-width: 0;
}

.form-control,
.dataTable-input {
  display: block;

  /* width: 100%; */

  padding: 0.375rem 0.75rem;

  font-size: 1rem;

  font-weight: 400;

  line-height: 1.5;

  color: #212529;

  background-color: #fff;

  background-clip: padding-box;

  border: 1px solid #ced4da;

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;

  border-radius: 0.25rem;

  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;

  font-family: inherit;

  font-size: inherit;

  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;

  margin-bottom: 1rem;
}

.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;

  border-top-left-radius: 0;

  border-bottom-left-radius: 0;
}

.input-group .btn {
  position: relative;

  z-index: 2;
}

.ms-auto {
  margin-left: auto !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.col-gap {
  column-gap: 20px;
}

.section-bg {
  background-color: #f3f5fa;
}

section {
  padding: 60px 0;

  overflow: hidden;
}

/* */

.row {
  --bs-gutter-x: 1.5rem;

  --bs-gutter-y: 0;

  display: flex;

  flex-wrap: wrap;

  margin-top: calc(-1 * var(--bs-gutter-y));

  margin-right: calc(-0.5 * var(--bs-gutter-x));

  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.container {
  --bs-gutter-x: 1.5rem;

  --bs-gutter-y: 0;

  margin: 0 auto;

  width: 100%;

  padding-right: calc(var(--bs-gutter-x) * 0.5);

  padding-left: calc(var(--bs-gutter-x) * 0.5);

  margin-right: auto;

  margin-left: auto;
}

.row > * {
  flex-shrink: 0;

  width: 100%;

  max-width: 100%;

  padding-right: calc(var(--bs-gutter-x) * 0.5);

  padding-left: calc(var(--bs-gutter-x) * 0.5);

  margin-top: var(--bs-gutter-y);
}

[data-aos][data-aos][data-aos-easing="ease-in-out"],
body[data-aos-easing="ease-in-out"] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

html:not(.no-js) [data-aos="zoom-in"] {
  -webkit-transform: scale(0.6);

  transform: scale(0.6);
}

html:not(.no-js) [data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;

  -webkit-transform: none;

  transform: none;
}

html:not(.no-js) [data-aos^="zoom"][data-aos^="zoom"] {
  opacity: 0;

  transition-property: opacity, -webkit-transform;

  transition-property: opacity, transform;

  transition-property: opacity, transform, -webkit-transform;
}

html:not(.no-js) [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  opacity: 1;

  -webkit-transform: translateZ(0) scale(1);

  transform: translateZ(0) scale(1);
}

html:not(.no-js) [data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;

  transition-property: opacity, -webkit-transform;

  transition-property: opacity, transform;

  transition-property: opacity, transform, -webkit-transform;
}

html:not(.no-js) [data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 100px, 0);

  transform: translate3d(0, 100px, 0);
}

[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

/*--------------------------------------------------------------

# Cta

--------------------------------------------------------------*/

.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)),
    url("../img/cta-bg.jpg") fixed center center;

  background-size: cover;

  padding: 150px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;

    align-items: center;

    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------

# Team

--------------------------------------------------------------*/

.team .member {
  position: relative;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

  padding: 30px;

  border-radius: 5px;

  background: #fff;

  transition: 0.5s;

  /* height: 100%; */
}

.team .member .pic {
  overflow: hidden;

  width: 180px;

  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;

  margin-bottom: 5px;

  font-size: 20px;

  color: #37517e;
}

.team .member span {
  display: block;

  font-size: 15px;

  padding-bottom: 10px;

  position: relative;

  font-weight: 500;
}

.team .member span::after {
  content: "";

  position: absolute;

  display: block;

  width: 50px;

  height: 1px;

  background: #cbd6e9;

  bottom: 0;

  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;

  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;

  display: flex;

  align-items: center;

  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50px;

  width: 32px;

  height: 32px;

  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;

  font-size: 16px;

  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/* ----------------------------------------------- */

.img-fluid {
  max-width: 100%;

  height: auto;
}

.align-items-start {
  align-items: flex-start !important;
}

.d-flex {
  display: flex !important;
}

/* */

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;

    width: 48.1%;
  }
}

@media (min-width: 992px) {
  .mt-lg-0 {
    margin-top: 0 !important;
  }
}

/* */

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

/* */

@media (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) {
  .my-md-0 {
    margin-top: 0 !important;

    margin-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
}

@media (min-width: 992px) {
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
}

@media (min-width: 768px) {
  .ms-md-0 {
    margin-left: 0 !important;
  }
}
