* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Barlow Condensed', sans-serif;
}
body {
  font-weight: 400;
  color: #fff;
  background: #1a1a1a;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: #fff;
}
img {
  max-width: 100%;
}
.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 20px 40px;
  border-bottom: 2px solid #333;
}
.header-title {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* HEADER */

/* HERO */
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.hero_text h1 {
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}
.hero_center {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.hero_left,
.hero_right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ограничение высоты блока и одинаковые пропорции */
.hero-video,
.hero_right img {
  width: 320px;          /* Одинаковая ширина */
  height: 480px;         /* Одинаковая высота */
  border-radius: 16px;
  overflow: hidden;
  background: #191919;   /* на случай если видео/фото не загружено */
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;     /* для совместимости, но iframe не всегда реагирует */
}

.hero_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-top: 100px;
}

/* Адаптив */
@media (max-width: 900px) {
  .hero_center {
    flex-direction: column;
    gap: 16px;
  }
  .hero-video,
  .hero_right img {
    width: 96vw;
    max-width: 370px;
    height: 54vw;
    max-height: 600px;
    margin-top: 50px;
  }
}
/* HERO */

/* NAV */
nav {
  display: flex;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}
nav ul li {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
nav ul li a:hover {
  border-bottom: 2px solid #dc7000;
}
/* NAV */

/* Burger */
.burger {
  display: none;
}
/* Responsive styles for mobile */
@media (max-width: 480px) {
  header {
    flex-wrap: wrap;
    padding: 15px 40px;
  }
  .header-left {
    width: 100%;
    justify-content: flex-start;
  }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .burger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
  }
  .header-title {
    font-size: 20px;
    white-space: nowrap;
  }
  nav {
    display: none;
    width: 100%;
    background: #111;
    padding: 15px 0;
  }
  nav.active {
    display: block;
  }
  nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    padding: 0 20px;
    text-align: center;
  }
}
/* Burger */

/* ASESORIAS */
.asesorias-btn {
  border: 1px solid #f5b544;
  padding: 10px 25px;
  text-transform: uppercase;
  font-size: 14px;
  color: white;
  letter-spacing: 1px;
  position: relative;
}
.asesorias-btn::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  width: 50px;
  height: 2px;
  background: #f5b544;
  transform: translateY(-50%);
}
.asesorias {
  padding: 20px 40px;
  background-color: #111;
}
.asesorias-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.asesorias-header .line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #f5b544;
}
.asesorias-header p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 40px;
}
.asesorias-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.asesoria {
  background-color: #2a2a2a;
  padding: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.asesoria p {
  transform: skew(-5deg);
}
.asesoria h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: white;
}
.asesoria p {
  margin-bottom: 12px;
}
.asesoria strong {
  color: #f5b544;
  font-weight: bold;
}
/* ASESORIAS */

/* BIOGRAFIA */
.biografia {
  padding: 60px 0;
  color: white;
  padding: 20px 40px;
}
.biografia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.bio-box {
  background: #999;
  color: #111;
  padding: 30px;
  border-left: 4px solid #f5b544;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 100%;
}
.bio-box h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff;
}
.bio-box h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}
.bio-box ul {
  padding-left: 20px;
  margin: 0;
}
.bio-box ul li {
  margin-bottom: 10px;
}
.bio-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-start;
}  
.bio-img {
  width: 140px;
  border-radius: 0;
  object-fit: cover;
}
/* BIOGRAFIA */
  
/* SOCIAL */
.social-box {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  color: #ccc;
  font-size: 14px;
}
.social-box div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-box img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.social-box img:hover {
    transform: scale(1.1);
}
/* SOCIAL */
  
/* NEWS */
.bio-news {
  width: 100%;
  max-width: 300px;
}
.bio-news h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: white;
}
.bio-news img {
  width: 100%;
  border-radius: 6px;
}
/* NEWS */ 

/* ARTICULOS */
.articulos {
  padding: 20px 40px;
}
.articulos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
}
.articulos-header .left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.articulos-header h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  margin: 0;
}
.articulos-header h2 span {
  width: 36px;
  height: 2px;
  background-color: #f5b544;
  display: inline-block;
}
.articulos-header .subtext {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}
.arrows {
  display: flex;
  gap: 15px;
  font-size: 20px;
  color: #777;
}
.arrows .arrow {
  cursor: pointer;
  transition: color 0.2s;
}
.arrows .arrow:hover,
.arrows .arrow.active {
  color: white;
}
.articulos-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.articulo {
  flex: 1 1 48%;
  position: relative;
}
.articulo img {
  width: 100%;
  border-radius: 4px;
}
/* ARTICULOS */
  
/* CALENDLY */
.calendly {
  margin-top: 60px;
  padding: 20px 40px;
  background-color: #1a1a1a;
}
.calendly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.calendly-img img {
  width: 100%;
  border-radius: 6px;
}
.calendly-form {
  background: #222;
  padding: 30px;
  border-radius: 6px;
  color: #ccc;
}
.calendly-logo {
  width: 140px;
  margin-bottom: 10px;
}
.calendly-subtext {
  margin-bottom: 30px;
  color: #bbb;
}
.calendly-form-data {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.calendly-form input,
.calendly-form select {
  background: transparent;
  border: 1px solid #555;
  padding: 12px;
  color: white;
  border-radius: 4px;
  font-size: 14px;
}
.calendly-form input::placeholder {
  color: #777;
}
.calendly-form button {
  background: transparent;
  color: white;
  border: 1px solid #f5b544;
  padding: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendly-form button:hover {
  background: #f5b544;
  color: black;
}
/* CALENDLY */

/* STYLE FOR SELECT */
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 40px 12px 12px;
  font-size: 14px;
  width: 100%;
  border-radius: 4px;
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #f5b544;
  pointer-events: none;
  font-size: 12px;
}
/* STYLE FOR SELECT */

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: white;
  font-size: 14px;
  padding: 20px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 2px solid #f5b544;
}
.footer-brand {
  font-size: 20px;
  font-weight: bold;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}
.footer-social img {
width: 24px;
height: 24px;
object-fit: contain;
transition: transform 0.2s ease;
}
.footer-social img:hover {
  transform: scale(1.1);
}
.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
  color: #ccc;
}
/* FOOTER */

@media (max-width: 1024px) {
.wrapper {
  padding: 0 20px;
}
}
@media (max-width: 768px) {
.wrapper {
  padding: 0 15px;
}
header,
.hero-top,
.articulos-header,
.footer-top,
.calendly-grid,
.biografia-grid,
.asesorias-columns {
  flex-wrap: wrap;
  gap: 20px;
}
.asesorias-columns {
  grid-template-columns: repeat(2, 1fr);
}
.biografia-grid,
.calendly-grid {
  grid-template-columns: 1fr;
}
.articulos-grid {
  flex-direction: column;
}
.articulo {
  flex: 1 1 100%;
}
}
@media (max-width: 480px) {
.wrapper {
  padding: 0 0px;
}
nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px 20px;
  padding: 0 20px;
  justify-items: center;
}
.hero-left h1,
.articulos-header h2 {
  font-size: 22px;
}
.asesorias-columns {
  grid-template-columns: 1fr;
}
}

