

:root {
  
  --font-main: "Montserrat", "Inter", sans-serif;
  --font-secondary: "Montserrat", sans-serif;

  
  --primary-900: #0A2E57;
  --primary-800: #063C75;
  --primary-700: #0C4F8A;
  --primary-600: #1565A8;
  --primary-500: #1E88E5;
  --primary-400: #42A5F5;
  --primary-300: #64B5F6;
  --primary-200: #90CAF9;
  --primary-100: #BBDEFB;
  --primary-50: #E3F2FD;

  
  --secondary-900: #B45309;
  --secondary-800: #C75C00;
  --secondary-700: #E66A00;
  --secondary-600: #F57C00;
  --secondary-500: #FF9800;
  --secondary-400: #FFB74D;
  --secondary-300: #FFCC80;
  --secondary-200: #FFE0B2;
  --secondary-100: #FFF3E0;

  
  --accent: #FFC72C;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #DC2626;
  --info: #0EA5E9;

  
  --bg-main: #FFFFFF;
  --bg-secondary: #F7F9FC;
  --surface: #FFFFFF;
  --surface-hover: #F3F6FA;
  --border: #E5E7EB;
  --border-hover: #CBD5E1;
  --divider: #E2E8F0;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --black: #111827;

  
  --grad-hero: linear-gradient(135deg, #0A2E57 0%, #063C75 35%, #1565A8 100%);
  --grad-cta: linear-gradient(135deg, #F57C00, #FF9800);
  --grad-highlight: linear-gradient(90deg, #FFC72C, #FF9800);

  
  --radius-card: 20px;
  --radius-input: 14px;
  --radius-btn: 14px;
  --radius-modal: 24px;

  
  --shadow-sm: 0 4px 12px rgba(10, 46, 87, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 46, 87, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 46, 87, 0.18);

  
  --transition: all 0.3s ease;
}


body {
  font-family: "Montserrat", "Inter", sans-serif;
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  padding-top: 76px;
}

html {
  scroll-padding-top: 86px;
}

section {
  scroll-margin-top: 86px;
}



a {
  color: var(--primary-600);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-800);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--primary-900);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: 36px;
  font-weight: 700;
}

h4 {
  font-size: 28px;
  font-weight: 600;
}

h5 {
  font-size: 22px;
  font-weight: 600;
}

h6 {
  font-size: 18px;
  font-weight: 600;
}

.body-large {
  font-size: 18px;
}

.small {
  font-size: 14px;
}


.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--primary-800);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: var(--transition);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--primary-800);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



img {
  height: auto;
  width: 100%;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 997;
  transition: var(--transition);
  padding: 12px 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo img {
  max-height: 50px;
}



.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-900);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: var(--radius-btn);
}

.navbar a i,
.navbar a:focus i {
  font-size: 14px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--secondary-600);
  background: var(--surface-hover);
}

.navbar .nav-cta,
.navbar .nav-cta:focus {
  margin-left: 8px;
  padding: 10px 22px;
  color: var(--primary-900) !important;
  background: var(--accent) !important;
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.25);
  font-weight: 700;
}

.navbar .nav-cta:hover {
  background: #FFB300 !important;
  box-shadow: 0 10px 25px rgba(255, 199, 44, 0.35);
  transform: translateY(-1px);
}

.navbar .nav-portal,
.navbar .nav-portal:focus {
  margin-left: 8px;
  padding: 10px 22px;
  color: var(--white) !important;
  background: var(--primary-800) !important;
  font-weight: 700;
}

.navbar .nav-portal:hover {
  background: var(--primary-900) !important;
  transform: translateY(-1px);
}

.navbar .nav-portal i {
  color: var(--accent);
  margin-right: 8px;
}


.mobile-nav-toggle {
  color: var(--primary-800);
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition);
  border: 0;
  background: transparent;
  z-index: 9999;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 46, 87, 0.98);
  transition: var(--transition);
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--accent);
  display: flex;
}

