/* Header Start */
.site-header {
  padding: 10px 0;
  background: white;
  font-size: 14px;
  z-index: 1000;
  position: sticky;
  width: 100%;
  top: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
  color: black;
}

.site-header figure {
  max-width: 60px;
}

/* Nav */
.site-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.site-header nav a {
  color: #4d4d4d;
  font-weight: 500;
}

.site-header nav a:hover {
  color: var(--primary-color);
}

/* Buttons */

.site-header .buttons button {
  font-weight: 700;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 25px;
  height: 20px;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #111;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #000;
  transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}
/* Header End */

/* Hero Banner Start */
.hero-banner {
  position: relative;
  height: auto;
  width: 100%;
  background-image: url("../images/bg-images/banner-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 98px 0 78px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
}
.hero-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-banner h1 {
  color: var(--tertiary-color);
  font-size: 39px;
  font-weight: 700;
  line-height: 44.85px;
  margin-top: 8px;
}
.hero-banner span {
  color: var(--tertiary-color);
  font-size: inherit;
}
.hero-banner p {
  width: 420px;
}
.hero-banner .banner-content {
  padding-right: 60px;
}
.hero-banner .banner-content .buttons {
  gap: 18px;
}
.hero-banner .buttons .btn {
  padding-top: 12.75px;
  padding-bottom: 12.75px;
}

/* Services Section Start */
.services {
  position: relative;
}
.services-cards {
  position: relative;
  margin-top: 30px;
}
.services-cards .swiper-slide.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}
.services-cards .swiper-slide.card figure {
  border-radius: 24px;
  margin-bottom: 12px;
  height: 210px;
}

.services-cards .swiper-slide.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: black;
}
.services-cards .swiper-slide.card .btn-primary {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  width: 132px;
}
.services-cards .swiper-slide.card .btn-primary .arrow-icon {
  transform: rotate(-45deg);
}
.services-cards .swiper-slide.card .btn-primary:hover {
  background: transparent;
  color: black;
  border-color: var(--border-color);
}
.swiper-nav {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: absolute;
  top: 26%;
  left: 0;
  width: 100%;
  z-index: 99;
}
.swiper-nav .custom-prev svg {
  transform: rotate(180deg);
}
/* Services Section End */

/* CTA Section Start */
.cta .stacked-images {
  justify-content: flex-end;
}
.cta .stacked-images .small {
  margin-right: -80px;
  margin-top: 250px;
}
.cta p {
  width: 400px;
}
.cta .btn-primary {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-top: 40px;
}

.cta .stacked-images .big {
  max-width: 283px;
  height: 284px;
}
.cta .stacked-images .big {
  max-width: 350px;
  height: 410px;
}
.cta .stacked-images .small {
  margin-left: 0;
}
/* CTA Section End */

/* Team Section Start */
.team h2 {
  width: 480px;
}
.team .experts-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.team .card figure {
  background: radial-gradient(
      69.79% 58.2% at 47.97% 44.17%,
      rgba(0, 119, 174, 0) 0%,
      rgba(0, 119, 174, 0.3) 100%
    ),
    url(<path-to-image>) lightgray -7.058px -22.488px / 118.332% 171.027%
      no-repeat;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  height: 320px;
}
.team .card figure img {
  transform: scale(1.2);
}
.team .card .card-body {
  padding: 18px 38px 15px 15px;
}
.team .card-body h3 {
  margin-bottom: 8px;
  color: var(--tertiary-color);
  font-size: 18px;
  font-weight: 600;
  line-height: 21px;
}
.team .card-body .ratings {
  margin-bottom: 12px;
}
.team .social-media-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
/* Team Section End */

