:root {
  --font-family: "Raleway", sans-serif;
  --border-radius-main: 2.5rem;
  --border-radius-second: 1.875rem;
  --container-width: 112.5rem;
  --container-padding-inline: 2.5rem;
  --primary-bg-color: #FFFBF2;
  --second-bg-color: #DADFA5;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-orange-1: #C8733A;
  --color-green-1: #4A8B75;
  --color-green-2: #DADFA5;
  --color-green-3: #E3D97C;
  --color-grey-1: #FFFBF2;
  --color-blue-1: #1A4860;
  --education-offset-inline: 3rem;
  --education-info-content-height: 58rem;
  --education-info-offset-left: 7.5rem;
  --whom-item-height: 100vh;
  --whom-item-count: 3;
  --team-title-offset: 2rem;
  --team-title-circle: 7.875rem;
  --btn-border-radius: 1.875rem;
  --btn-border-color: #2a2a2a;
  --btn-bg-color: var(--color-orange-1);
  --link-hover: currentColor;
}

:focus:not(:focus-visible) {
  outline: 0;
}

:focus-visible {
  outline: 2px dashed var(--color-orange-1);
  outline-offset: 2px;
}

input:focus {
  outline: 0;
}

html {
  font-size: 16px;
  line-height: 1.25;
  font-family: var(--font-family);
  letter-spacing: 0;
  font-feature-settings: "pnum" on, "lnum" on;
}

body {
  background-color: var(--primary-bg-color);
}

body.single-office-booking,
body.single-specialists {
  background-color: var(--second-bg-color);
}

a {
  display: inline-block;
  transition: all 0.24s ease;
}

.font-one {
  font-family: var(--font-family);
}

.font-two {
  font-family: var(--second-family);
}

.overflow-h {
  overflow: hidden;
  max-height: 100%;
  height: 100%;
}

.main {
  padding-top: 8.5rem;
}

.main-container {
  position: relative;
  max-width: calc(var(--container-width) + var(--container-padding-inline) * 2);
  padding: 0 var(--container-padding-inline);
  margin: 0 auto;
}

.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 100%;
  color: var(--color-green-1);
}

.logo {
  width: 100%;
  object-fit: cover;
}

.primary-bg {
  background: var(--primary-bg-color);
}

.text-color-1 {
  color: var(--color-green-1);
}

.text-color-2 {
  color: var(--color-blue-1);
}

.text-color-3 {
  color: var(--color-white);
}

.text-color-4 {
  color: var(--color-orange-1);
}

.border-color-main {
  border-color: var(--color-blue-1);
}

.border-3 {
  border-width: 0.1875rem;
}

.border-2 {
  border-width: 0.125rem;
}

.rounded-main {
  border-radius: var(--border-radius-main);
}

.rounded-second {
  border-radius: var(--border-radius-second);
}

/*Media*/
@media (min-width: 992px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  html {
    font-size: 1.6129032258vw;
  }
}
@media (min-width: 320px) and (max-width: 500px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 992px) {
  :root {
    --border-radius-main: 1.125rem;
    --btn-border-radius: 1.25rem;
    --education-offset-inline: 1.5625rem;
    --education-info-offset-left: 3.875rem;
    --team-title-circle: 4.125rem;
    --team-title-offset: 1.25rem;
  }
  .main {
    padding-top: 5.375rem;
  }
  .title {
    font-size: 4.8125rem;
  }
  .border-3 {
    border-width: 0.125rem;
  }
}
@media (max-width: 600px) {
  :root {
    --border-radius-main: .9375rem;
    --container-padding-inline: 1rem;
    --education-info-content-height: 20rem;
    --education-info-offset-left: 1.625rem;
    --whom-item-height: 94vh;
    --team-title-offset: .625rem;
    --team-title-circle: 1.875rem;
  }
  .main {
    padding-top: 2.875rem;
  }
  .title {
    font-size: 1.875rem;
  }
}
@media (max-width: 320px) {
  body {
    min-width: 320px;
    overflow-x: auto;
  }
}
/*Buttons Style Start*/
button {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.75rem 1.5625rem;
  background: var(--btn-bg-color);
  border-radius: var(--btn-border-radius);
  border: 1px solid var(--color-blue-1);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
}

.btn-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary-bg-color);
  color: var(--color-blue-1);
  border-radius: 50%;
  border: 1px solid var(--color-blue-1);
}

.btn-icon svg {
  width: 0.9375rem;
  height: 1rem;
}

.btn-promo {
  margin-top: 0.75rem;
}

.btn-seach {
  width: 100%;
  max-width: 100%;
}

.btn-consultation {
  margin-top: 3.125rem;
}

.btn-revies {
  margin-top: 3.125rem;
}