.navbar-mobile ul {
  display: flex !important;
  flex-direction: column;
  position: relative;
  padding: 40px 24px;
  border-radius: var(--radius-card);
  background-color: var(--white);
  overflow-y: auto;
  transition: var(--transition);
  width: 100%;
  max-width: 500px;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.navbar-mobile li {
  width: 100%;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-900);
  border-radius: var(--radius-btn);
  width: 100%;
  transition: var(--transition);
  justify-content: flex-start;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--secondary-700);
  background: var(--surface-hover);
}

.navbar-mobile .nav-cta,
.navbar-mobile .nav-portal {
  margin: 10px 0 0 0 !important;
  padding: 18px !important;
  justify-content: center !important;
  font-size: 18px !important;
}

.navbar-mobile .nav-cta {
  background: var(--accent) !important;
  color: var(--primary-900) !important;
}

.navbar-mobile .nav-portal {
  background: var(--primary-800) !important;
  color: var(--white) !important;
}

body.mobile-nav-open {
  overflow: hidden;
}


#hero {
  width: 100%;
  padding: 160px 0 100px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  margin: 0 0 24px 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  font-family: var(--font-secondary);
}

#hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}

.hero-content {
  padding-right: 30px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-visual:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

#hero .btn-get-started {
  background-color: var(--accent) !important;
  color: var(--primary-800) !important;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  display: inline-block;
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.35);
  transition: var(--transition);
}

#hero .btn-get-started:hover, #hero .btn-get-started:active, #hero .btn-get-started:focus {
  background-color: #FFB300 !important;
  color: var(--primary-900) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 152, 0, 0.45);
}

#hero .btn-secondary-hero {
  background-color: transparent !important;
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  display: inline-block;
  margin-left: 15px;
  transition: var(--transition);
}

#hero .btn-secondary-hero:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--white) !important;
}

#hero .hero-media {
  max-width: 1120px;
  margin: 60px auto 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

@media (max-width: 991px) {
  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    -moz-text-align-last: center;
    text-align-last: center;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}


section {
  padding: 82px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
}

.section-title {
  text-align: left;
  padding-bottom: 34px;
  max-width: 920px;
  margin: 0 auto;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  text-transform: none;
  margin-bottom: 24px;
  padding-bottom: 0;
  position: relative;
  font-family: var(--font-secondary);
  color: var(--primary-900);
  line-height: 1.2;
}

.section-title h2::before {
  display: none;
}

.section-title h2::after {
  display: none;
}

.section-title p {
  margin-bottom: 0;
  color: #526273;
  font-size: 17px;
  line-height: 1.8;
}


.breadcrumbs {
  padding: 15px 0;
  background-color: #f6f9fb;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


.clients {
  padding: 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 120px;
}

.clients .client-logo img {
  height: 40px;
}

.clients .client-logo:hover img {
  transform: scale(1.2);
}

.clients img {
  transition: all 0.4s ease-in-out;
}


.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #024771 ;
}

.about .content p {
  margin-bottom: 0;
}

.about .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
  color: #024771 ;
}

.about .content .icon-box h4 a {
  color: #024771 ;
  transition: 0.3s;
}

.about .content .icon-box h4 a:hover {
  color: #fdc134;
}

.about .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #fdc134;
}

.about .content .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.about .image {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 667px) {
  .about .image img {
    max-width: 100%;
  }
}


.services {
  padding: 100px 0;
  background-color: var(--bg-secondary);
}

.services .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.services .section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 24px;
}

.services .section-title p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.services .card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.services .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad-cta);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.3);
}

.services .card-icon-box {
  width: 54px;
  height: 54px;
  background: var(--primary-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.services .card-icon-box i {
  font-size: 24px;
  color: var(--primary-600);
}

.services .card-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 280px;
}

.services .card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 46, 87, 0.4), transparent);
  pointer-events: none;
}

.services .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.services .card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.services .card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.services .card-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.services .card-footer-action {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

.services .btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-700);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

.services .btn-learn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.services .btn-learn:hover {
  color: var(--secondary-700);
}

