@font-face {
  font-family: "SentaSans";
  src: url("../fonts/SentaSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SentaSans";
  src: url("../fonts/SentaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "SentaSans";
  src: url("../fonts/SentaSans-Bold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "GigaSans";
  src: url("../fonts/GigaSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "GigaSans";
  src: url("../fonts/GigaSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
.h1,
h1 {
  font-size: 65px;
  line-height: 75px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .h1,
  h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 766px) {
  .h1,
  h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

.h2,
h2 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .h2,
  h2 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 766px) {
  .h2,
  h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.h3,
h3 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .h3,
  h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 766px) {
  .h3,
  h3 {
    font-size: 18px;
    line-height: 28px;
  }
}

.h4,
h4 {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .h4,
  h4 {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .h4,
  h4 {
    font-size: 16px;
    line-height: 21px;
  }
}

*,
::after,
::before {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: "GigaSans";
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "GigaSans";
  background: #000000;
  color: #ffffff;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}
@media (max-width: 766px) {
  html,
  body {
    font-size: 14px;
    line-height: 20px;
  }
}

body::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
body::-webkit-scrollbar-track {
  background: #000000;
}
body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #0F6B4D;
}

p {
  margin: 0 0 10px;
}

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

svg {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  border: none;
  font-family: "GigaSans";
  background-color: transparent;
  padding: 0;
  border: none;
}

input {
  font-family: "GigaSans";
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

img[data-src] {
  opacity: 0;
}

.noscroll {
  overflow: hidden !important;
}

.sprite-icons {
  display: none !important;
}

.bg-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(33%, #171B21));
  background: linear-gradient(180deg, #000000 0%, #171B21 33%);
}

.section-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 1250px) {
  .section-col-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 766px) {
  .section-col-2 {
    gap: 0;
  }
}
@media (max-width: 766px) {
  .section-col-2 .container {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .container-mob.container {
    padding: 0;
  }
}

.container {
  width: 100%;
  max-width: 1616px;
  padding: 0 58px;
  margin: 0 auto;
}
@media (max-width: 766px) {
  .container {
    padding: 0 30px;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  padding: 8px 23px;
  min-height: 50px;
  border-radius: 42px;
  border: 1px solid #ffffff;
  color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .button {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 766px) {
  .button {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (min-width: 767px) {
  .button:hover {
    border-color: #0F6B4D;
    color: #0F6B4D;
  }
}

.button-big {
  padding: 23px;
  background-color: #0F6B4D;
  border-color: #0F6B4D;
}
@media (max-width: 766px) {
  .button-big {
    font-size: 16px;
    line-height: 26px;
    padding: 27px 23px;
  }
}
@media (min-width: 767px) {
  .button-big:hover {
    border-color: #1E8666;
    background-color: #1E8666;
    color: #ffffff;
  }
}

.services-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 766px) {
  .services-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 767px) {
  .services-item.hover .services-item__content {
    border-color: #3CA47E;
    -webkit-box-shadow: 5px 4px 13px 0px rgba(60, 164, 126, 0.2), 19px 16px 24px 0px rgba(60, 164, 126, 0.168627451), 42px 35px 33px 0px rgba(60, 164, 126, 0.1019607843), 75px 63px 39px 0px rgba(60, 164, 126, 0.031372549), 117px 98px 43px 0px rgba(60, 164, 126, 0);
            box-shadow: 5px 4px 13px 0px rgba(60, 164, 126, 0.2), 19px 16px 24px 0px rgba(60, 164, 126, 0.168627451), 42px 35px 33px 0px rgba(60, 164, 126, 0.1019607843), 75px 63px 39px 0px rgba(60, 164, 126, 0.031372549), 117px 98px 43px 0px rgba(60, 164, 126, 0);
  }
}
.services-item__video {
  width: 484px;
  height: 310px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 3;
  border-radius: 48px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .services-item__video {
    width: 372px;
    height: 240px;
  }
}
@media (max-width: 1250px) {
  .services-item__video {
    width: 29.063vw;
    height: 18.75vw;
  }
}
@media (max-width: 766px) {
  .services-item__video {
    width: 100%;
    padding-bottom: 40%;
    position: relative;
    border-radius: 24px;
    pointer-events: none;
  }
}
.services-item__video video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 766px) {
  .services-item__video video {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.services-item__content {
  margin-left: -103px;
  margin-top: 90px;
  padding: 59px 60px 59px 163px;
  border: 1px solid #2B2B2B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: 48px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1440px) {
  .services-item__content {
    padding: 47px 48px 47px 123px;
    margin-left: -75px;
    margin-top: 48px;
  }
}
@media (max-width: 766px) {
  .services-item__content {
    padding: 23px 23px 23px 24px;
    margin-left: 0;
    margin-top: 0;
    border-radius: 24px;
    pointer-events: none;
    gap: 12px;
  }
}
.services-item__title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .services-item__title {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 766px) {
  .services-item__title {
    font-size: 20px;
    line-height: 30px;
  }
}
.services-item__text {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .services-item__text {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .services-item__text {
    font-size: 16px;
    line-height: 21px;
  }
}

.form {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 15px;
}
.form .form-row {
  position: relative;
  width: 100%;
}
.form .form-row__input, .form .form-row__textarea {
  display: block;
  position: relative;
  width: 100%;
  height: 60px;
  font-size: 19px;
  line-height: 32px;
  font-weight: 400;
  font-family: "GigaSans";
  border: none;
  border-bottom: 1px solid #0F6B4D;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 164x 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #2B2B2B;
  background: #ffffff;
}
.form .form-row__input::-webkit-input-placeholder, .form .form-row__textarea::-webkit-input-placeholder {
  font-family: "GigaSans";
  color: #2B2B2B;
}
.form .form-row__input::-moz-placeholder, .form .form-row__textarea::-moz-placeholder {
  font-family: "GigaSans";
  color: #2B2B2B;
}
.form .form-row__input:-ms-input-placeholder, .form .form-row__textarea:-ms-input-placeholder {
  font-family: "GigaSans";
  color: #2B2B2B;
}
.form .form-row__input::-ms-input-placeholder, .form .form-row__textarea::-ms-input-placeholder {
  font-family: "GigaSans";
  color: #2B2B2B;
}
.form .form-row__input::placeholder, .form .form-row__textarea::placeholder {
  font-family: "GigaSans";
  color: #2B2B2B;
}
.form .form-row__input:-webkit-autofill, .form .form-row__input:-webkit-autofill:hover, .form .form-row__input:-webkit-autofill:focus, .form .form-row__input:-webkit-autofill:active, .form .form-row__textarea:-webkit-autofill, .form .form-row__textarea:-webkit-autofill:hover, .form .form-row__textarea:-webkit-autofill:focus, .form .form-row__textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 100px #ffffff inset !important;
  -webkit-text-fill-color: #2B2B2B !important;
}
.form .form-row__textarea {
  resize: none;
  overflow: hidden;
  height: 160px;
  padding: 22px 10px;
}
.form .form-row.error .form-field__icon-error {
  z-index: 1;
  opacity: 1;
}
.form .form-row.error .form-field__text-error {
  z-index: 1;
  opacity: 1;
}
.form .form-row__note {
  display: none;
  width: 100%;
  margin-top: 5px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400;
  color: #808080;
}
.form .form-row__error {
  display: none;
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: #DB1F1A;
  gap: 4px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  text-align: left;
  margin-top: 6px;
}
.form .form-row.error .form-row__error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form .form-row--submit {
  margin-top: 15px;
}

.mg-header {
  height: 110px;
  position: relative;
}
@media (max-width: 1440px) {
  .mg-header {
    height: 98px;
  }
}
@media (max-width: 766px) {
  .mg-header {
    height: 60px;
  }
}
.mg-header .header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  z-index: 1001;
}
@media (max-width: 1440px) {
  .mg-header .header {
    padding: 24px 0;
  }
}
@media (max-width: 766px) {
  .mg-header .header {
    padding: 15px 0;
  }
}
.mg-header .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mg-header .header-bar {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1250px) {
  .mg-header .header-bar {
    position: fixed;
    z-index: 100;
    width: 100%;
    left: 0;
    right: 0;
    top: 95px;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    pointer-events: none;
    min-height: calc(100vh - 95px);
  }
}
@media (max-width: 766px) {
  .mg-header .header-bar {
    top: 60px;
    min-height: calc(100vh - 60px);
  }
}
.mg-header .header-bar__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 100;
}
@media (max-width: 1250px) {
  .mg-header .header-bar__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px 30px 60px;
    gap: 30px 35px;
    border-radius: 0 0 30px 30px;
    background-color: rgba(0, 0, 0, 0.9058823529);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media (max-width: 1250px) {
  .mg-header .header-bar.open {
    pointer-events: all;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 1250px) {
  .mg-header .header-bar.open .header-mob-bg {
    opacity: 1;
  }
}
@media (max-width: 1250px) {
  .mg-header .header-bar.open .header-bar__wrapper {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.mg-header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin: 0 auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1440px) {
  .mg-header .header-menu {
    gap: 12px;
  }
}
@media (max-width: 1250px) {
  .mg-header .header-menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 24px;
  }
}
.mg-header .header-menu .menu-item a {
  position: relative;
  display: block;
  font-size: 17px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-header .header-menu .menu-item a {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 766px) {
  .mg-header .header-menu .menu-item a {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 766px) {
  .mg-header .header-menu .menu-item a {
    font-size: 17px;
    line-height: 32px;
  }
}
.mg-header .header-menu .menu-item a::before {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  max-width: 0;
  border-bottom: 1px solid #3CA47E;
  color: #3CA47E;
  content: attr(data-hover);
  -webkit-transition: max-width 0.4s;
  transition: max-width 0.4s;
  text-wrap: nowrap;
}
@media (min-width: 767px) {
  .mg-header .header-menu .menu-item a:hover::before {
    max-width: 100%;
  }
}
.mg-header .header-mob-bg {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(43, 43, 43, 0.6980392157);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (max-width: 1250px) {
  .mg-header .header-mob-bg {
    display: block;
  }
}
.mg-header .logo {
  width: 236px;
  height: 50px;
}
@media (max-width: 766px) {
  .mg-header .logo {
    width: 141.6px;
    height: 30px;
  }
}
.mg-header .logo img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.mg-header .open-mobile-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
}
@media (max-width: 1250px) {
  .mg-header .open-mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.mg-header .open-mobile-menu svg {
  width: 30px;
  height: 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mg-header .open-mobile-menu svg.close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  stroke: #3CA47E;
}
.mg-header .open-mobile-menu svg.open {
  opacity: 1;
}
.mg-header .open-mobile-menu.open svg.close {
  opacity: 1;
}
.mg-header .open-mobile-menu.open svg.open {
  opacity: 0;
}

.mg-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-left: 24px;
  border: 1px solid #525252;
  padding: 8px 11px;
  min-height: 50px;
  border-radius: 500px;
  font-size: 17px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-language {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 766px) {
  .mg-language {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 1250px) {
  .mg-language {
    margin-left: 0;
  }
}
.mg-language .mg-language-item {
  color: #525252;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mg-language .mg-language-item.active {
  color: #ffffff;
}
@media (min-width: 767px) {
  .mg-language .mg-language-item.active:hover {
    color: #ffffff;
  }
}
@media (min-width: 767px) {
  .mg-language .mg-language-item:hover {
    color: #3CA47E;
  }
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  overflow-y: auto;
  color: #000000;
  display: none;
}
.popup.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.popup .popup-wrapper {
  position: relative;
  z-index: 9;
  width: 360px;
  max-width: 100%;
  margin: auto auto;
}
.popup .popup-content {
  text-align: center;
  width: 360px;
  max-width: 100%;
  padding: 30px;
  border-radius: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.1490196078);
}
.popup .popup-close {
  position: relative;
  z-index: 3;
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 30px;
}
.popup .popup-close svg {
  width: 24px;
  height: 24px;
  stroke: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 767px) {
  .popup .popup-close:hover svg {
    stroke: #3CA47E;
  }
}
.popup .popup-bg {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 22, 22, 0.5);
}
.popup .popup-title {
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .popup .popup-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 766px) {
  .popup .popup-title {
    font-size: 18px;
    line-height: 28px;
  }
}
.popup .popup-text {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 30px;
}
.popup .button {
  width: 100%;
}
.popup .popup-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px auto;
}
.popup .popup-icon img,
.popup .popup-icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.popup .popup-button {
  margin-top: 15px;
}

.mg-footer {
  padding: 48px 0 30px;
}
@media (max-width: 1440px) {
  .mg-footer {
    padding: 30px 0;
  }
}
.mg-footer .footer-copyright {
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}

.mg-hero {
  margin-bottom: 48px;
}
@media (max-width: 766px) {
  .mg-hero {
    margin-bottom: 60px;
  }
}
@media (max-width: 766px) {
  .mg-hero .container {
    padding: 0;
  }
}
.mg-hero .hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 100px 100px 140px;
  border-radius: 48px 48px 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#0F6B4D), color-stop(70%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #0F6B4D 0%, rgba(0, 0, 0, 0) 70%);
  border-bottom: 1px solid #0F6B4D;
}
@media (max-width: 1440px) {
  .mg-hero .hero {
    padding: 60px 60px 120px;
  }
}
@media (max-width: 1250px) {
  .mg-hero .hero {
    padding: 60px 32px;
    gap: 15px;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px;
    border-radius: 30px 30px 0 0;
  }
}
.mg-hero .hero__top {
  width: 75%;
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (max-width: 1440px) {
  .mg-hero .hero__top {
    max-width: 629px;
    width: 55%;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__top {
    width: 100%;
    max-width: 100%;
    gap: 15px;
  }
}
.mg-hero .hero__title {
  font-size: 90px;
  line-height: 80px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
  margin-right: -100px;
}
@media (max-width: 1440px) {
  .mg-hero .hero__title {
    font-size: 60px;
    line-height: 50px;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__title {
    font-size: 32px;
    line-height: 34px;
  }
}
@media (max-width: 1250px) {
  .mg-hero .hero__title {
    margin-right: -25vw;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__title {
    margin-right: 0;
  }
}
.mg-hero .hero__subtitle {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  max-width: 414px;
}
@media (max-width: 1440px) {
  .mg-hero .hero__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1440px) {
  .mg-hero .hero__subtitle {
    max-width: 324px;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__subtitle {
    max-width: 450px;
  }
}
.mg-hero .hero__img {
  width: 244px;
  height: 244px;
  position: relative;
}
@media (max-width: 766px) {
  .mg-hero .hero__img {
    width: 38.889vw;
    height: 38.889vw;
    margin: 0 auto;
  }
}
.mg-hero .hero__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.mg-hero .hero__img-center {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 766px) {
  .mg-hero .hero__img-center {
    width: 9.564vw;
    height: 9.564vw;
  }
}
.mg-hero .hero__img-animate {
  width: 100%;
  -webkit-animation: rotating 8s linear infinite;
          animation: rotating 8s linear infinite;
}
.mg-hero .hero__info {
  max-width: 357px;
  margin-left: auto;
  margin-right: 281px;
}
.mg-hero .hero__info p {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .mg-hero .hero__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 1440px) {
  .mg-hero .hero__info {
    margin: 0 auto;
    max-width: 372px;
  }
}
@media (max-width: 766px) {
  .mg-hero .hero__info {
    max-width: 350px;
    margin: 0 0 15px;
  }
}

@-webkit-keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mg-services {
  margin: 48px 0;
}
@media (max-width: 766px) {
  .mg-services {
    margin: 60px 0;
  }
}
.mg-services .services__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 766px) {
  .mg-services .services__top {
    gap: 0;
    margin-bottom: 30px;
  }
}
.mg-services .services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding: 88px 0 140px 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 1440px) {
  .mg-services .services__content {
    padding-bottom: 100px;
  }
}
@media (max-width: 766px) {
  .mg-services .services__content {
    padding: 0;
    gap: 30px;
  }
}
.mg-services .services__title {
  font-size: 65px;
  line-height: 75px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .mg-services .services__title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 766px) {
  .mg-services .services__title {
    font-size: 26px;
    line-height: 36px;
  }
}
.mg-services .services__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  max-width: 611px;
  margin-left: auto;
}
@media (max-width: 1440px) {
  .mg-services .services__info {
    max-width: 471px;
  }
}
@media (max-width: 766px) {
  .mg-services .services__info {
    gap: 15px;
    margin-left: 0;
  }
}
.mg-services .services__subtitle {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-services .services__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 766px) {
  .mg-services .services__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
}
.mg-services .services__img {
  width: 418px;
  height: 569px;
  margin-right: -61px;
}
@media (max-width: 1440px) {
  .mg-services .services__img {
    width: 304px;
    height: 413px;
    margin-right: -31px;
  }
}
@media (max-width: 1250px) {
  .mg-services .services__img {
    max-width: 30%;
  }
}
@media (max-width: 766px) {
  .mg-services .services__img {
    display: none;
  }
}
.mg-services .services__img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.mg-services .services__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (max-width: 766px) {
  .mg-services .services__wrapper {
    gap: 30px;
  }
}

.mg-history {
  overflow: hidden;
}
@media (max-width: 766px) {
  .mg-history {
    margin-bottom: 60px;
  }
}
.mg-history .history {
  position: relative;
  width: 1080px;
  height: 1080px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .mg-history .history {
    width: 700px;
    height: 700px;
  }
}
@media (max-width: 766px) {
  .mg-history .history {
    width: 100%;
    height: auto;
    min-height: 500px;
    padding-top: 60px;
  }
}
.mg-history .history__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  position: absolute;
  max-width: 738px;
  width: 100%;
  z-index: 4;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1440px) {
  .mg-history .history__content {
    max-width: 570px;
    gap: 24px;
  }
}
@media (max-width: 766px) {
  .mg-history .history__content {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: 0;
    left: 0;
    gap: 15px;
  }
}
.mg-history .history__title {
  font-size: 65px;
  line-height: 75px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .mg-history .history__title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 766px) {
  .mg-history .history__title {
    font-size: 26px;
    line-height: 36px;
  }
}
.mg-history .history__info {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-history .history__info {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 766px) {
  .mg-history .history__info {
    font-size: 18px;
    line-height: 28px;
  }
}
.mg-history .history-animation {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 766px) {
  .mg-history .history-animation {
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: 59px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.mg-history .history-animation__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mg-history .history-animation__img-main {
  -webkit-animation: rotating 40s linear infinite;
          animation: rotating 40s linear infinite;
  z-index: 2;
}
.mg-history .history-animation__img-shadow {
  z-index: 3;
}
.mg-history .history-animation img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.mg-img-block {
  width: 100%;
  max-width: 100%;
  margin-bottom: 140px;
}
@media (max-width: 1440px) {
  .mg-img-block {
    margin-bottom: 100px;
  }
}
@media (max-width: 766px) {
  .mg-img-block {
    margin-bottom: 60px;
  }
}
.mg-img-block .img-block {
  width: 100%;
  padding-bottom: 36.459%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .mg-img-block .img-block {
    padding-bottom: 35.94%;
  }
}
@media (max-width: 766px) {
  .mg-img-block .img-block {
    padding-bottom: 61.12%;
  }
}
.mg-img-block .img-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.mg-specialization {
  margin-bottom: 24px;
}
@media (max-width: 766px) {
  .mg-specialization {
    margin-bottom: 30px;
  }
}
@media (max-width: 766px) {
  .mg-specialization .container {
    padding: 0;
  }
}
.mg-specialization .specialization {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 98px;
  padding: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(#0F6B4D), color-stop(70%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, #0F6B4D 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 48px 48px 0 0;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .mg-specialization .specialization {
    gap: 24px;
  }
}
@media (max-width: 1250px) {
  .mg-specialization .specialization {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 766px) {
  .mg-specialization .specialization {
    border-radius: 30px 30px 0 0;
    padding: 30px 30px 0;
  }
}
.mg-specialization .specialization__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  max-width: 678px;
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1440px) {
  .mg-specialization .specialization__content {
    max-width: 510px;
  }
}
@media (max-width: 1250px) {
  .mg-specialization .specialization__content {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 766px) {
  .mg-specialization .specialization__content {
    gap: 15px;
  }
}
.mg-specialization .specialization__icon {
  margin-bottom: 36px;
  width: 60px;
  height: 60px;
}
@media (max-width: 766px) {
  .mg-specialization .specialization__icon {
    margin-bottom: 15px;
  }
}
.mg-specialization .specialization__icon img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}
.mg-specialization .specialization__title {
  font-size: 65px;
  line-height: 75px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .mg-specialization .specialization__title {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 766px) {
  .mg-specialization .specialization__title {
    font-size: 26px;
    line-height: 36px;
  }
}
.mg-specialization .specialization__subtitle {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-specialization .specialization__subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .mg-specialization .specialization__subtitle {
    font-size: 16px;
    line-height: 21px;
  }
}
.mg-specialization .specialization__video {
  position: relative;
  width: 604px;
  height: 364px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='604' height='364' viewBox='0 0 604 364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_141_88)'%3E%3Cpath d='M354.307 0C324.329 0 300.026 24.2907 300.026 54.2547V309.745C300.026 339.709 324.329 364 354.307 364H549.719C579.698 364 604 339.709 604 309.745V54.2547C604 24.2907 579.698 0 549.719 0H354.307Z' fill='black'/%3E%3Cpath d='M54.281 40.4444C24.3024 40.4444 0 64.7351 0 94.6992V269.301C0 299.265 24.3024 323.556 54.281 323.556H214.163C244.142 323.556 268.444 299.265 268.444 269.301V94.6992C268.444 64.7351 244.142 40.4444 214.163 40.4444H54.281Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_141_88'%3E%3Crect width='604' height='364' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='604' height='364' viewBox='0 0 604 364' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_141_88)'%3E%3Cpath d='M354.307 0C324.329 0 300.026 24.2907 300.026 54.2547V309.745C300.026 339.709 324.329 364 354.307 364H549.719C579.698 364 604 339.709 604 309.745V54.2547C604 24.2907 579.698 0 549.719 0H354.307Z' fill='black'/%3E%3Cpath d='M54.281 40.4444C24.3024 40.4444 0 64.7351 0 94.6992V269.301C0 299.265 24.3024 323.556 54.281 323.556H214.163C244.142 323.556 268.444 299.265 268.444 269.301V94.6992C268.444 64.7351 244.142 40.4444 214.163 40.4444H54.281Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_141_88'%3E%3Crect width='604' height='364' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media (max-width: 1440px) {
  .mg-specialization .specialization__video {
    width: 39.844vw;
    height: 23.984vw;
  }
}
@media (max-width: 1250px) {
  .mg-specialization .specialization__video {
    margin: 0 auto;
  }
}
@media (max-width: 766px) {
  .mg-specialization .specialization__video {
    width: 83.333vw;
    height: 50vw;
  }
}
.mg-specialization .specialization__video video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.mg-partners {
  background-color: #0F6B4D;
  border-radius: 48px;
  overflow: hidden;
  padding: 61px 60px;
}
@media (max-width: 1440px) {
  .mg-partners {
    padding: 24px 48px;
  }
}
@media (max-width: 640px) {
  .mg-partners {
    padding: 30px;
  }
}
.mg-partners .partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 24px;
  min-height: 100%;
}
@media (max-width: 1440px) {
  .mg-partners .partners {
    gap: 19px;
  }
}
@media (max-width: 640px) {
  .mg-partners .partners {
    gap: 12px;
  }
}
.mg-partners .partners__label {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 500px;
  background-color: #1E8666;
}
@media (max-width: 1440px) {
  .mg-partners .partners__label {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .mg-partners .partners__label {
    font-size: 16px;
    line-height: 21px;
  }
}
.mg-partners .partners__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: auto 0;
}
.mg-partners .partners__title {
  font-size: 42px;
  line-height: 50px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .mg-partners .partners__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 640px) {
  .mg-partners .partners__title {
    font-size: 22px;
    line-height: 30px;
  }
}
.mg-partners .partners__subtitle {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-partners .partners__subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .mg-partners .partners__subtitle {
    font-size: 16px;
    line-height: 21px;
  }
}
.mg-partners .partners-link {
  font-size: 50px;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}
@media (min-width: 767px) {
  .mg-partners .partners-link:hover {
    text-decoration-color: #ffffff;
  }
}
@media (max-width: 1440px) {
  .mg-partners .partners-link {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 640px) {
  .mg-partners .partners-link {
    font-size: 26px;
    line-height: 28px;
  }
}
.mg-partners .partners__icon {
  width: 130px;
  height: 130px;
}
.mg-partners .partners__icon svg {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.mg-contact {
  border-radius: 48px;
  overflow: hidden;
  position: relative;
  padding: 61px 60px;
}
@media (max-width: 1440px) {
  .mg-contact {
    padding: 24px 48px;
  }
}
@media (max-width: 640px) {
  .mg-contact {
    padding: 30px;
  }
}
.mg-contact .contact {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 24px;
  min-height: 100%;
}
@media (max-width: 1440px) {
  .mg-contact .contact {
    gap: 19px;
  }
}
@media (max-width: 640px) {
  .mg-contact .contact {
    gap: 12px;
  }
}
.mg-contact .contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.mg-contact .contact-bg img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
@media (max-width: 640px) {
  .mg-contact .contact-bg img {
    -o-object-position: center;
       object-position: center;
  }
}
.mg-contact .contact__label {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 500px;
  background-color: #171A20;
}
@media (max-width: 1440px) {
  .mg-contact .contact__label {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .mg-contact .contact__label {
    font-size: 16px;
    line-height: 21px;
  }
}
.mg-contact .contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: auto 0;
}
.mg-contact .contact__content .button {
  margin-top: 12px;
  max-width: 100%;
  width: 260px;
}
@media (max-width: 640px) {
  .mg-contact .contact__content .button {
    margin-top: 0;
  }
}
.mg-contact .contact__title {
  font-size: 42px;
  line-height: 50px;
  font-weight: 300;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
}
@media (max-width: 1440px) {
  .mg-contact .contact__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 640px) {
  .mg-contact .contact__title {
    font-size: 22px;
    line-height: 30px;
  }
}
.mg-contact .contact__subtitle {
  font-size: 19px;
  line-height: 29px;
  font-weight: 400;
}
@media (max-width: 1440px) {
  .mg-contact .contact__subtitle {
    font-size: 18px;
    line-height: 23px;
  }
}
@media (max-width: 766px) {
  .mg-contact .contact__subtitle {
    font-size: 16px;
    line-height: 21px;
  }
}
.mg-contact .contact-link {
  font-size: 50px;
  line-height: 55px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "SentaSans";
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}
@media (min-width: 767px) {
  .mg-contact .contact-link:hover {
    text-decoration-color: #ffffff;
  }
}
@media (max-width: 1440px) {
  .mg-contact .contact-link {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 640px) {
  .mg-contact .contact-link {
    font-size: 26px;
    line-height: 28px;
  }
}
.mg-contact .contact__icon {
  width: 130px;
  height: 130px;
}
.mg-contact .contact__icon svg {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}