:root {
  --gold: #ffc20d;
  --white: #fff;
  --black: #020304;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.3) 36%, rgba(0, 0, 0, 0.18) 57%, rgba(0, 0, 0, 0.86) 100%),
    url("images/bg_main.webp") center bottom / cover no-repeat;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
  padding: clamp(14px, 2.9vh, 30px) 28px clamp(10px, 2.15vh, 22px);
  position: relative;
  background-position: center center;
}

.hero::before {
  background: radial-gradient(circle at 50% 23%, rgba(255, 255, 255, 0.12), transparent 24%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.content {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: min(1220px, 100%);
  position: relative;
  text-align: center;
  width: 100%;
}

.logo-img {
  display: block;
  height: auto;
  margin-bottom: clamp(14px, 5.25vh, 54px);
  max-width: 615px;
  width: 47vw;
}

.intro {
  width: 100%;
}

h1 {
  font-size: 134px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  margin-bottom: clamp(10px, 1.75vh, 18px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58);
}

.countries {
  color: var(--gold);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.25;
  margin-bottom: clamp(8px, 1.65vh, 17px);
  text-transform: uppercase;
}

h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 3.5px;
  line-height: 1.05;
  margin-bottom: clamp(5px, 0.8vh, 8px);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.sub {
  color: var(--gold);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hours-card {
  align-items: center;
  background: rgba(0, 0, 0, 0.58);
  border: 2px solid var(--gold);
  border-radius: 18px;
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  margin-bottom: clamp(17px, 3.7vh, 38px);
  max-width: 670px;
  min-height: clamp(78px, 10.55vh, 108px);
  padding: 18px 31px 18px 27px;
  width: 55%;
}

.hours-icon {
  align-items: center;
  color: var(--gold);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 52px;
  justify-content: center;
  line-height: 1;
  width: 55px;
}

.hours-card div {
  text-align: left;
}

.hours-card strong {
  color: var(--gold);
  display: block;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 7px;
}

.hours-card p {
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
}

.hours-card p span {
  display: inline-block;
  padding: 0 14px;
}

.buttons {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-bottom: clamp(15px, 3.5vh, 36px);
  width: 100%;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 28px;
  font-weight: 900;
  gap: 20px;
  justify-content: center;
  line-height: 1;
  min-height: clamp(58px, 7.8vh, 80px);
  padding: 18px 33px;
  text-decoration: none;
}

.btn i {
  font-size: 35px;
}

.yellow {
  background: var(--gold);
  color: #050505;
  min-width: 365px;
}

.outline {
  background: rgba(0, 0, 0, 0.58);
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  min-width: 478px;
}

.contact-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  justify-content: center;
  margin-bottom: clamp(12px, 3.2vh, 33px);
  width: 100%;
}

.contact-row span {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 24px;
  font-weight: 600;
  gap: 14px;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.78);
}

.contact-row i {
  color: var(--gold);
  flex: 0 0 auto;
  font-size: 31px;
}

.social-row {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.35vh, 14px);
}

.social-row > span {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 21px;
  font-weight: 900;
  gap: 18px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.social-row > span::before,
.social-row > span::after {
  background: rgba(255, 255, 255, 0.34);
  content: "";
  height: 1px;
  width: 250px;
}

.social-links {
  display: flex;
  gap: 38px;
}

.social-links a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 35px;
  height: 44px;
  justify-content: center;
  text-decoration: none;
  width: 44px;
}

.social-links a:nth-child(1) {
  background: #1877f2;
  border-radius: 4px;
}