.services .btn-learn:hover i {
  transform: translateX(5px);
}

.services .card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.services .card:hover .card-icon-box {
  background: var(--primary-600);
  transform: rotate(-5deg);
}

.services .card:hover .card-icon-box i {
  color: var(--white);
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .services .section-title h2 {
    font-size: 32px;
  }
  
  .services .card-img {
    height: 220px;
  }

  .services .card-body {
    padding: 24px;
  }

  .services .card-title {
    font-size: 22px;
  }
}


.features .content+.content {
  margin-top: 100px;
}

.features .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #024771 ;
}

.features .content ul {
  list-style: none;
  padding: 0;
}

.features .content ul li {
  padding-bottom: 10px;
}

.features .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #fdc134;
}

.features .content p:last-child {
  margin-bottom: 0;
}


.portfolio .portfolio-item {
  margin-bottom: 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 5px 5px 0;
  display: inline-block;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fdc134;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 14px 34px rgba(3, 72, 114, 0.12);
  background: #fff;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(33, 59, 82, 0.6);
  position: absolute;
  left: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  top: calc(50% - 36px);
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--accent);
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a i {
  font-size: 32px;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap:hover::before {
  left: 0;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  top: calc(50% - 18px);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}


.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid var(--accent);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(33, 59, 82, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


.team .member {
  text-align: center;
  margin-bottom: 20px;
}

.team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  min-height: 260px;
}

.team .member .pic img {
  max-width: 100%;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #024771 ;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #5289ba;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #fdc134;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
  position: relative;
}

.pricing .featured-badge {
  display: inline-block;
  position: absolute;
  top: -11px;
  left: calc(50% - 49px);
  background: #fdc134;
  color: #fff;
  text-align: center;
  line-height: 1;
  border-radius: 50px;
  padding: 4px 20px 5px 20px;
  font-size: 12px;
  text-transform: uppercase;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #fdc134;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #fdc134;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #024771 ;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #fdc134;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
  border: 1px solid #fdc134;
}

.pricing .featured .get-started-btn {
  background: #fdc134;
}

.pricing .featured .get-started-btn:hover {
  background: #fdcd5c;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}


.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #dde8f1;
}

.faq .faq-item i {
  color: #9bbbd7;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}


.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(3, 72, 114, 0.1);
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid #e7eef5;
}

.accordion-button {
  gap: 12px;
  padding: 20px 24px;
  font-weight: 800;
  color: #083f63;
  background: #fff;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #024771;
  background: #fff8e8;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: #fdc134;
  box-shadow: 0 0 0 0.2rem rgba(253, 193, 52, 0.28);
}

.accordion-body {
  padding: 24px;
  color: #526273;
  background: #fff;
}

.highlight {
  display: inline-block;
  color: #024771;
  font-weight: 800;
  background: #fff3ce;
  border-radius: 8px;
  padding: 1px 8px;
}

.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  background-image: radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.03) 0%, transparent 20%), 
                    radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.03) 0%, transparent 20%);
}

.testimonials-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  overflow: hidden;
  display: block;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-800);
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-card:hover .play-button {
  background: var(--accent);
  color: var(--primary-900);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.video-info {
  background: var(--white);
  flex-grow: 1;
}

.video-info .badge {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.bg-primary-100 { background-color: var(--primary-100) !important; }
.text-primary-600 { color: var(--primary-600) !important; }
.text-primary-700 { color: var(--primary-700) !important; }
.text-primary-900 { color: var(--primary-900) !important; }

.admission-form-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.admission-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-200) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.15;
  pointer-events: none;
}

.admission-form-section .section-title {
  padding-bottom: 28px;
}

.admission-form-section .section-title p {
  max-width: 760px;
  margin: 0 auto;
}

.contact-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 16px;
}

.contact-highlight-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-address-card {
  grid-row: span 2;
  background: var(--grad-hero);
  border-color: transparent;
  color: var(--white);
  justify-content: center;
}

.contact-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: 12px;
  margin-bottom: 8px;
}

