/* Glacial Indifference */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Parisienne Regular */
@font-face {
  font-family: 'Parisienne Regular';
  src: url('fonts/Parisienne-Regular.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.container {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)), url('AdobeStock_323259293.jpg') center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  height: 100vh;
}

/* .left {
  width: 50%;
  position: relative;
  background: url('AdobeStock_323259293.jpg') center center/cover no-repeat;
  animation: zoomOut 2s ease-out forwards;
  display: flex;
  align-items: center;
  justify-content: center;
} */

@keyframes zoomOut {
  from {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
  }

  to {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.right {
  max-width: 55%;
  width: 100%;
}

.right h1 {
  color: #ffffff;
  font-family: 'Glacial Indifference';
  font-size: 2.5em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 85%;
}

.right h1 span {
  color: #8ac6d1;
}

.counter {
  font-family: 'League Spartan';
  font-size: 5.5em;
  margin: 30px 0;
  color: #ffffff;
}

.contact {
  text-align: center;
  font-size: 1.1em;
  color: #ffffff;
}

.contact h3 {
  font-family: 'Parisienne Regular';
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color .4s ease-in-out;
  -webkit-transition: color .4s ease-in-out;
  -moz-transition: color .4s ease-in-out;
  -ms-transition: color .4s ease-in-out;
  -o-transition: color .4s ease-in-out;
}

.contact a:hover {
  color: #8ac6d1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }

  .right {
    max-width: 80%;
    margin: 500px auto;
  }

  .counter {
    font-size: 4em;
  }

  .right h1 {
    font-size: 2em;
  }

  .contact h3 {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    padding: 30px 0;
  }

  .right {
    max-width: 95%;
    margin: 0 auto;
  }

  .counter {
    font-size: 3em;
    margin: 20px 0;
  }

  .right h1 {
    font-size: 1.5em;
  }

  .contact h3 {
    font-size: 1.5em;
  }

  .contact {
    font-size: 1em;
  }
}

@media (max-width: 480px) {

  body,
  html {
    overflow: hidden;
  }

  .container {
    background-position-x: 66%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    height: auto;
    min-height: 100vh;
    padding: 20px 0;
  }

  .logo {
    width: unset !important;
  }

  .right {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0px;
    margin-bottom: 50px;
  }

  .counter {
    font-size: 2em;
    margin: 15px 0;
  }

  .right h1 {
    font-size: 23px
  }

  .contact h3 {
    font-size: 30px
  }

  .contact {
    font-size: 0.95em;
  }

  .contact a {
    font-size: 18px;
  }

  .logo {
    width: 80px;
    max-width: 100%;
  }
}