:root{
--yellow:#f5c400;
--black:#0f172a;
--white:#fff;
--soft:#f8fafc;
--gray:#475569
}

*{
box-sizing:border-box
}

body{
margin:0;
font-family:Arial,Helvetica,sans-serif;
color:var(--black);
background:var(--white)
}

a{
text-decoration:none;
color:inherit
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
  padding: 20px 0; 
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  display: inline-flex; 
  align-items: center;  
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 32px; 
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-size: 13px; 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, 
.nav-link.active {
  color: var(--black);
}

.nav-link:hover::after,
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px; 
  background-color: var(--yellow);
}

.btn-whatsapp-header {
  background-color: var(--yellow);
  color: var(--black);
  text-decoration: none;
  font-size: 13px; 
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 26px; 
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-whatsapp-header:hover {
  background-color: #e2b400;
  transform: translateY(-1px);
}

.icon-ws {
  flex-shrink: 0;
  width: 15px; 
  height: 15px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.menu-toggle .linea-hamb {
  width: 100%;
  height: 3.5px;
  background-color: var(--black);
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 900px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  header {
    padding: 10px 0;
  }

  .logo-img {
    height: 90px; 
  }

  .header-right {
    display: flex !important;
    align-items: center;
    gap: 18px; 
  }

  .btn-whatsapp-header {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
  }

  .btn-whatsapp-header .btn-text {
    display: none !important;
  }

  .btn-whatsapp-header .icon-ws {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-menu {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 100%; 
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 24px;
    gap: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.open {
    display: flex !important;
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    display: none;
  }

  .nav-link:hover, 
  .nav-link.active {
    color: var(--yellow);
  }

  .menu-toggle.open .linea-hamb:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.open .linea-hamb:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .linea-hamb:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

    .logo-img {
    height: 55px; 
    width: auto;
  }

  .header-right {
    gap: 0 !important;
  }

  .btn-whatsapp-header {
    display: none !important; 
  }

  .menu-toggle {
    display: flex !important;
    margin-right: 4px; 
  }

}

.hero {
  padding: 80px 0;
  overflow: hidden;
}

h2 {
  font-size: 56px; 
  line-height: 1.1;
  margin: 0 0 24px 0;
  font-weight: 800;
  letter-spacing: -1.5px; 
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero-actions .btn {
  padding: 14px 28px;
  font-size: 14px;
}

.features {
  background-color: #ffffff;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  padding: 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--black); 
  stroke-width: 1.75; 
  display: block;
}

.feature-text h3 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--black);
  line-height: 1.2;
}

.feature-text p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: #64748b; 
  font-weight: 500;
  text-transform: uppercase; 
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .features {
    padding: 24px 0;
  }
  .grid4 {
    grid-template-columns: 1fr 1fr; 
    gap: 24px 16px;
  }
  .feature-item {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .grid4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-title-container {
  text-align: center;
  margin-bottom: 48px;
}

.bar-decorator {
  width: 60px;
  height: 4px;
  background-color: var(--yellow);
  border-radius: 2px;
  margin: 16px auto 0 auto;
}

.about .bar-decorator {
  margin: 16px 0 0 0; 
}

.course-card-custom {
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.course-card-custom:hover {
  transform: translateY(-4px);
}

.course-thumb {
  width: 100%;
  height: 200px;
  border-radius: 18px; 
  overflow: hidden;
  margin-bottom: 16px;
}

.course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.course-info h4 {
  font-size: 26px;
  margin: 0;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}

.course-info .course-tagline {
  font-size: 14px;
  color: var(--gray);
  margin: 4px 0 16px 0;
  font-weight: 500;
}

.btn-course-action {
  width: 100%;
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease;
}

.btn-course-action:hover {
  background-color: #e2b400;
}

.about {
  background-color: #f8fafc;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 2px;
  font-size: 12px;
}

.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
}

.custom-quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03); 
  border-left: 4px solid var(--yellow); 
}

.quote-icon {
  background-color: rgba(245, 196, 0, 0.15); 
  color: #d1a700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-quote p {
  margin: 0;
  font-size: 15px;
  color: var(--black);
  line-height: 1.5;
}

.wrap{
max-width:1180px;
margin:auto;
padding:0 22px
}

.logo{
width:56px;
height:56px;
border-radius:50%;
background:var(--black);
color:var(--yellow);
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
font-weight:900
}

.brand h1{
margin:0;
font-size:21px;
line-height:1;
font-weight:900
}

.brand p{
margin:6px 0 0;
border-top:4px solid var(--yellow);
padding-top:4px;
font-size:11px;
font-weight:900;
letter-spacing:3px;
text-transform:uppercase
}

nav{
display:flex;
gap:26px;
font-size:13px;
font-weight:900;
text-transform:uppercase
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
border-radius:999px;
background:var(--yellow);
color:var(--black);
padding:15px 24px;
font-weight:900;
border:0;
cursor:pointer
}

.btn.dark{
background:var(--black);
color:white
}

.btn.outline{
background:white;
border:2px solid var(--black)
}

.hero{
padding:72px 0;
overflow:hidden
}

.grid2{
display:grid;
grid-template-columns:1fr 1fr;
gap:48px;
align-items:center
}

.bar{
width:90px;
height:8px;
background:var(--yellow);
border-radius:20px;
margin-bottom:20px
}

h2{
font-size:68px;
line-height:1.02;
margin:0;font-weight:950;
letter-spacing:-3px
}

h2 span{
color:var(--yellow)
}

.lead{
font-size:19px;
line-height:1.7;
color:var(--gray);
max-width:560px
}

.heroimg{
position:relative
}

.heroimg img{
width:100%;
height:520px;
object-fit:cover;
border-radius:34px;
box-shadow:0 26px 60px rgba(15,23,42,.22)
}

.badge{
position:absolute;
left:24px;
bottom:24px;
background:rgba(15,23,42,.92);
color:white;
border-radius:24px;
padding:18px 22px
}

.badge small{
display:block;
color:var(--yellow);
text-transform:uppercase;
letter-spacing:2px
}

.badge strong{
font-size:24px
}

.features{
background:var(--soft);
border-top:1px solid #e5e7eb;
border-bottom:1px solid #e5e7eb;
padding:38px 0
}

.grid4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px
}

.feature,.contact{
background:white;
border-radius:28px;
padding:26px;
text-align:center;
box-shadow:0 6px 18px rgba(15,23,42,.04)
}

.icon{
font-size:36px;
color:var(--yellow);
margin-bottom:10px
}

.feature h3,.contact h3{
margin:0;
font-size:17px;
text-transform:uppercase;
font-weight:950
}

.feature p,.contact p{
margin:6px 0 0;
font-size:14px;
color:var(--gray);
font-weight:700
}

.contact-section {
  background-color: var(--white);
  padding: 80px 0;
}

.contact-form-custom {
  max-width: 760px; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-custom label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.5px;
}

.contact-form-custom input[type="text"],
.contact-form-custom input[type="email"],
.contact-form-custom input[type="tel"],
.contact-form-custom textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  background-color: var(--soft); 
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form-custom input:focus,
.contact-form-custom textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background-color: var(--white);
}

