/* FONT */
@font-face {
    font-family: 'Gotham Book';
    src: local('Gotham Book'), local('Gotham-Book');
    font-weight: 400;
}
@font-face {
    font-family: 'Gotham Medium';
    src: local('Gotham Medium'), local('Gotham-Medium');
    font-weight: 500;
}
@font-face {
    font-family: 'Gotham Bold';
    src: local('Gotham Bold'), local('Gotham-Bold');
    font-weight: 700;
}
@font-face {
    font-family: 'Gotham Black';
    src: local('Gotham Black'), local('Gotham-Black');
    font-weight: 900;
}
/* CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Gotham Book', 'Segoe UI', sans-serif;
    background: white;
    overflow-x: hidden;
}
.container {
    padding: 52px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 140px;
    position: fixed;
    background-image: url(images/BGImages.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.logo {
    height: 60px;
}
.left {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.content-text {
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding-left: 140px;
}
.title {
    font-family: 'Gotham Black', sans-serif;
    font-size: 100px;
    line-height: 100px;
    color: black;
    font-weight: 900;
}
.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: black;
}
.content-heading {
    font-family: 'Gotham Bold', sans-serif;
    font-size: 28px;
    font-weight: 700;
}
.content-subheading {
    font-family: 'Gotham Medium', sans-serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}
.content-body {
    font-family: 'Gotham Book', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}
.content-footer {
    font-family: 'Gotham Book', sans-serif;
    font-size: 11px;
    font-weight: 400;
}
.content-footer a {
    font-family: 'Gotham Bold', sans-serif;
    font-weight: 700;
    text-decoration: underline;
    color: black;
}
.product-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.product-card {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}
.product-card.aistock {
    background: #1d0df3;
}
.product-card.iconproject {
    background: #19074a;
}
.product-card.pxrem {
    background: black;
}
.product-logo {
    height: 52px;
}
.product-logo.aistock {
    width: 290px;
}
.product-logo.iconproject {
    width: 342px;
}
.product-logo.pxrem {
    width: 200px;
}
.product-logo img {
    width: 100%;
    height: 100%;
    display: block;
}
.product-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-title {
    font-family: 'Gotham Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
}
.product-description {
    font-family: 'Gotham Book', sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
.product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 44px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    font-family: 'Gotham Book', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}
.product-button:hover {
    background: rgba(255, 255, 255, 0.1);
}
.product-button img {
    width: 12px;
    height: 12px;
}
.footer {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.social-icons {
    display: flex;
    gap: 8px;
}
.social-icons img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.social-icons img:hover {
    opacity: 0.7;
}
.footer-text {
    font-family: 'Gotham Book', sans-serif;
    font-size: 12px;
    color: #404040;
}
.footer-text a {
    text-decoration: underline;
    color: #404040;
}
@media (max-width: 1258px), (max-width: 1200px){
.container {
    padding: 40px;
    gap: 80px;
}
.content-text {
    padding-left: 80px;
    gap: 40px;
}
.title {
    font-size: 80px;
    line-height: 80px;
}
.footer {
  gap: 20px;
}
.product-card {
    padding: 32px;
}
.product-logo.aistock {
  width: 212px;
  height: auto;
}
.product-text {
  gap: 12px;
}
.product-title {
  font-size: 18px;
}
.product-description {
  font-size: 12px;
  line-height: 18px;
}
.product-button {
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  font-size: 11px;
}
.product-logo.iconproject {
  width: 252px;
  height: auto;
}
.product-logo.pxrem {
  width: 160px;
  height: auto;
}
}
@media (max-width: 1025px), (max-width: 1020px){
.container {
    gap: 40px;
}
.content-text {
    padding-left: 52px;
    gap: 32px;
}
.title {
    font-size: 60px;
    line-height: 60px;
}
  .content {
  gap: 18px;
}
.content-heading {
  font-size: 24px;
}
.content-subheading {
  font-size: 14px;
  line-height: 20px;
}
.content-body {
  font-size: 11px;
  line-height: 14px;
}
.footer {
    gap: 12px;
}
.footer-text {
  font-size: 10px;
}
.product-card {
    padding: 24px;
}
.product-logo.aistock {
    width: 179px;
}
.product-text {
    gap: 8px;
}
.product-title {
    font-size: 16px;
}
.product-description {
    font-size: 10px;
    line-height: 14px;
}
.product-logo.iconproject {
    width: 211px;
}
.product-logo.pxrem {
    width: 124px;
}
.product-button {
    height: 32px;
    padding: 0 14px;
}
.social-icons img {
  width: 16px;
  height: 16px;
}
}
@media (max-width: 961px){
    .container {
    gap: 32px;
    padding: 32px;
  }
   .content-text {
    padding-left: 40px;
    gap: 24px;
  }
    .title {
    font-size: 46px;
    line-height: 46px;
  }
  .content {
    gap: 14px;
  }
}
@media (max-width: 768px){
      .content-text {
    padding-left: 0px;
  }
   .product-card {
    padding: 20px;
  }
   .product-logo.aistock {
    width: 145px;
  }
    .product-logo.iconproject {
    width: 171px;
  }
   .product-logo.pxrem {
    width: 100px;
  }
  .logo img {
    height: 48px;
  }
} 