.social-links a:nth-child(2) {
  background: linear-gradient(135deg, #feda75, #fa7e1e 35%, #d62976 62%, #962fbf 82%, #4f5bd5);
  border-radius: 9px;
}

.social-links a:nth-child(3) {
  background: #050505;
  border-radius: 6px;
  color: #fff;
  text-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55;
}

@media (max-width: 1050px) {
  .logo-img {
    max-width: 430px;
    width: 58vw;
  }

  h1 {
    font-size: 104px;
  }

  .countries {
    font-size: 21px;
  }

  h2 {
    font-size: 36px;
  }

  .sub {
    font-size: 20px;
    margin-bottom: 26px;
  }

  .hours-card {
    width: 70%;
  }

  .hours-card strong {
    font-size: 30px;
  }

  .hours-card p {
    font-size: 20px;
  }

  .buttons {
    gap: 18px;
  }

  .btn {
    font-size: 23px;
  }

  .btn i {
    font-size: 30px;
  }

  .contact-row span {
    font-size: 19px;
  }

  .contact-row i {
    font-size: 26px;
  }

  .yellow,
  .outline {
    min-width: 0;
    width: min(43vw, 450px);
  }
}

@media (max-height: 860px) and (min-width: 761px) {
  .logo-img {
    max-width: 500px;
    width: 39vw;
  }

  h1 {
    font-size: 110px;
  }

  .countries {
    font-size: 20px;
  }

  h2 {
    font-size: 36px;
  }

  .sub {
    font-size: 19px;
    margin-bottom: 22px;
  }

  .hours-card {
    max-width: 620px;
    min-height: 78px;
    padding: 13px 26px;
  }

  .hours-icon {
    font-size: 42px;
    width: 46px;
  }

  .hours-card strong {
    font-size: 28px;
  }

  .hours-card p {
    font-size: 19px;
  }

  .btn {
    font-size: 23px;
    min-height: 62px;
    padding: 13px 28px;
  }

  .contact-row span {
    font-size: 18px;
  }

  .social-links a {
    font-size: 30px;
    height: 38px;
    width: 38px;
  }
}

@media (max-height: 700px) and (min-width: 761px) {
  .logo-img {
    max-width: 410px;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 92px;
  }

  .sub {
    margin-bottom: 18px;
  }

  .hours-card {
    margin-bottom: 14px;
  }

  .buttons {
    margin-bottom: 14px;
  }

  .contact-row {
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .hero {
    background-position: center bottom;
    padding: clamp(12px, 2.8vh, 24px) 16px clamp(10px, 2.5vh, 22px);
  }

  .logo-img {
    margin-bottom: clamp(10px, 2.6vh, 22px);
    max-width: 330px;
    width: 86vw;
  }

  h1 {
    font-size: 63px;
    margin-bottom: clamp(8px, 1.7vh, 18px);
  }

  .countries {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  h2 {
    font-size: 27px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .countries,
  h2,
  .sub {
    letter-spacing: 0.5px;
  }

  .sub {
    font-size: 16px;
    margin-bottom: 22px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hours-card {
    max-width: 560px;
    width: 100%;
  }

  .hours-card strong {
    font-size: 25px;
  }

  .hours-card p {
    font-size: 17px;
  }

  .hours-card p span {
    padding: 0 7px;
  }

  .hours-icon {
    font-size: 40px;
  }

  .buttons {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: clamp(12px, 3vh, 28px);
  }

  .btn {
    font-size: 20px;
  }

  .btn i {
    font-size: 27px;
  }

  .yellow,
  .outline {
    width: 100%;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(8px, 2vh, 16px);
    margin-bottom: clamp(10px, 2.8vh, 28px);
  }

  .contact-row span {
    font-size: 17px;
    text-align: left;
    width: 100%;
  }

  .contact-row i {
    font-size: 23px;
  }

  .social-row > span {
    font-size: 17px;
  }

  .social-links a {
    font-size: 30px;
  }

  .social-row > span::before,
  .social-row > span::after {
    width: 28vw;
  }
}

@media (max-width: 520px) {
  .logo-img {
    max-width: 250px;
  }

  h1 {
    font-size: 42px;
  }

  .countries {
    font-size: 11px;
  }

  h2 {
    font-size: 18px;
  }

  .sub {
    font-size: 11px;
  }

  .hours-card {
    gap: 14px;
    padding: 16px 18px;
  }

  .hours-card strong {
    font-size: 22px;
  }

  .hours-card p {
    font-size: 14px;
  }

  .hours-icon {
    font-size: 41px;
    width: 44px;
  }

  .hours-card p span {
    padding: 0 5px;
  }

  .btn {
    font-size: 15px;
    gap: 14px;
    min-height: 64px;
    padding: 14px 18px;
  }

  .contact-row span {
    font-size: 15px;
  }

  .social-row > span {
    font-size: 15px;
  }

  .social-links {
    gap: 24px;
  }
}

@media (max-width: 390px) {
  .logo-img {
    max-width: 230px;
  }

  h1 {
    font-size: 36px;
  }

  .countries {
    font-size: 10px;
  }

  h2 {
    font-size: 16px;
  }

  .sub {
    font-size: 10px;
  }

  .hours-card strong {
    font-size: 20px;
  }

  .hours-card p {
    font-size: 13px;
  }

  .btn {
    font-size: 15px;
  }

  .contact-row span {
    font-size: 14px;
  }
}