.form-captcha-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background-color: var(--soft);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

.captcha-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.captcha-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-img {
  border-radius: 6px;
  height: 42px; 
  background: white;
}

@media (max-width: 480px) {
  .g-recaptcha {
    transform: scale(0.85); 
    transform-origin: 0 0;
  }
}

.contact-form-custom input[name="CAPTCHA_CODE"] {
  width: 100px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
}

.form-legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
}

.form-actions-btn {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.form-actions-btn .btn {
  padding: 14px 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .form-grid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-captcha-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .form-actions-btn {
    flex-direction: column;
  }
  
  .form-actions-btn .btn {
    width: 100%;
    text-align: center;
  }
}

section{
padding:76px 0
}

.center{
text-align:center
}
h3.title{
font-size:42px;
margin:0;
font-weight:950;
text-transform:uppercase;
letter-spacing:-1px
}

.course-card{
border-radius:30px;
overflow:hidden;
background:white;
box-shadow:0 6px 22px rgba(15,23,42,.08);
border:1px solid #eef2f7;
transition:.2s
}

.course-card:hover{
transform:translateY(-5px);
box-shadow:0 16px 34px rgba(15,23,42,.14)
}

.course-card img{
width:100%;
height:178px;
object-fit:cover
}

.course-content{
padding:24px;
text-align:center
}

.course-content h4{
font-size:31px;
margin:0;
text-transform:uppercase;
font-weight:950
}

.course-content p{
color:var(--gray);
line-height:1.5
}

.about{
background:var(--soft)
}

.about-img{
position:relative
}

.about-img:before{
content:"";
position:absolute;
inset:18px 18px -18px -18px;
background:var(--yellow);
border-radius:34px
}

.about-img img{
position:relative;
width:100%;
height:430px;
object-fit:cover;
border-radius:34px;
box-shadow:0 22px 48px rgba(15,23,42,.16)
}

.quote{
border-left:8px solid var(--yellow);
background:white;
border-radius:22px;
padding:24px;
font-size:20px;
font-weight:950;
margin-top:25px
}

.cta {
  background-color: var(--yellow);
  padding: 38px 0;
}

.cta-wrap-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-content-left {
  display: flex;
  align-items: center; 
  gap: 24px;
}

.cta-whatsapp-circle {
  width: 64px;
  height: 64px;
  background-color: #ffffff !important; 
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.cta-whatsapp-circle svg {
  display: block;
  width: 28px;
  height: 28px;
}

.cta-text h3 {
  font-size: 28px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.cta-text p {
  margin: 6px 0 0 0;
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
}

.cta .btn.dark {
  background-color: var(--black);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta .btn.dark:hover {
  transform: translateY(-1px);
}

.cta .wrap{
display:flex;
justify-content:space-between;
align-items:center;
gap:24px
}

.cta h3{
font-size:38px;
margin:0;
text-transform:uppercase;
font-weight:950
}

.contact{
text-align:left;
display:flex;
gap:15px
}

footer {
  background-color: var(--black); 
  padding: 24px 0; 
  color: #ffffff;
}

footer .wrap{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px
}

dialog {
  border: 0;
  border-radius: 34px;
  max-width: 820px;
  width: calc(100% - 26px);
  padding: 0;
  box-shadow: 0 24px 90px rgba(0,0,0,.45);
  max-height: 85vh; 
  overflow: hidden; 
}

dialog::backdrop{
background:rgba(15,23,42,.72);
backdrop-filter:blur(5px)
}

.modal {
  padding: 26px 34px 16px 34px;
  max-height: 85vh; 
  overflow-y: auto !important; 
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch; 
}

.modal-head{
display:flex;
justify-content:space-between;
gap:20px
}

dialog {
  border: 0;
  border-radius: 34px;
  max-width: 820px;
  width: calc(100% - 26px);
  padding: 0;
  box-shadow: 0 24px 90px rgba(0,0,0,.45);
  overflow: hidden; 
}

.modal {
  padding: 26px 34px 16px 34px; 
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}

.modal h3 {
  font-size: 34px; 
  margin: 6px 0 0 0;
  text-transform: uppercase;
  font-weight: 900;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 16px; 
  align-items: start;
}

.modal img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.check {
  display: flex;
  gap: 10px;
  margin: 6px 0; 
  font-weight: 700;
}

.details {
  background: var(--soft);
  border-radius: 24px;
  padding: 16px 22px; 
  margin-top: 16px; 
  font-weight: 700;
}

.details p {
  margin: 4px 0; 
}

.modal p:last-child {
  margin-top: 14px;
  margin-bottom: 0;
}

dialog {
  border: 0;
  border-radius: 34px;
  max-width: 820px;
  width: calc(100% - 26px);
  padding: 0;
  box-shadow: 0 24px 90px rgba(0,0,0,.45);
  overflow: hidden; 
}

.modal {
  padding: 26px 34px 16px 34px; 
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 0;
}

.modal h3 {
  font-size: 34px; 
  margin: 6px 0 0 0;
  text-transform: uppercase;
  font-weight: 900;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 16px; 
  align-items: start;
}

.modal img {
  width: 100%;
  height: 220px; 
  object-fit: cover;
  border-radius: 24px;
}

.check {
  display: flex;
  gap: 10px;
  margin: 6px 0; 
  font-weight: 700;
}

.details {
  background: var(--soft);
  border-radius: 24px;
  padding: 16px 22px; 
  margin-top: 16px;
  font-weight: 700;
}

.details p {
  margin: 4px 0; 
}

.modal p:last-child {
  margin-top: 14px;
  margin-bottom: 0;
}

html {
  scroll-behavior: smooth; 
  scroll-padding-top: 130px; 
}

section {
  scroll-margin-top: 130px;
}

.close{
width:44px;
height:44px;
border-radius:50%;
border:0;
background:#f1f5f9;
font-size:24px;
cursor:pointer
}

.modal h3{
font-size:38px;
margin:6px 0 0;
text-transform:uppercase
}

.modal-grid{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:26px;
margin-top:26px
}

.modal img{
width:100%;
height:280px;
object-fit:cover;
border-radius:24px
}

.check{
display:flex;
gap:10px;
margin:12px 0;
font-weight:700
}

.check span{
color:var(--yellow)
}

.details{
background:var(--soft);
border-radius:24px;
padding:22px;
margin-top:24px;
font-weight:700
}

.info-bar-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid #e5e7eb;
}

.info-bar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px; 
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  padding: 0 25px;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  height: 90%;
  width: 1px;
  background-color: #e5e7eb;
}

.info-icon svg {
  width: 42px; 
  height: 42px;
  color: var(--yellow);
  flex-shrink: 0;
  display: block;
}

.info-text h3 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 900; 
  color: var(--black);
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.info-text p {
  margin: 8px 0 0 0; 
  font-size: 15px;   
  color: #475569;
  font-weight: 600;
  line-height: 1.5;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-footer {
  display: flex;
  align-items: center;
}

.logo-footer-img {
  height: 60px; 
  width: auto;
  display: block;
  filter: brightness(0) invert(1); 
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #94a3b8; 
  font-weight: 500;
  letter-spacing: 0.2px;
}

@media(max-width: 900px) {
  dialog {
    border-radius: 24px;
  }

  .modal {
    padding: 20px 20px 24px 20px !important; 
  }

  .modal-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .modal img {
    height: 180px !important;
    width: 100% !important;
  }

   .cta-wrap-grid {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-content-left {
    flex-direction: column;
    gap: 16px;
  }

  .cta .btn.dark {
    width: 100%;
    text-align: center;
  }

  .modal {
    padding: 22px 20px 20px 20px;
  }
  
  .modal-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .courses-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 20px;
  }

  .about-img img {
    height: 320px;
  }

  nav{
      display:none
   }

   .grid2,.grid4,.modal-grid{
      grid-template-columns:1fr
   }

  h2 {
      font-size: 40px;
      letter-spacing: -1px;
   }

   .cta .wrap,footer .wrap{
      flex-direction:column;
      text-align:center
   }

   .heroimg img{
      height:390px
   }

   .hero-actions {
      flex-direction: column; 
      width: 100%;
   }

   .hero-actions .btn {
      width: 100%;
      text-align: center;
   }

     .info-bar-section {
    padding: 48px 0;
  }
  
  .info-bar-wrap {
    flex-direction: column;
    gap: 40px;
    padding: 0 24px;
  }

  .info-item {
    width: 100%;
    padding: 0;
    gap: 16px;
  }

  .info-item:not(:last-child)::after {
    display: none;
  }
  
  .info-icon svg {
    width: 36px;
    height: 36px;
  }

}

@media(max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media(max-width: 550px){
  .courses-grid {
    grid-template-columns: 1fr !important; 
    gap: 36px;
  }
}