@font-face {
  font-family: "Nunito";
  src: url(../fonts/Nunito-Bold.ttf) format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito-Black";
  src: url(../fonts/Nunito-Black.ttf) format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins-Regular.ttf) format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito-Black", sans-serif;
}
p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
}
a {
  color: #111;
  text-decoration: none;
  cursor: pointer;
}
h1 {
  font-size: clamp(32px, 5vw, 60px);
}
h2 {
  font-size: clamp(24px, 4vw, 45px);
}
h3 {
  font-size: clamp(20px, 3vw, 36px);
}
h4 {
  font-size: clamp(18px, 2.5vw, 28px);
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 18px;
}
a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}
li {
  list-style: none;
}
ul {
  display: block;
  margin: auto;
}
@media (max-width: 1023px) {
  p {
    line-height: 21px;
  }
}
.flex-container {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .flex-container {
    justify-content: center;
    flex-direction: column;
  }
}
.center {
  margin-inline: auto;
  text-align: center;
  /* background: #fdfdfd; */
}
.section-wrap {
  max-width: 1290px;
  padding: 50px 20px;
  margin-inline: auto;
}
.mt-15 {
  margin-top: 15px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-6 {
  margin-bottom: 6px;
}
.mb-15 {
  margin-bottom: 15px;
}
.fs-14 {
  font-size: 14px;
}
.fs-18 {
  font-size: 18px;
}
.white {
  color: #fff;
}
.black {
  color: #17254e;
}
.orange {
  color: #fb9c46;
  font-family: "Nunito-Black", sans-serif;
}
.grey {
  color: #646464;
}
.btn {
  font-family: "Nunito", sans-serif;
  background: #fb9c46;
  color: #fff;
  border-radius: 5px;
  padding: 10px 28px;
  border: none;
  cursor: pointer;
  width: fit-content;
  font-size: 18px;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fcb76f;
}
.tab-btn {
  padding: 18px 32px;
  font-family: "Nunito", sans-serif;
  background: #fb9c46;
  color: #fff;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: fit-content;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .btn {
    padding: 10px 25px !important;
  }
}
header {
  background-color: #fbfefd;
  align-items: center;
}
.navbar {
  max-width: 1290px;
  margin-inline: auto;
  min-height: 100px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 20px;
}
.navbar a {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
}
.navbar .brand {
  height: 30px;
  width: auto;
}
.nav-menu {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 60px;
  margin-right: 0px;
}
.nav-item {
  align-items: center;
  text-align: center;
}
.nav-link {
  transition: 0.7s ease;
}
.nav-active {
  position: relative;
  display: inline-block;
}
.nav-active::after {
  content: " ";
  position: absolute;
  bottom: 5px;
  left: 2px;
  width: 92%;
  height: 4px;
  background-color: #fb9c46;
  transform: rotate(0deg);
  transform-origin: left bottom;
  opacity: 0.7 !important;
}
.nav-link {
  position: relative;
  display: inline-block;
}
.nav-link::after {
  content: " ";
  position: absolute;
  bottom: 5px;
  left: 2px;
  width: 92%;
  height: 4px;
  background-color: #fb9c46;
  transform: rotate(0deg);
  transform-origin: left bottom;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.nav-link:hover::after {
  opacity: 0.7;
}
@media (max-width: 1023px) {
  .navbar {
    justify-content: center;
    gap: 20px;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    gap: 0;
    flex-direction: column;
    background-color: #fff;
    width: 280px;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
  }
  .nav-item {
    margin: 16px;
  }
  .nav-menu.active {
    left: 0;
    z-index: 99;
  }
  .logo {
    max-width: 175px;
    width: 100%;
  }
  .navbar .brand {
    height: 24px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}
@media (max-width: 1023px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1003;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    position: fixed;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    position: fixed;
  }
}
.hero-section {
  position: relative;
  background-color: #fbfefd;
  background-repeat: no-repeat;
}
.hero-section h1 {
  line-height: 72px;
  font-family: "Nunito-Black", sans-serif;
}
#hero-btn .flex-container {
  justify-content: start !important;
  gap: 30px;
}
.hero-section .btn {
  background-color: #9c4df4;
  color: #ffffff;
  padding: 18px 32px;
  transition: 0.3s;
}
.hero-section .btn:hover {
  background-color: transparent;
  color: #9c4df4;
  border: 1px solid #9c4df4;
}
.hero-section .btn-alt {
  border: 1px solid #9c4df4;
  color: #9c4df4;
  background-color: transparent;
  padding: 18px 32px;
  transition: 0.3s ease;
}
.hero-section .btn-alt:hover {
  background-color: #9c4df4;
  color: white;
}
.hero-section .container-one {
  width: 50%;
}
.hero-section .container-two {
  width: 50%;
}
.hero-section .icon-image {
  margin-right: 10px;
}
.hero-section .img {
  width: 100%;
}
@media (max-width: 1023px) {
  .hero-section {
    min-height: 100%;
    margin-inline: auto;
    text-align: center;
    background-size: 202px;
    background-position: top -16px left 10px;
  }
  .hero-section h1 {
    line-height: inherit;
  }
  .hero-section .hero-img {
    height: 100%;
  }
  .hero-section .flex-container {
    flex-direction: column-reverse;
  }
  .hero-section .container-one {
    width: 100%;
  }
  .hero-section .container-two {
    width: 100%;
  }
}
.page-intro {
  background-color: #eee;
  min-height: 25em;
}
@media (max-width: 1023px) {
  .page-intro {
    min-height: 20em;
  }
  .page-intro h1 {
    font-size: 35px;
  }
}
#features .container-one {
  width: 50%;
}
#features .img {
  width: 100%;
}
#features .container-two {
  width: 50%;
}
#features .box {
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 -2px 128px 3px rgba(221, 172, 166, 0.3);
}
#features .box .container-one {
  width: 13%;
}
#features .box .container-two {
  width: 87%;
}
#features .box .container-two h6 {
  margin-bottom: 5px;
}
#features .box:nth-of-type(3) {
  margin-bottom: 0px;
}
#features li {
  position: relative;
  padding-left: 13px;
}
#features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8d8d8d;
}
@media (max-width: 1023px) {
  #features .container-one {
    width: 100%;
  }
  #features .container-two {
    width: 100%;
    text-align: center;
  }
  #features .container-two h3 {
    font-size: 24px;
    margin: 12px 0px;
  }
  #features .box .container-one {
    width: 100%;
  }
  #features .box .container-two {
    width: 100%;
    text-align: center;
  }
}
#tutions .icon {
  height: 50px;
  width: 50px;
}
#tutions .tabs {
  font-family: "Nunito", sans-serif;
  box-shadow: 0 -2px 128px 0 rgba(251, 156, 166, 0.3);
  border-radius: 10px;
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* Prevent tab buttons from shrinking */
  flex-shrink: 0;
  white-space: nowrap;
}
#tutions .tabs.tab-btn {
  background-color: #fb9c46;
  color: white;
  box-shadow: 0 4px 15px rgba(156, 77, 244, 0.3);
}
.tab-btn:hover {
  background-color: #fb9c46;
  color: white;
  box-shadow: 0 4px 15px rgba(156, 77, 244, 0.3);
}
#tutions .flex-container {
  justify-content: center;
  gap: 60px;
}
.card {
  padding: 20px;
  width: 290px;
  height: 329px;
  transition: box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0px 2px 18px 0px rgb(8 7 7 / 18%);
  border-radius: 15px;
}
.card p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card .img {
  width: 100px;
}
.card:hover {
  box-shadow: 0px 50px 80px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background-color: #ffffff;
}
.card-btn {
  border: 1px solid #9c4df4;
  color: #9c4df4;
  border-radius: 5px;
  padding: 10px 28px;
  cursor: pointer;
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.card-btn:hover {
  background-color: #9c4df4;
  color: white;
}
@media (max-width: 1023px) {
  .tab-buttons {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tab-buttons::-webkit-scrollbar {
    display: none;
  }
  .tab-buttons .flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 20px;
    min-width: max-content;
    overflow: visible;
  }
  #tutions .tabs {
    flex-shrink: 0;
    min-width: max-content;
    padding: 12px 24px;
    font-size: 13px;
  }
  .card-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  .flex-container {
    gap: 10px;
  }
}
#map {
  position: relative;
  height: 608px;
}
#map .form {
  width: 938px;
  height: 507px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 19px 34px 14px rgba(0, 0, 0, 0.06);
  padding: 45px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -38%);
}
#map .form .form-fields {
  margin-top: 30px;
}
#map .form .form-row {
  margin-bottom: 30px;
  gap: 40px;
}
#map .form .form-field {
  flex: 1;
  position: relative;
  width: 85%;
}
#map .form .form-field label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Nunito", sans-serif;
}
#map .form .form-field input,
#map .form .form-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  font-family: "Nunito", sans-serif;
}
#map .form .form-field input:focus,
#map .form .form-field select:focus {
  border-bottom-color: #666;
}
#map .form .form-field input::placeholder {
  color: #333;
  opacity: 1;
}
#map .form .form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 30px;
  cursor: pointer;
  color: #333;
}
#map .form .form-field select option {
  color: #333;
  background: white;
}
@media (max-width: 1023px) {
  #map .form {
    width: 90%;
    max-width: 500px;
    height: auto;
    min-height: 400px;
    padding: 30px 20px;
  }
  #map .form .form-row {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  #map .form {
    width: 90%;
    padding: 25px 15px;
  }
  #map .form .form-row {
    gap: 15px;
    width: 100%;
  }
}
.geo-address .icon-container {
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.geo-address .icon {
  width: 30px;
}
@media (max-width: 768px) {
  .geo-address .icon-container {
    flex-direction: column;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px;
  }
  .geo-address .container-two {
    text-align: center;
    margin-inline: auto;
  }
  .geo-address .container-two h3 {
    margin-bottom: 10px;
  }
}
.about-us .container-one {
  width: 50%;
}
.about-us .container-two {
  width: 50%;
  text-align: center;
}
.about-us .btn {
  background-color: #9c4df4;
  color: #ffffff;
  padding: 18px 32px;
}
.about-us .btn:hover {
  background-color: transparent;
  color: #9c4df4;
  border: 1px solid #9c4df4;
}
.about-us .btn-alt {
  border: 1px solid #9c4df4;
  color: #9c4df4;
  background-color: transparent;
  padding: 18px 32px;
  transition: 0.3s ease;
}
.about-us .btn-alt:hover {
  background-color: #9c4df4;
  color: white;
}
.about-us .img {
  border-radius: 50%;
  width: 75%;
}
@media (max-width: 1023px) {
  .about-us .flex-container {
    flex-direction: column-reverse;
  }
  .about-us .container-one {
    width: 100%;
    text-align: center;
  }
  .about-us .container-two {
    width: 100%;
    text-align: center;
  }
}
.faq-section {
  /* background: #fdfdfd; */
  min-height: 100vh;
  padding: 10vh 0 0;
}
.faq {
  background: #fff;
  box-shadow: 0 2px 48px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.faq-section .card {
  border-bottom: 1px dashed #cee1f8;
  /* border: none; */
  background: none;
  width: 100%;
  height: auto;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
  text-align: left;
}
.faq-section .card-header {
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .card-header:hover {
  background: rgba(233, 30, 99, 0.1);
}
.faq-title {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #3b566e;
  letter-spacing: 1px;
}
.badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e91e63;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  margin-right: 20px;
}
.collapse {
  display: none;
}
.faq-section .card-body {
  border-top: 1px dashed #cee1f8;
  padding: 20px 35px 16px;
  font-size: 16px;
  color: #6f8ba4;
  line-height: 28px;
  letter-spacing: 1px;
}
.faq-section .card-body p {
  line-height: 21px;
}
.subjects .flex-container {
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.subjects .flex-container li {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.subjects .flex-container li:hover {
  background: #e9ecef;
}
.subjects .icon {
  width: 25px;
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
  filter: brightness(0) saturate(100%) invert(44%) sepia(84%) saturate(747%) hue-rotate(234deg) brightness(95%)
    contrast(92%);
}
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
  .subject-group h3 {
    font-size: 1.3rem;
  }
  .subjects-grid {
    gap: 1.2rem;
  }
}
.blog-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  justify-content: flex-start;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 4px 24px rgba(20, 37, 63, 0.09),
    0 1.5px 4px 0 rgba(20, 37, 63, 0.015);
  width: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.025);
}
.blog-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-category {
  background: #ffe7baa1;
  color: #fb9c46;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 16px;
  width: fit-content;
}
.blog-card-title {
  font-size: 21px;
  margin: 0 0 14px 0;
  color: #20224e;
  font-weight: bold;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-card-excerpt {
  color: #35394e;
  font-size: 16px;
}
.blog-card-readmore {
  margin-top: 20px;
  color: #fff;
  background: #fb9c46;
  padding: 11px 32px;
  border-radius: 22px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  transition: background 0.15s;
}
.blog-card-readmore:hover {
  background: #ffb833;
}
.wp-block-heading {
  margin-top: 13px;
  margin-bottom: 0px;
}
.wp-block-separator {
  margin: 20px 0px;
}
/* ========== FOOTER ========== */
.new_footer_area {
  background: #fbfbfd;
}

.new_footer_top {
  padding: 80px 0 270px;
  position: relative;
  overflow: hidden;
}

.footer-wrap {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand column */
.footer-brand p {
  font-size: 14px;
  color: #6a7695;
  line-height: 1.7;
  margin: 16px 0;
}

.footer-logo {
  height: 45px;
  width: auto;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e2eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: #9c4df4;
  border-color: #9c4df4;
}

.footer-social-link img {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover img {
  filter: brightness(0) invert(1);
}

/* Columns */
.footer-col-title {
  font-size: 18px;
  font-weight: 600;
  color: #263b5e;
  margin-bottom: 20px;
  font-family: "Nunito-Black", sans-serif;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav a {
  font-size: 14px;
  color: #6a7695;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #9c4df4;
}

#footer #get-in-touch {
  display: none;
}

/* Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-contact p,
.footer-contact a {
  font-size: 14px;
  color: #6a7695;
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.footer-contact a[href^="tel"] {
  color: #fb9c46;
  font-weight: 600;
}

.footer-contact a:hover {
  color: #9c4df4;
}

/* Animated background */
.footer_bg {
  position: absolute;
  bottom: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png")
    no-repeat scroll center 0;
  width: 100%;
  height: 266px;
}

.footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif")
    no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  animation: myfirst 22s linear infinite;
}

.footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif")
    no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 38%;
  animation: myfirst 30s linear infinite;
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/* Footer bottom bar */
.footer_bottom {
  padding: 20px 0;
  border-top: 1px solid #e8e8f0;
  background: #fbfbfd;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7f88a6;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: #7f88a6;
}

/* Responsive */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .new_footer_top {
    padding: 60px 0 220px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .new_footer_top {
    padding: 40px 0 180px;
  }
}
.social-media-icon {
  height: 25px;
  width: 25px;
}
