/* FONTS */
.geologica-light {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}

.geologica-regular {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}

.geologica-medium {
  font-family: "Geologica", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

html {
  font-family: "Geologica", Arial, sans-serif;
  font-size: 16px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  background-color: #f8f8fc;
}

main {
  flex: 1;
  display: flex;
}

.button {
  border-radius: 4px;
}
.button_variant_primary {
  background-color: #7a7ef4;
  color: #fff;
}
.button_variant_primary:hover {
  background-color: #5457b8;
}
.button_size_l {
  padding: 13px 32px;
}
@media screen and (max-width: 767px) {
  .button_size_l {
    padding: 10.5px 24px;
  }
}
@media screen and (max-width: 579px) {
  .button_size_l {
    padding: 8px 16px;
  }
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 60px 24px 70px 24px;
}
@media screen and (max-width: 1439px) {
  .container {
    max-width: 1228px;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    max-width: 600px;
  }
}
@media screen and (max-width: 579px) {
  .container {
    max-width: 312px;
  }
}

.stub-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 62px;
}
@media screen and (max-width: 1023px) {
  .stub-block {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 579px) {
  .stub-block {
    gap: 32px;
  }
}

.info {
  max-width: 600px;
  width: 100%;
}
.info__title {
  margin-bottom: 16px;
  font-size: 1.875rem;
  line-height: 120%;
  color: #4b4f55;
}
@media screen and (max-width: 1023px) {
  .info__title {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .info__title {
    font-size: 1.5rem;
  }
}
.info__description {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 135%;
  color: #6f7277;
}
@media screen and (max-width: 1023px) {
  .info__description {
    line-height: 130%;
  }
}
@media screen and (max-width: 579px) {
  .info__description {
    margin-bottom: 16px;
  }
}
.info__caption {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 135%;
  color: #6f7277;
}
@media screen and (max-width: 1023px) {
  .info__caption {
    line-height: 130%;
  }
}
.info__btn-link {
  margin-bottom: 48px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .info__btn-link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 579px) {
  .info__btn-link {
    margin-bottom: 32px;
  }
}
.info__social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.info__social-icons a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stub-image {
  width: 564px;
  height: 564px;
  -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .stub-image {
    height: 460px;
  }
}
@media screen and (max-width: 579px) {
  .stub-image {
    width: 312px;
    height: 239px;
  }
}