html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: #82848f;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  background: #f7f7f7;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --gradient: linear-gradient(82deg, #175ca6 1.36%, #22ab69 100%);
  --Green: #22ab69;
  --Blue: #175ca6;
  --White: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

button.btn {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  flex: 1 0 0;
  border-radius: 8px;
  border: none;
  text-decoration: none;
}
button.btn svg {
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
button.btn span {
  color: var(--White, #fff);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
button.btn.green {
  background: var(--Green, #22ab69);
}
button.btn.blue {
  background: var(--Blue, #175ca6);
}
button.btn.black {
  background: var(--Black2, #323337);
}
button.btn.white {
  background: var(--White, #fff);
  color: var(--Black, #000);
  box-shadow: 0 4.501px 7.651px 0 rgba(0, 0, 0, 0.05);
}
button.btn.white span {
  color: var(--Black, #000);
}

section {
  max-width: 100%;
}

.page_wrapper {
  display: flex;
  justify-content: center;
  background: #f6f6f6;
}
@media (min-width: 570px) {
  .page_wrapper {
    padding-top: 40px;
  }
}
.page_wrapper main {
  width: 570px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 690px) {
  .page_wrapper main {
    width: 570px;
    margin: 0 auto;
  }
}

.top_info {
  margin-bottom: 16px;
}
.top_info .bg_block {
  display: flex;
  max-width: 100%;
  height: 181px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: var(--gradient, linear-gradient(82deg, #175ca6 1.36%, #22ab69 100%));
}
.top_info .action_photo {
  display: flex;
  max-width: 100%;
  padding: 0 10px;
  justify-content: center;
  align-items: flex-start;
  margin-top: -120px;
}
.top_info .action_photo .actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  flex: 1 0 0;
  align-self: stretch;
}
.top_info .action_photo .actions .inner {
  display: flex;
  padding-bottom: 6px;
  align-items: flex-end;
  gap: 10px;
  /* flex: 1 0 0; */
  align-self: stretch;
  flex-wrap: wrap;
}
.top_info .action_photo .actions .inner a * {
  cursor: pointer;
}
.top_info .action_photo .photo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
.top_info .action_photo .photo .inner_photo {
  max-width: 100%;
  width: 176px;
  height: 176px;
  position: relative;
}
@media (max-width: 250px) {
  .top_info .action_photo .photo .inner_photo {
    max-width: 176px;
    width: 100%;
  }
}
.top_info .action_photo .photo .inner_photo .bg_absolute {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  box-shadow: 0 4.501px 7.651px 0 rgba(0, 0, 0, 0.06);
}
@media (max-width: 250px) {
  .top_info .action_photo .photo .inner_photo .bg_absolute {
    display: none;
  }
}
.top_info .action_photo .photo .inner_photo .bg_absolute img {
  width: 100%;
  height: 100%;
  max-width: 175px;
  object-fit: contain;
}
.top_info .action_photo .photo .inner_photo .photo_holder {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.top_info .action_photo .photo .inner_photo .photo_holder img {
  width: 100%;
  height: 100%;
  max-width: 162px;
  object-fit: contain;
}

.name_profession {
  display: flex;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--White, #fff);
  box-shadow: 0 4.501px 7.651px 0 rgba(0, 0, 0, 0.02);
}
.name_profession .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  flex: 1 0 0;
  padding: 15px;
}
.name_profession .inner .name {
  color: var(--Blue, #175ca6);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  font-variant: all-small-caps;
}
.name_profession .inner .profession {
  color: var(--Blue, #175ca6);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.main_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.main_content .contact_details_element {
  display: flex;
  padding: 20px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-bottom: 1px solid #eaeaea;
}
.main_content .contact_details_element .icon {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.main_content .contact_details_element .contact_detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  flex: 1 0 0;
}
.main_content .contact_details_element .contact_detail .label {
  color: #929292;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.main_content .contact_details_element .contact_detail .link {
  color: var(--Black, #000);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.buttons {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
}
.buttons .inner {
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}
.buttons .inner a {
  width: 100%;
}
.buttons .inner a button {
  width: 100%;
  max-width: 100%;
}
.buttons .inner .email_holder {
  width: 100%;
  max-width: 100%;
}
.buttons .inner .email_holder .form_holder {
  max-width: 100%;
  position: relative;
  display: none;
}
.buttons .inner .email_holder .form_holder .input_block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.buttons .inner .email_holder .form_holder input {
  width: 100%;
  font: inherit;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
  outline: 0;
  background: var(--White, #fff);
  color: var(--Black, #000);
  box-shadow: 0 4.501px 7.651px 0 rgba(0, 0, 0, 0.05);
  height: 36px;
  padding: 0 15px;
  overflow: hidden;
  border-radius: 8px;
}
.buttons .inner .email_holder .form_holder .send {
  position: absolute;
  right: 5px;
  top: 0;
  background: transparent;
}/*# sourceMappingURL=style.css.map */