/*Media*/
@media (max-width: 992px) {
  .btn {
    gap: 0.625rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .btn {
    gap: 0.625rem;
    font-size: min(1rem, 16px);
    line-height: 1.25;
    padding: 0.25rem 0.75rem;
    min-height: 0.1875rem;
  }
  .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  .btn-icon svg {
    width: 0.625rem;
    height: auto;
  }
}
/*Buttons Style End*/
/*Header Start*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 4.25rem 0 0.5rem;
}

.header-nav {
  gap: 1.625rem;
}

.header-logo {
  width: 4.9375rem;
  height: 3.75rem;
}

.header-menu {
  background: var(--primary-bg-color);
  padding: 0.5rem 1.625rem;
  border-radius: 6.25rem;
  border: 0.125rem solid var(--color-green-1);
}

.header-menu__list {
  gap: 0.375rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-green-1);
}

.header-menu__list li a {
  padding: 0.625rem;
}

.header-action {
  gap: 1.25rem;
}

.btn-header-light {
  border: 0.125rem solid var(--color-green-1);
  background: var(--primary-bg-color);
  color: var(--color-green-1);
}

.btn-header-dark {
  padding-block: 0.625rem;
}

.header-hamburger {
  display: none;
  color: var(--color-green-1);
}

.header__mobile {
  position: absolute;
  top: 2.875rem;
  right: var(--container-padding-inline);
  background: var(--color-green-1);
  color: var(--color-grey-1);
}

.header__mobile {
  overflow: hidden;
  max-width: 0;
  max-height: 0;
  transition: max-width 0.4s ease, max-height 0.4s ease;
}

.header__mobile_nav {
  padding: 1rem 1.875rem;
}

.header__mobile_menu {
  opacity: 0;
}

.header__mobile.open .header__mobile_menu {
  animation: showMenu 0.3s ease forwards;
  animation-delay: 0.3s;
}

.header__mobile_menu li {
  font-size: 1rem;
  line-height: 1.67;
  border-top: 1px solid;
  padding-block: 0.6875rem;
}

.header__mobile_menu li:first-child {
  border-top: none;
}

/*Media*/
@media (max-width: 992px) {
  .header {
    padding-top: 2rem;
  }
  .header-logo {
    width: 3.75rem;
    height: 2.875rem;
  }
  .header-menu {
    display: none;
  }
  .btn-header-light {
    display: none;
  }
  .btn-header-dark {
    padding-block: 0.5rem;
  }
  .header-hamburger {
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
  }
  .header-hamburger svg {
    width: 2rem;
    height: auto;
  }
}
@media (max-width: 600px) {
  .header {
    padding: 0.5rem 0;
  }
  .header-logo {
    width: 2.5rem;
    height: 1.875rem;
  }
  .header-menu {
    display: none;
  }
  .btn-header-light {
    display: none;
  }
  .btn-header-dark {
    padding: 4px 0.75rem 4px;
  }
  .header-hamburger {
    width: 1.875rem;
    height: 1.875rem;
  }
  .header-hamburger svg {
    width: 1.25rem;
    height: auto;
  }
  .header__mobile_nav {
    padding: 0.75rem 1.125rem;
  }
  .header__mobile_menu li {
    font-size: 0.75rem;
  }
}
@keyframes showMenu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*Header End*/
/*Breadcrumbs Start*/
.page-nav {
  margin: 2.5rem 0 1.875rem;
}

.breadcrumbs__item {
  line-height: 1.19;
  color: var(--breadcrumbs-color);
  padding-right: 0.75rem;
  margin-right: 0.5rem;
}

.breadcrumbs__item a {
  position: relative;
  transition: 0.3s ease color 0s;
}

.breadcrumbs__item a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.75rem;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--breadcrumbs-color);
}

/*Breadcrumbs End*/
/*Promo Start*/
.promo {
  padding-top: 7.5rem;
}

.promo-subtitle {
  font-size: 1.875rem;
  max-width: 52.5rem;
  margin-top: 3.625rem;
}

.education {
  margin: 8.75rem 0;
}

.education-wrapper {
  gap: 2rem;
  will-change: transform;
}

.education__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 100%;
  width: 37.0625rem;
  flex-shrink: 0;
  background: var(--education-item-bg);
}

.education__item-head {
  padding: 3rem var(--education-offset-inline) 4rem;
}

.education__item-info {
  margin-bottom: 3.125rem;
}

.education__item-inner {
  gap: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.education__item-start {
  padding: 0.375rem 1rem;
}

.education__item-duration {
  padding: 0.375rem 1rem;
}

.education__item-icon {
  padding: 0.3125rem;
  border-radius: 50%;
  color: var(--education-item-icon, var(--color-green-1));
}

.education__item-icon svg {
  width: 2rem;
  height: 2rem;
}

.education__item-name {
  font-size: 3.125rem;
  color: var(--education-item-txt, var(--color-green-1));
}

.education__item-desc {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--education-item-txt, var(--color-green-1));
  margin-top: 1.25rem;
  max-width: 20.625rem;
}

.education__item-img {
  aspect-ratio: 5.93/4.9;
}

.education__item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 1px);
  border-top-left-radius: var(--border-radius-main);
  border-top-right-radius: var(--border-radius-main);
  border: 1px solid var(--color-green-1);
}

.education__item-img img {
  border-top-left-radius: var(--border-radius-main);
  border-top-right-radius: var(--border-radius-main);
}

.btn-education {
  position: absolute;
  left: var(--education-offset-inline);
  bottom: 3rem;
}