/* AboutUs Start */
.about-us .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-us .stacked-images {
  justify-content: flex-start;
}
.about-us .stacked-images .small {
  margin-left: -70px;
  margin-top: 142px;
}
.about-us .stacked-images .big {
  max-width: 275px;
  height: 295px;
}
.about-us .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin-top: 24px;
  width: 85%;
}
.about-us .check-list .list-item {
  background: #f5f4f4;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 7.5px;
  gap: 6px;
  align-self: stretch;
}
.about-us .check-list .list-item img {
  width: 25px;
  height: 25px;
}
.about-us .buttons {
  margin-top: 35px;
  gap: 24px;
}
/* AboutUs End */

/* Pricing Section Start */
.pricing-section {
  height: 520px;
  margin-bottom: 300px;
  padding-top: 70px;
  color: white;
  position: relative;
  background-image: url("../images/bg-images/pricing-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 139, 202, 0.7);
  z-index: 1;
}
.pricing-section .content {
  position: relative;
  z-index: 9;
  text-align: center;
}
.pricing-section .heading-2 {
  width: 40%;
  margin: auto;
  color: inherit;
  margin-top: 10px;
  margin-bottom: 27px;
}
.pricing-section .tab-navigation {
  background: white;
  border-radius: 30px;
  padding: 4px 6px;
  width: 218px;
  margin: auto;
}

.pricing-section .tab-navigation .btn-secondary {
  box-shadow: 0 0 3.75px 0 rgba(0, 0, 0, 0.1);
  border: none;
}

.pricing-section .pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 23px;
  margin-top: 30px;
}
.pricing-section .pricing-cards .card {
  border-radius: var(--border-radius);
  background: white;
  display: flex;
  padding: 22.5px 26.25px;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}
.pricing-section .card span {
  color: black;
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}
.pricing-section .card .price {
  display: flex;
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  gap: 7.5px;
  border-radius: 7.5px;
  background: #0077ae;
  width: 80%;
  display: flex;
  align-items: flex-end;
  color: white;
}
.pricing-section .card .price h5 {
  font-size: 20px;
  margin-bottom: 0;
  font-size: 25px;
}
.pricing-section .card .price span {
  font-size: 13px;
  color: white;
}
.pricing-section .card ul {
  color: var(--text-color);
  text-align: left;
  list-style: disc;
}
.pricing-section .card ul li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing-section .card .booking-btn {
  border-radius: 4.5px;
  padding: 15px 30px;
  width: 100%;
  margin-top: 27px;
}

/* Pricing Section End */

/* Footer Start */
.site-footer {
  background: var(--tertiary-color) !important;
  color: white;
  padding: 75px 0 15px 0;
}
.site-footer .footer-widgets {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 65px;
  margin-bottom: 48px;
  justify-content: space-between;
  width: 99%;
  margin: 0 auto 48px;
}

.site-footer .footer-widgets .widget:first-child {
  font-family: "Be Vietnam", sans-serif;
}
.site-footer .footer-widgets .widget:first-child h2 {
  margin-bottom: 6px;
  font-size: 24px;
}
.site-footer .footer-widgets .widget:first-child h5 {
  font-size: 12px;
  font-weight: 600;
}
.site-footer .footer-widgets .widget:first-child h2 span {
  color: var(--primary-color);
}

.site-footer .footer-widgets .widget h4 {
  margin-bottom: 28px;
  font-weight: 700;
}
.site-footer .footer-widgets .widget nav {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-widgets .widget nav a {
  font-weight: 400;
}
.site-footer .footer-widgets .widget nav a:not(:last-child) {
  margin-bottom: 18px;
}
.site-footer .footer-widgets .widget input[type="text"] {
  background: transparent;
  border: 0.75px solid #808080;
  color: white;
  margin-bottom: 20px;
}
.site-footer .footer-widgets .widget input:placeholder-shown {
  font-size: 14px;
}
.site-footer .footer-widgets .widget input[type="submit"] {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  max-width: 90px;
}
.site-footer .footer-widgets .widget input.btn.primary {
  background-color: var(--primary-color);
  color: white;
}
.site-footer .footer-bottom {
  border-top: 2px solid #d9d9d9;
  text-align: center;
  padding-top: 18px;
}
/* Footer End */