.contact-address-card .contact-highlight-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.contact-highlight-icon i {
  font-size: 24px;
}

.contact-highlight-card h3 {
  margin: 0 0 12px;
  color: var(--primary-900);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact-highlight-card p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.contact-address-card h3 {
  color: var(--white);
}

.contact-address-card p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  font-size: 18px;
}

.contact-highlight-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-700);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.contact-highlight-card a i {
  font-size: 18px;
}

.contact-highlight-card a:hover {
  color: var(--secondary-600);
  gap: 12px;
}

.contact-address-card a {
  color: var(--accent);
  background: rgba(255, 199, 44, 0.1);
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid rgba(255, 199, 44, 0.3);
  width: fit-content;
}

.contact-address-card a:hover {
  background: var(--accent);
  color: var(--primary-900);
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.contact-card-actions a {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contact-card-actions a:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
}

.contact-card-actions a.whatsapp-link {
  color: #25D366;
}

.contact-card-actions a.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
}

.contact-hours-list {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.contact-hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--divider);
}

.contact-hours-list li:last-child {
  border-bottom: none;
}

.contact-hours-list strong {
  color: var(--primary-900);
  font-weight: 700;
  white-space: nowrap;
}

.contact-hours-card small {
  display: block;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

.form-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(3, 72, 114, 0.13);
}

#form1 .row {
  row-gap: 18px;
  margin-bottom: 18px;
}

#form1 label {
  margin-bottom: 8px;
  color: #385066;
  font-size: 14px;
  font-weight: 700;
}

#form1 .form-control,
#form1 select.form-control {
  min-height: 52px;
  border: 1px solid #d8e4ee;
  border-radius: 8px;
  color: #26323f;
  background-color: #fbfdff;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#form1 .form-control:focus,
#form1 select.form-control:focus {
  border-color: #fdc134;
  background-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(253, 193, 52, 0.22);
}

#submicao {
  min-width: 190px;
  border: 0;
  border-radius: 999px;
  padding: 13px 28px;
  background: #024771;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(2, 71, 113, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#submicao:hover,
#submicao:focus {
  background: #fdc134;
  color: #102d42;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(253, 193, 52, 0.26);
}


.btn {
  border-radius: var(--radius-btn);
  font-weight: 700;
  padding: 12px 28px;
  transition: var(--transition);
  font-family: "Montserrat", sans-serif;
  border: none;
}

.btn-primary {
  background-color: var(--accent) !important;
  color: var(--primary-800) !important;
  box-shadow: 0 10px 25px rgba(255, 152, 0, 0.35);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: #FFB300 !important;
  color: var(--primary-900) !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 152, 0, 0.45);
}

.btn-secondary {
  background-color: var(--primary-800) !important;
  color: var(--white) !important;
}

.btn-secondary:hover {
  background-color: var(--primary-900) !important;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent !important;
  border: 2px solid var(--primary-800) !important;
  color: var(--primary-800) !important;
}

.btn-outline:hover {
  background-color: rgba(6, 60, 117, 0.08) !important;
  transform: translateY(-2px);
}


.card, .custom-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
}