/*Media*/
@media (max-width: 992px) {
  .promo {
    padding-top: 5rem;
  }
  .promo-subtitle {
    font-size: 1.25rem;
    margin-top: 1.875rem;
    max-width: 35rem;
  }
  .education {
    margin: 4.375rem 0;
  }
  .education-wrapper {
    gap: 1.125rem;
  }
  .education__item {
    max-width: 25rem;
  }
  .education__item-head {
    padding-block: 1.5625rem 2.25rem;
  }
  .education__item-info {
    margin-bottom: 2rem;
  }
  .education__item-inner {
    gap: 0.5rem;
    font-size: 1rem;
  }
  .education__item-start,
  .education__item-duration {
    padding: 0.25rem 0.625rem;
  }
  .education__item-icon svg {
    width: 1.375rem;
    height: 1.375rem;
  }
  .education__item-name {
    font-size: 1.875rem;
  }
  .education__item-desc {
    font-size: 1rem;
    margin-top: 0.75rem;
    max-width: 17rem;
  }
  .btn-education {
    bottom: 1.75rem;
  }
  .btn-education .btn-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .btn-education .btn-icon svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (max-width: 600px) {
  .promo {
    padding-top: 2.6875rem;
  }
  .promo-title {
    max-width: 95%;
  }
  .promo-subtitle {
    font-size: 0.75rem;
    max-width: 88%;
    margin-top: 1.125rem;
  }
  .education {
    margin: 1.875rem 0;
  }
  .education-wrapper {
    gap: 0.5rem;
  }
  .education__item {
    width: 17.375rem;
    border-width: 1px;
  }
  .education__item-head {
    padding: 0.75rem;
  }
  .education__item-info {
    margin-bottom: 1.25rem;
  }
  .education__item-inner {
    gap: 0.3125rem;
    font-size: 0.75rem;
    line-height: 1;
  }
  .education__item-start,
  .education__item-duration {
    padding: 0.3125rem 0.5rem;
  }
  .education__item-icon {
    display: none;
  }
  .education__item-name {
    font-size: 1.25rem;
  }
  .education__item-desc {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    max-width: 80%;
  }
  .education__item-img {
    aspect-ratio: 5.93/6;
  }
  .btn-education {
    padding: 0;
    background: transparent;
    border: none;
    left: auto;
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .btn-education .btn-txt {
    display: none;
  }
  .btn-education .btn-icon {
    width: 2rem;
    height: 2rem;
  }
  .btn-education .btn-icon svg {
    width: 0.9375rem;
    height: 1rem;
  }
}
/*Promo End*/
/*Promo Education Start*/
.promoEducation-wrapper {
  max-width: 108.75rem;
}

.promoEducation-desc {
  gap: 1.875rem;
  margin-block: 5.875rem;
}

.promoEducation-txt {
  font-size: 1.5625rem;
  line-height: 1.42;
  max-width: 44.125rem;
}

.promoEducation-img {
  aspect-ratio: 19.2/7.9;
}

.promoEducation-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.3125rem solid var(--color-blue-1);
  border-radius: var(--border-radius-main);
}

/*Media*/
@media (max-width: 992px) {
  .promoEducation-desc {
    gap: 1.5rem;
    margin-block: 3.125rem;
  }
  .promoEducation-txt {
    font-size: 1.125rem;
    max-width: 100%;
  }
  .promoEducation-txt:nth-child(2n) {
    display: flex;
    justify-content: flex-end;
  }
  .promoEducation-txt > div {
    max-width: 63%;
  }
  .promoEducation-img::before {
    border-width: 0.1875rem;
  }
}
@media (max-width: 600px) {
  .promoEducation-desc {
    gap: 2rem;
    margin-block: 2rem 2.6875rem;
  }
  .promoEducation-txt {
    font-size: 0.75rem;
    line-height: 1.37;
  }
  .promoEducation-txt > div {
    max-width: 79%;
  }
  .promoEducation-img::before {
    border-width: 1px;
  }
  .promoEducation-img {
    aspect-ratio: 3.4/2.1;
    margin-inline: var(--container-padding-inline);
  }
}
/*Promo Education End*/
/*About Start*/
.about {
  margin: 11.25rem 0;
}

.about-wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 5.625rem;
}

.about__item {
  padding-top: 4.625rem;
  border-top: 0.75rem solid var(--color-orange-1);
}

.about__item-name {
  font-size: 3.125rem;
  line-height: 1.16;
}

.about__item-count {
  display: inline-block;
  font-size: 3.75rem;
  margin-bottom: 1.25rem;
}

.about__item-desc {
  font-size: 1.5625rem;
  line-height: 1.42;
  margin-top: 1.5rem;
}

/*Media*/
@media (max-width: 992px) {
  .about {
    margin: 6.25rem 0;
  }
  .about-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 5rem;
  }
  .about__item {
    padding-top: 2.5rem;
    border-top-width: 0.375rem;
  }
  .about__item-name {
    font-size: 1.75rem;
  }
  .about__item-count {
    font-size: 2.125rem;
    margin-bottom: 0.5rem;
  }
  .about__item-desc {
    font-size: 1.125rem;
    margin-top: 0.875rem;
  }
}
@media (max-width: 600px) {
  .about {
    margin: 4.6875rem 0;
  }
  .about-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.625rem;
  }
  .about__item {
    padding-top: 0.75rem;
    border-top-width: 0.1875rem;
  }
  .about__item-name {
    font-size: 1.125rem;
  }
  .about__item-count {
    font-size: 1.5625rem;
    margin-bottom: 0.5rem;
  }
  .about__item-desc {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 0.75rem;
  }
}
/*About End*/
/*Whom Start*/
.whom {
  margin-top: 11.25rem;
}

.whom__item:nth-child(1) {
  height: calc(var(--whom-item-height) * var(--whom-item-count));
}

.whom__item:nth-child(2) {
  margin-top: calc(-1 * var(--whom-item-height) * (var(--whom-item-count) - 1));
  height: calc(var(--whom-item-height) * (var(--whom-item-count) - 1));
}

.whom__item:nth-child(3) {
  margin-top: calc(-1 * var(--whom-item-height) * (var(--whom-item-count) - 2));
  height: calc(var(--whom-item-height) * (var(--whom-item-count) - 2));
}

.whom__item-inner {
  top: 2px;
  position: sticky;
  height: var(--whom-item-height);
}

.whom__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.whom__item-img img {
  border-color: var(--color-black);
}

.whom__item-txt {
  z-index: 1;
  margin-bottom: 7rem;
}

.whom__item-title {
  gap: 1.5rem;
  color: var(--color-grey-1);
}

.whom__item-title-icon {
  margin-top: 0.75rem;
}

.whom__item-title-icon svg {
  width: 8.125rem;
  height: 8.125rem;
}

.whom__item-list {
  gap: 1rem;
  margin-top: 2.75rem;
  padding-left: 9.625rem;
}

.whom__item-list li {
  font-size: 1.25rem;
  padding: 0.375rem 1rem;
}

/*Media*/
@media (max-width: 992px) {
  .whom {
    margin-top: 6.25rem;
  }
  .whom__item-txt {
    margin-bottom: 3.75rem;
  }
  .whom__item-title {
    gap: 0.75rem;
  }
  .whom__item-title-icon {
    margin-top: 0.375rem;
  }
  .whom__item-title-icon svg {
    width: 4.125rem;
    height: 4.125rem;
  }
  .whom__item-list {
    gap: 0.625rem;
    margin-top: 1.375rem;
    padding-left: 5rem;
  }
  .whom__item-list li {
    font-size: 1rem;
    padding: 0.25rem 0.75rem;
  }
}
@media (max-width: 600px) {
  .whom {
    margin-top: 2.5rem;
  }
  .whom__item-img img {
    border: none;
  }
  .whom__item-txt {
    margin-bottom: 3rem;
  }
  .whom__item-title {
    gap: 0.75rem;
    color: var(--color-grey-1);
  }
  .whom__item-title-icon {
    margin-top: -0.25rem;
  }
  .whom__item-title-icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
  .whom__item-list {
    display: none;
  }
  .whom__item-list li {
    font-size: 0.75rem;
  }
}
/*Whom End*/
/*Team Start*/
.team {
  padding: 13.5rem 0;
  background: var(--color-green-2);
  border-color: var(--color-blue-1);
  margin-top: -0.125rem;
}

.team-title {
  color: var(--color-blue-1);
  max-width: 105.25rem;
}

.team-title > * {
  width: fit-content;
}

.team-title span:nth-child(2) {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-left: 11rem;
}

.team-title span:nth-child(2) svg {
  width: 8rem;
  height: 8.125rem;
  transition: transform 1s linear;
}

.team-title.anim span:nth-child(2) svg {
  transform: rotate(180deg);
}

.team-title span:nth-child(3) {
  margin-left: 27rem;
}

.team-title span:nth-child(4) {
  position: relative;
  z-index: 1;
  margin-left: 7rem;
}

.team-title span:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: calc(-1 * var(--team-title-offset));
  width: var(--team-title-circle);
  height: var(--team-title-circle);
  border-radius: 6.25rem;
  border: 1px solid var(--color-blue-1);
  background: var(--color-green-3);
  z-index: -1;
  transition: width 1s linear;
}

.team-title.anim span:nth-child(4)::after {
  width: calc(100% + var(--team-title-offset) * 2);
}

.team-wrapper {
  margin-top: 14.75rem;
}

.team__item {
  width: 33.3333333333%;
  aspect-ratio: 1;
  cursor: pointer;
}

.team__item._empty {
  width: 0.125rem;
}

.team__item-inner {
  width: 33.125rem;
  height: 33.125rem;
  color: var(--color-white);
}

.team__item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0.3125rem solid var(--color-green-1);
  background: var(--color-green-1);
  transition: all 0.5s linear;
  will-change: transform;
}

.team__item-img img {
  transition: all 0.5s linear;
}

.team__item:hover .team__item-img {
  width: 117%;
  height: 117%;
}

.team__item:hover .team__item-img img {
  opacity: 0;
}

.team__item-txt {
  gap: 1.25rem;
  max-width: 20.5rem;
  min-height: 21.25rem;
  font-size: 1.5625rem;
}

.team__item-desc {
  opacity: 0;
  transition: opacity 0.5s linear;
}

.team__item-icon {
  display: none;
  color: var(--color-blue-1);
  border-radius: 50%;
  border: 1px solid;
  background: var(--color-white);
}

.team__item:hover .team__item-desc {
  opacity: 1;
}

.team__item-name {
  margin-inline: auto;
}

/*Media*/
@media (max-width: 992px) {
  .team {
    padding: 6.875rem 0;
  }
  .team-title span:nth-child(2) {
    gap: 0.375rem;
    margin-left: 5.625rem;
  }
  .team-title span:nth-child(2) svg {
    width: 4.125rem;
    height: 4.125rem;
  }
  .team-title span:nth-child(3) {
    margin-left: 14rem;
  }
  .team-title span:nth-child(4) {
    margin-left: 3.625rem;
  }
  .team-title span:nth-child(4)::after {
    top: 0.625rem;
  }
  .team-wrapper {
    margin-top: 7.5rem;
  }
  .team__item {
    width: 50%;
  }
  .team__item-inner {
    width: 23.75rem;
    height: 23.75rem;
  }
  .team__item-img {
    border-width: 0.1875rem;
  }
  .team__item-txt {
    font-size: 1.125rem;
    width: 16.25rem;
    min-height: 17.25rem;
  }
}
@media (max-width: 600px) {
  .team {
    padding: 1.75rem 0;
    margin-top: 2.5rem;
    border-width: 1px;
  }
  .team-wrapper {
    margin-top: 1.5rem;
  }
  .team__item {
    width: 50%;
  }
  .team__item._empty {
    width: 0;
  }
  .team__item-inner {
    width: 84.4%;
    height: 84.4%;
  }
  .team__item-txt {
    justify-content: flex-end;
    font-size: 0.75rem;
    min-height: 100%;
    height: 100%;
    max-width: 8.125rem;
  }
  .team__item-name {
    max-width: 6.25rem;
    margin-bottom: 1.375rem;
  }
  .team__item-desc {
    display: none;
    line-height: 1.08;
  }
  .team__item-icon {
    display: flex;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.625rem;
  }
  .team__item-icon svg {
    width: 0.625rem;
    height: 0.5rem;
  }
  .team__item-img {
    border: none;
  }
  .team__item:hover .team__item-txt {
    justify-content: center;
  }
  .team__item:hover .team__item-name {
    display: none;
  }
  .team__item:hover .team__item-desc {
    display: block;
  }
  .team__item:hover .team__item-img {
    width: 124%;
    height: 124%;
  }
  .team-title span:nth-child(2) {
    gap: 0.25rem;
    margin-left: 1.875rem;
  }
  .team-title span:nth-child(2) svg {
    width: 1.875rem;
    height: 1.875rem;
  }
  .team-title span:nth-child(3) {
    margin-left: 6.25rem;
  }
  .team-title span:nth-child(4) {
    margin-left: 1.875rem;
  }
  .team-title span:nth-child(4)::after {
    top: 0.125rem;
    left: -0.625rem;
  }
}
/*Team End*/
/*Block Info Start*/
.blockInfo__item {
  padding: 3.625rem 5rem 6.25rem 3.875rem;
  counter-increment: list 1;
  margin-top: -5rem;
  background: var(--primary-bg-color);
}

.blockInfo__item {
  padding-bottom: 10.9375rem;
}

.blockInfo__item:first-child {
  margin-top: 0;
}

.blockInfo__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.3125rem solid;
  border-radius: var(--border-radius-main);
  pointer-events: none;
}