.card:hover, .custom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portal-modal .modal-content {
  border: 0;
  border-radius: var(--radius-modal);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.portal-modal .modal-header {
  align-items: flex-start;
  padding: 32px 32px 24px;
  border: 0;
  background: var(--grad-hero);
}

.portal-modal .modal-title {
  margin-top: 4px;
  color: var(--white);
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
}

.portal-modal-kicker {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.portal-modal .btn-close {
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230A2E57'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  background-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.portal-modal .btn-close:hover {
  transform: rotate(90deg);
  background-color: var(--surface-hover);
}

.portal-modal .modal-body {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--bg-secondary);
}

.portal-choice {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 24px;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.portal-choice:hover,
.portal-choice:focus {
  color: var(--text-primary);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.portal-choice-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--primary-900);
  background: #FFF9E6;
  border-radius: 50%;
  transition: var(--transition);
}

.portal-choice:hover .portal-choice-icon {
  background: var(--accent);
  color: var(--primary-900);
}

.portal-choice-icon i {
  font-size: 26px;
}

.portal-choice strong {
  display: block;
  color: var(--primary-800);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.portal-choice small {
  display: block;
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.45;
}

.portal-choice>.bi-arrow-right-short {
  color: var(--accent);
  font-size: 32px;
  transition: var(--transition);
}

.portal-choice:hover>.bi-arrow-right-short {
  transform: translateX(5px);
}

.contact .info-box i {
  font-size: 32px;
  color: #fdc134;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fff7e5;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #fdc134;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #fdc134;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #fdd067;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


#footer {
  background: url("../img/footer-bg.webp") center center no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 46, 87, 0.96), rgba(6, 60, 117, 0.92));
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

#footer .footer-top h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-main);
  margin-bottom: 0;
  letter-spacing: -1px;
}

#footer .footer-contact-info p {
  font-size: 16px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

#footer .footer-contact-info strong {
  color: #fff;
}

#footer .footer-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-footer-dark {
  background: #111827;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-footer-dark:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.btn-footer-whatsapp {
  background: #22C55E;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-footer-whatsapp:hover {
  background: #1ba950;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

#footer .social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

#footer .social-links a {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .social-links a:hover {
  background: var(--accent);
  color: var(--primary-900);
  transform: translateY(-3px);
  border-color: var(--accent);
}

#footer .footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

#footer .copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .copyright strong {
  color: #fff;
}

@media (max-width: 991px) {
  #footer .footer-top {
    text-align: center;
  }
  #footer .text-start {
    text-align: center !important;
  }
  #footer .footer-actions {
    justify-content: center;
  }
  #footer .social-links {
    justify-content: center;
    margin-top: 40px;
  }
  #footer .copyright {
    text-align: center !important;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 68px;
  }

  #header {
    padding: 5px 0;
  }

  #header .container {
    min-height: 50px;
  }

  #hero {
    padding: 8px 0 34px;
  }

  .testimonials-video-grid {
    grid-template-columns: 1fr;
  }

  .contact-highlight-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .contact-address-card {
    grid-row: auto;
  }
}

@media (max-width: 575px) {
  html {
    scroll-padding-top: 70px;
  }

  section {
    scroll-margin-top: 70px;
  }

  section {
    padding: 58px 0;
  }

  .section-title {
    padding-bottom: 24px;
  }

  .section-title p {
    font-size: 15.5px;
  }

  .services .card-body,
  .accordion-body {
    padding: 22px;
  }

  .accordion-button {
    padding: 18px 20px;
    font-size: 15px;
  }

  .form-card {
    padding: 22px 18px;
  }

  .contact-highlight-grid {
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-highlight-card {
    padding: 24px;
  }

  .contact-highlight-icon {
    width: 48px;
    height: 48px;
  }

  .contact-hours-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .contact-card-actions {
    flex-direction: row;
  }

  .contact-highlight-card a {
    width: auto;
  }

  .portal-modal .modal-dialog {
    margin: 14px;
  }

  .portal-modal .modal-header {
    padding: 22px 22px 16px;
  }

  .portal-modal .modal-title {
    font-size: 24px;
  }

  .portal-modal .modal-body {
    padding: 18px;
  }

  .portal-choice {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .portal-choice-icon {
    width: 44px;
    height: 44px;
  }

  .portal-choice>.bi-arrow-right-short {
    display: none;
  }

  #msg1 {
    display: none;
  }

  .bt-whatsApp {
    right: 18px !important;
    bottom: 22px !important;
  }

  #alertWapp {
    right: 22px !important;
    bottom: 72px !important;
  }
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.insta-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 60, 117, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  color: #fff;
  font-size: 2rem;
}

.insta-item:hover img {
  transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.btn-instagram-follow {
  background: #E1306C;
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  border: none;
}

.btn-instagram-follow:hover {
  background: #c13584;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

@media (max-width: 991px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