.blockInfo__item-head {
  color: currentColor;
  padding-left: var(--education-info-offset-left);
}

.blockInfo__item-head::before {
  content: "(" counter(list) ")";
  position: absolute;
  top: 0.75rem;
  left: 0;
  font-size: 3.75rem;
  line-height: 1.16;
}

.blockInfo__item-content {
  font-size: 1.875rem;
  line-height: 1.38;
  margin-left: var(--education-info-offset-left);
}

.blockInfo__item-content > div {
  margin-top: 4.375rem;
}

.blockInfo__item-content p {
  margin-top: 3.125rem;
}

/*Media*/
@media (max-width: 992px) {
  .blockInfo__item {
    padding: 1.875rem 2.625rem 6.25rem 2rem;
    margin-top: -4rem;
  }
  .blockInfo__item::before {
    border: 0.1875rem solid;
  }
  .blockInfo__item-head::before {
    top: 0.375rem;
    font-size: 2rem;
  }
  .blockInfo__item-content {
    font-size: 1.25rem;
  }
  .blockInfo__item-content > div {
    margin-top: 2.25rem;
  }
  .educationInfo__item-content-desc {
    max-width: 500px;
  }
  .blockInfo__item-content p {
    margin-top: 1.5rem;
  }
}
@media (max-width: 600px) {
  .blockInfo__item {
    padding: 1.375rem 0.9375rem 2.5rem;
    margin-top: -1.75rem;
  }
  .blockInfo__item::before {
    border-width: 2px;
  }
  .blockInfo__item-head {
    font-size: 1.5625rem;
  }
  .blockInfo__item-head::before {
    top: 0.125rem;
    font-size: 1rem;
  }
  .blockInfo__item-content {
    font-size: 0.75rem;
  }
  .blockInfo__item-content > div {
    margin-top: 1.625rem;
    max-width: 96%;
  }
  .blockInfo__item-content p {
    margin-top: 1rem;
  }
}
/*Block Info End*/
/*Education Info Start*/
.educationInfo {
  margin-top: 8.75rem;
}

.educationInfo-wrapper {
  counter-reset: list 0;
}

.educationInfo__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.educationInfo__item-content-desc {
  max-width: 57.125rem;
}

.educationInfo__item-content-desc a {
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.educationInfo__item:last-child .educationInfo__item-content {
  max-height: none;
}

.educationInfo__item-team {
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}

.educationInfo__persone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.3125rem solid;
  border-radius: var(--border-radius-main);
}

.educationInfo__persone-txt {
  width: 73%;
  margin-top: 2.25rem;
  margin-bottom: 1.875rem;
}

.educationInfo__persone-img {
  aspect-ratio: 7.2/4.7;
}

.educationInfo__persone-img img {
  border-bottom-left-radius: var(--border-radius-main);
  border-bottom-right-radius: var(--border-radius-main);
}

.educationInfo__persone p {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0.625rem;
}

.btn-persone {
  position: absolute;
  top: 2.125rem;
  right: 2.125rem;
}

/*Media*/
@media (max-width: 992px) {
  .educationInfo__item-team {
    gap: 2rem;
  }
  .educationInfo__persone::before {
    border-width: 0.1875rem;
  }
  .btn-persone {
    top: 1.125rem;
    right: 1.125rem;
  }
  .educationInfo__persone p {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}
@media (max-width: 600px) {
  .educationInfo {
    margin-top: 2.6875rem;
  }
  .educationInfo .main-container {
    padding: 0;
  }
  .educationInfo__item-content {
    transition: max-height 0.5s ease-out;
  }
  .educationInfo__persone::before {
    border-width: 2px;
  }
  .educationInfo__item-team {
    gap: 0.25rem;
  }
  .educationInfo__persone-img {
    aspect-ratio: 1.4/1.1;
  }
  .educationInfo__persone-txt {
    width: auto;
    margin: 0.5rem 0.75rem 0.75rem;
  }
  .educationInfo__persone p {
    font-size: 0.75rem;
    line-height: 1.08;
    margin-top: 0.25rem;
  }
  .btn-persone {
    top: 10px;
    right: 10px;
    padding: 0;
    background: transparent;
    border: none;
  }
  .btn-persone .btn-txt {
    display: none;
  }
  .btn-persone .btn-icon {
    color: var(--color-orange-1);
    border-color: currentColor;
  }
}
/*Education Info End*/
/*Action Block Start*/
.actionBlock.layout-2 {
  margin: 11.25rem 0;
}

.actionBlock {
  margin: 2.125rem 0;
}

.actionBlock-wrapper {
  grid-template-columns: 65.25rem 1fr;
  gap: 1.25rem;
}

.actionBlock__item.item-1 {
  padding: 6.5625rem 3.875rem;
  background: var(--primary-bg-color);
  border: 0.3125rem solid var(--color-orange-1);
}

.actionBlock.layout-2 .actionBlock__item.item-1 {
  background: var(--color-green-1);
  border-color: var(--color-green-1);
}

.btn-actionBlock {
  width: fit-content;
}

.actionBlock.layout-2 .btn-actionBlock {
  color: var(--color-green-1);
  background: var(--color-grey-1);
  border-color: var(--color-green-1);
}

.actionBlock.layout-2 .btn-actionBlock .btn-icon {
  background: var(--color-green-1);
  color: var(--color-white);
  border: 1px solid var(--color-green-1);
}

.actionBlock-title {
  font-size: 6.25rem;
  line-height: 1;
  margin-top: 2.125rem;
}

.actionBlock__item-img {
  aspect-ratio: 7.4/7.9;
}

/*Media*/
@media (max-width: 992px) {
  .actionBlock {
    margin: 1.25rem 0;
  }
  .actionBlock.layout-2 {
    margin: 6.25rem 0;
  }
  .actionBlock-wrapper {
    grid-template-columns: 33.75rem 1fr;
    gap: 0.75rem;
  }
  .actionBlock__item.item-1 {
    padding: 3.375rem 2rem;
    border-width: 0.1875rem;
  }
  .actionBlock.layout-2 .actionBlock__item.item-1 {
    padding: 3.375rem 2rem;
  }
  .actionBlock-title {
    font-size: 3.25rem;
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .actionBlock {
    margin: 1.875rem 0 0;
  }
  .actionBlock.layout-2 {
    margin: 2.6875rem 0;
  }
  .actionBlock-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .actionBlock__item.item-1 {
    padding: 1.125rem;
    /* aspect-ratio: 3.4/2.2; */
    min-height: calc( 100vw * .59 );
    border-width: 1px;
  }
  .actionBlock.layout-2 .actionBlock__item.item-1 {
    border-color: var(--color-blue-1);
    padding: 1.125rem;
  }
  .actionBlock__item.item-1 > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .actionBlock__item-btn-box {
    justify-content: flex-end;
  }
  .actionBlock.layout-2 .btn-actionBlock {
    color: var(--color-blue-1);
    border-color: var(--color-blue-1);
  }
  .actionBlock.layout-2 .btn-actionBlock .btn-icon {
    color: var(--color-blue-1);
    border-color: var(--color-blue-1);
    background: var(--color-grey-1);
  }
  .actionBlock-title {
    font-size: 1.875rem;
  }
  .actionBlock.layout-1 .actionBlock__item.item-2 {
    max-width: 58%;
    margin-left: auto;
  }
  .actionBlock.layout-1 .actionBlock__item-img {
    aspect-ratio: 2/2.4;
  }
  .actionBlock.layout-2 .actionBlock__item-img {
    aspect-ratio: 3.4/2.2;
  }
}
/*Action Block End*/
/*Promo Persone Start*/
.promoPersone {
  margin-top: 2.125rem;
}

.promoPersone-wrapper {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.promoPersone__item.item-1 {
  padding: 6.25rem 3.875rem 5rem;
  background: var(--primary-bg-color);
  border: 0.3125rem solid var(--color-orange-1);
}

.btn-promoPersone {
  width: fit-content;
}

.promoPersone-title {
  font-size: 6.25rem;
  line-height: 1;
  margin-top: 2.125rem;
}

.promoPersone-description {
  font-size: 1.875rem;
  line-height: 1.43;
  margin-top: 2.125rem;
}

.promoPersone-description a {
  text-decoration: underline;
  text-underline-offset: .125rem;
}

.promoPersone__item-img {
  aspect-ratio: 8.9/7.9;
}

.promoPersone__item-img img {
  object-position: top;
}

/*Media*/
@media (max-width: 992px) {
  .promoPersone-wrapper {
    gap: 0.75rem;
  }
  .promoPersone__item.item-1 {
    padding: 3.25rem 2rem 2.625rem;
    border-width: 0.1875rem;
  }
  .promoPersone-title {
    font-size: 3.25rem;
    margin-top: 1.25rem;
  }
  .promoPersone-description {
    font-size: 1.25rem;
    margin-top: 1.25rem;
  }
}
@media (max-width: 600px) {
  .promoPersone {
    margin-top: 1.875rem;
  }
  .promoPersone-wrapper {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .promoPersone__item.item-1 {
    padding: 1.0625rem 1.125rem;
    aspect-ratio: 3.4/2.2;
    border-width: 2px;
  }
  .promoPersone__item.item-1 > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .btn-promoPersone {
    width: fit-content;
  }
  .promoPersone-title {
    font-size: 1.875rem;
  }
  .promoPersone-description {
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }
  .promoPersone__item.item-2 {
    max-width: 67%;
    margin-left: auto;
  }
  .promoPersone__item-img {
    aspect-ratio: 2.26/3.2;
  }
}
/*Promo Persone End*/
/*About Persone Start*/
.aboutPersone {
  margin: 15rem 0;
}

.personeAbout-title {
  font-size: 6.25rem;
  line-height: 0.93;
  text-indent: var(--text-indent, 0);
}

.personeAbout-desc {
  margin-top: 4.375rem;
  max-width: 100.75rem;
  width: 100%;
}

.personeAbout__txt {
  font-size: 1.875rem;
  line-height: 1.12;
  max-width: 42.625rem;
}

/*Media*/
@media (max-width: 992px) {
  .aboutPersone {
    margin: 7.75rem 0;
  }
  .personeAbout-title {
    font-size: 3.125rem;
  }
  .personeAbout-desc {
    flex-wrap: wrap;
    gap: 2.25rem;
    margin-top: 3rem;
  }
  .personeAbout__txt {
    font-size: 1.25rem;
    max-width: 100%;
  }
  .personeAbout__txt > * {
    max-width: 65%;
  }
  .personeAbout__txt:nth-child(2n) > * {
    margin-inline: auto;
  }
}
@media (max-width: 600px) {
  .aboutPersone {
    margin: 3.875rem 0;
  }
  .personeAbout-title {
    font-size: 1.875rem;
    text-indent: 0;
  }
  .personeAbout-desc {
    margin-top: 1.875rem;
  }
  .personeAbout__txt {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .personeAbout__txt > * {
    max-width: 68%;
  }
}
/*About Persone End*/
/*Persone Info Start*/
.personeInfo {
  margin: 7rem 0;
  margin-bottom: -12.5rem;
}

.personeInfo__item-content-desc {
  max-width: 57.125rem;
}

/*Media*/
@media (max-width: 992px) {
  .personeInfo {
    margin: 3.75rem 0;
  }
}
@media (max-width: 600px) {
  .personeInfo {
    margin: 2.8125rem 0;
  }
  .personeInfo__item {
    padding-bottom: 3.5rem;
  }
}
/*Persone Info End*/
/*Cabinets Start*/
.cabinets {
  margin: 2.125rem 0;
}

.cabinets-wrapper {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4.375rem;
}

.cabinets__item {
  aspect-ratio: 8.9/7.94;
}

.cabinets__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.1875rem solid var(--color-blue-1);
  border-radius: var(--border-radius-main);
  z-index: 1;
}

.cabinets__item-img {
  position: absolute;
}

.cabinets__item-inner {
  padding: 1.75rem 1.875rem;
  z-index: 2;
}

.cabinets__item-specs {
  gap: 0.4375rem;
  flex-wrap: wrap;
}

.cabinets__item-spec {
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.5rem 1.0625rem;
  background: var(--color-grey-1);
  border: 1px solid;
  border-radius: 3.125rem;
}

.btn-cabinet {
  width: fit-content;
}

/*Media*/
@media (max-width: 992px) {
  .cabinets-wrapper {
    gap: 0.75rem;
    margin-top: 2.5rem;
  }
  .cabinets__item::before {
    border-width: 0.125rem;
  }
  .cabinets__item-inner {
    padding: 1rem;
  }
  .cabinets__item-specs {
    gap: 0.25rem;
  }
  .cabinets__item-spec {
    font-size: 1rem;
    padding: 0.25rem 0.625rem;
  }
}
@media (max-width: 600px) {
  .cabinets {
    margin: 3.125rem 0;
  }
  .cabinets-wrapper {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .cabinets__item::before {
    border-width: 1px;
  }
  .cabinets__item-inner {
    padding: 1rem;
  }
  .cabinets__item-specs {
    gap: 0.375rem;
  }
  .cabinets__item-spec {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  .btn-cabinet {
    font-size: 0.75rem;
  }
}
/*Cabinets End*/
/*Cabinet Info Start*/
.cabinetInfo {
  margin: 2.125rem 0;
}

.cabinetInfo-wrapper {
  grid-template-columns: 77.0625rem 1fr;
  gap: 3.4375rem;
}

.cabinetInfo__item-img {
  aspect-ratio: 12.3/9.7;
}

.cabinetInfo__item-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: .3125rem solid var(--color-blue-1);
  border-radius: var(--border-radius-main);
}

.cabinetInfo-decor {
  position: absolute;
  right: -1rem;
  bottom: 0;
}

.cabinetInfo-icon {
  position: absolute;
}

.cabinetInfo-icon svg {
  width: 25.8125rem;
  height: 25.8125rem;
}

.cabinetInfo-icon-txt {
  font-size: 2.875rem;
  line-height: 0.95;
  transform: rotate(-18deg);
}

.cabinetInfo-list {
  margin-top: 1.5625rem;
}

.cabinetInfo-listitem {
  font-size: 1.875rem;
  line-height: 0.95;
  counter-increment: list 1;
  padding-block: 0.8125rem;
  padding-left: 3.4375rem;
  margin-top: 1.8125rem;
  border-top: 0.1875rem solid var(--color-orange-1);
}

.cabinetInfo-listitem::before {
  content: "(" counter(list) ")";
  position: absolute;
  top: 0.9375rem;
  left: 0;
  font-size: 1.875rem;
  line-height: 0.95;
}

/*Media*/
@media (max-width: 992px) {
  .cabinetInfo {
    margin: 1.25rem 0;
  }
  .cabinetInfo-wrapper {
    grid-template-columns: 40rem 1fr;
    gap: 1.75rem;
  }
  .cabinetInfo-list {
    margin-top: 0.875rem;
  }
  .cabinetInfo-listitem {
    font-size: 1.125rem;
    padding-block: 0.625rem;
    padding-left: 2.25rem;
    border-top-width: 0.125rem;
    margin-top: 0.625rem;
  }
  .cabinetInfo-listitem::before {
    top: 0.625rem;
    font-size: 1.25rem;
  }
  .cabinetInfo__item-img::before {
    border-width: .1875rem;
  }
  .cabinetInfo-icon svg {
    width: 10rem;
    height: 10rem;
  }
  .cabinetInfo-icon-txt {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .cabinetInfo {
    margin: 1rem 0;
  }
  .cabinetInfo-wrapper {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
  .cabinetInfo-list {
    width: fit-content;
  }
  .cabinetInfo-listitem {
    font-size: 1rem;
    padding-block: 0.375rem;
    border-top-width: 2px;
    padding-left: 2.125rem;
    margin-top: 0.875rem;
  }
  .cabinetInfo-listitem::before {
    font-size: 1rem;
    top: 0.375rem;
  }
  .cabinetInfo-decor {
    top: -1rem;
    right: 50%;
    bottom: auto;
  }
  .cabinetInfo-icon svg {
    width: 10.625rem;
    height: 10.625rem;
  }
  .cabinetInfo-icon-txt {
    font-size: 1.25rem;
  }
  .cabinetInfo__item-img::before {
    border-width: 1px;
  }
}
/*Cabinet Info End*/
/*Reviews Start*/
.reviews {
  margin-top: 11.25rem;
  padding-bottom: 12.5rem;
}

.reviews-title {
  color: var(--color-orange-1);
}

.reviews-wrapper {
  margin-top: 9.375rem;
  gap: 1.625rem;
}

.reviews__item {
  flex-shrink: 0;
  max-width: 27.5rem;
  height: auto;
  color: var(--reviews-item-color);
}

.reviews__item-inner {
  height: 100%;
  padding: 1.875rem 2.625rem;
  background: var(--reviews-item-person-bg);
  transition: all 0.6s ease-out;
  border: 1px solid var(--color-blue-1);
}

.reviews__item:hover .reviews__item-inner {
  transform: translateY(8.75rem) rotate(19deg);
}

.reviews__item-icon svg {
  width: 3.75rem;
  height: 2.9375rem;
}

.reviews__item-content {
  font-size: 1.125rem;
  line-height: 1.45;
  margin-block: 1.75rem;
  max-width: 22.25rem;
}

.reviews__person {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--reviews-item-inner-bg);
  padding: 1.625rem 1.75rem;
  border: 1px solid var(--color-black);
}

.reviews__person-img {
  grid-template-columns: 4.5rem 1fr;
  gap: 0.875rem;
}

.reviews__person-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--color-blue-1);
}

.reviews__person-content {
  font-size: 1.5625rem;
}

/*Media*/
@media (max-width: 992px) {
  .reviews {
    margin-top: 6.25rem;
    padding-bottom: 9.75rem;
  }
  .reviews-wrapper {
    margin-top: 4.375rem;
  }
  .reviews__item {
    max-width: 21.25rem;
  }
  .reviews__item-inner {
    padding: 2rem;
  }
  .reviews__item:hover .reviews__item-inner {
    transform: translateY(7.5rem) rotate(19deg);
  }
  .reviews__item-icon svg {
    width: 2.5rem;
    height: 2rem;
  }
  .reviews__item-content {
    font-size: 1rem;
    margin-block: 1.25rem;
  }
  .reviews__person-content {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .reviews {
    margin-top: 2.5rem;
    padding-bottom: 4.5rem;
  }
  .reviews-wrapper {
    margin-top: 1.875rem;
    gap: 0.875rem;
  }
  .reviews__item {
    max-width: 14rem;
  }
  .reviews__item-inner {
    padding: 1.125rem 0.8125rem;
  }
  .reviews__item:hover .reviews__item-inner {
    transform: translateY(3.5rem) rotate(12deg);
  }
  .reviews__item-icon svg {
    width: 2.0625rem;
    height: 1.5625rem;
  }
  .reviews__item-content {
    font-size: 0.725rem;
    line-height: 1.33;
    margin-block: 1.125rem;
  }
  .reviews__person {
    padding: 0.75rem 0.9375rem;
  }
  .reviews__person-img {
    grid-template-columns: 1.875rem 1fr;
  }
  .reviews__person-content {
    font-size: 0.75rem;
  }
}
/*Reviews End*/
/*Footer Start*/
.footer {
  position: relative;
  padding: 7rem 0;
  background: var(--color-blue-1);
  color: var(--color-white);
  line-height: 1.16;
}

.footer-mt {
  margin-top: 10rem;
}

.social-list {
  gap: 2.5rem;
}

.social__item-link {
  gap: 1rem;
  font-size: 3.125rem;
  transition: color 0.1s linear;
}

.social__item-link:hover {
  color: var(--color-green-2);
}

.social__item-link svg {
  width: 3.625rem;
  height: 3.5625rem;
}

.footer__info {
  gap: 2.5rem;
  margin-top: 23.125rem;
}

.footer__info-item {
  font-size: 3.125rem;
  font-style: normal;
}

.footer-meta {
  font-size: 1.25rem;
  /* max-width: 26.5625rem; */
  max-width: 69rem;
  margin-top: 9.75rem;
}

.footer-meta p {
  line-height: 1.4;
  margin-top: .625rem;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: .25rem;
}

/*Media*/
@media (max-width: 992px) {
  .footer {
    padding: 3.75rem 0;
  }
  .footer-mt {
    margin-top: 5rem;
  }
  .social-list {
    gap: 1.25rem;
  }
  .social__item-link {
    gap: 0.5rem;
    font-size: 1.625rem;
  }
  .social__item-link svg {
    width: 1.875rem;
    height: 1.875rem;
  }
  .footer__info {
    gap: 1.25rem;
    margin-top: 10rem;
  }
  .footer__info-item {
    font-size: 1.625rem;
  }
  .footer-meta {
    font-size: 1rem;
    margin-top: 5rem;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 2.25rem 0;
  }
  .footer-mt {
    margin-top: 2.375rem;
  }
  .social-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .social__item-link {
    gap: 0.5rem;
    font-size: 1.125rem;
  }
  .social__item-link svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer__info {
    gap: 0.625rem;
    margin-top: 3.75rem;
  }
  .footer__info-item {
    font-size: 1.125rem;
  }
  .footer-meta {
    font-size: 0.75rem;
    margin-top: 1.875rem;
  }

  .footer-meta p {
    margin-top: .375rem;
  }
}
/*Footer End*/

/*Main Content Block Start*/

.main-content .section {
  margin-block: 3.125rem 5.625rem;
}

.main-content h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 9.375rem;
  line-height: 100%;
  color: var(--color-green-1);
  margin-block: 1.875rem 1.5rem;
  max-width: 62.5rem;
}

.main-content h2 {
  font-size: 3.125rem;
  font-weight: 600;
  margin-block: 1.25rem 1rem;
  max-width: 62.5rem;
}

.main-content h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-block: 1rem .75rem;
  max-width: 75rem;
}

.main-content :is(p, li) {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: .75rem;
  max-width: 75rem;
}

.main-content a {
  color: var(--color-green-1);
}

@media (max-width:992px) {
  .main-content h1 {
    font-size: 4.8125rem;
  }

  .main-content h2 {
    font-size: 2.5rem;
  }

  .main-content h3 {
    font-size: 1.875rem;
  }

  .main-content :is(p, li) {
    font-size: 1.125rem;
  }
}

@media (max-width:600px) {
  .main-content .section {
    margin-block: 2.5rem 4.375rem;
  }

  .main-content h1 {
    font-size: 1.875rem;
    margin-block: 1.25rem 1rem;
  }

  .main-content h2 {
    font-size: 1.25rem;
    margin-block: 1rem .75rem;
  }

  .main-content h3 {
    font-size: 1rem;
    margin-block: .75rem .5rem;
  }

  .main-content :is(p, li) {
    font-size: .75rem;
    margin-top: .375rem;
  }
}

/*Main Content Block End*/

/*Additional Styles Start*/
.img-border-1-blue {
  position: relative;
}
.img-border-1-blue::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--border-radius-main);
  /* border: 1px solid ; */
  border-style: solid;
  border-color: var(--color-blue-1);
}

.img-border-5-blue {
  position: relative;
}
.img-border-5-blue::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--border-radius-main);
  border: .3125rem solid var(--color-blue-1);
}

@media (max-width:992px) {
  .img-border-5-blue::before {
    border-width: .1875rem;
  }
}
@media (max-width:600px) {
  .img-border-5-blue::before {
    border-width: 1px;
  }
  .img-border-1-blue::before {
    border-width: 1px;
  }
}
/*Additional Styles End*/