/* Типографика как на всём сайте (Montserrat из zamrealty.css) */
#c-zamrealty-wrapper {
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
}
#c-zamrealty-wrapper h1,
#c-zamrealty-wrapper h2,
#c-zamrealty-wrapper h3,
#c-zamrealty-wrapper h4 {
  font-family: var(--zr-font-heading, 'Montserrat', sans-serif);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1180px;
  }
}
#wrapper {
  overflow: hidden;
}

[data-inviewport=obs__full-width] {
  position: relative;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-inviewport=obs__full-width]:before {
  content: "";
  position: absolute;
  background: #fff;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: 1s;
  display: flex;
}

.watched[data-inviewport=obs__full-width]:before {
  width: 0%;
}

.watched[data-inviewport=obs__full-width] {
  transform: none;
}

[data-inviewport=obs__slide-left] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateX(30px);
}

.watched[data-inviewport=obs__slide-left] {
  opacity: 1;
  transform: none;
}

[data-inviewport=obs__slide-right] {
  position: relative;
  transition: 1s;
  opacity: 0;
  transform: translateX(-30px);
}

.watched[data-inviewport=obs__slide-right] {
  opacity: 1;
  transform: none;
}

.scrollTop {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  background-color: #fff;
  transform: scale(0);
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollTop:hover {
  background-color: #004362;
}
.scrollTop:hover path {
  fill: #fff;
}
.scrollTop path {
  transition: 0.5s;
}
.scrollTop.show {
  transform: scale(1);
}

h1 {
  font-size: 110px;
  font-weight: 500;
  color: #004362;
}
h1 .span__red {
  color: #aa1a00;
}

h2 {
  color: rgb(0, 67, 98);
  font-size: 70px;
  font-weight: 600;
  letter-spacing: -3px;
}
h2 span {
  color: #aa1a00;
}

h3 {
  font-size: 52px;
  font-weight: 700;
}
h3 span {
  color: rgb(170, 26, 0);
}

.header {
  height: 135px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
}
.header .logo {
  max-width: 75px;
}
.header .logo img {
  max-width: 100%;
}
.header .burger {
  width: 70px;
  height: 50px;
  border-radius: 4px;
  margin-left: auto;
  position: relative;
}
.header .burger > * {
  pointer-events: none;
}
.header .burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -26px;
  margin-top: -1.5px;
}
.header .burger span, .header .burger span::before, .header .burger span::after {
  display: block;
  width: 55px;
  height: 2px;
  border-radius: 5px;
  background-color: #000;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}
.header .burger span::before, .header .burger span::after {
  position: absolute;
  content: "";
}
.header .burger span::before {
  top: -8px;
  left: -10px;
}
.header .burger span::after {
  top: 8px;
  left: 7px;
}
.header .burger:hover {
  cursor: pointer;
}
.header .nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: #004362;
  opacity: 0;
  visibility: hidden;
}
.header .nav__overlay.show {
  opacity: 0.7;
  visibility: visible;
  z-index: 10;
}
.header .nav__inner-wrap {
  display: flex;
  flex-wrap: wrap;
  min-height: 100%;
  padding: 45px 40px 60px 40px;
}
.header .nav__info-top {
  display: inline-block;
  width: 100%;
  align-self: flex-start;
}
.header .nav__info-bottom {
  display: inline-block;
  width: 100%;
  align-self: flex-end;
}
.header nav {
  background-color: #1a4361;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 50vw;
  width: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.header nav .logo-white {
  max-width: 120px;
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0;
}
.header nav .logo-white img {
  max-width: 100%;
}
.header nav.show .logo-white {
  opacity: 1;
}
.header nav .btn-close {
  color: #fff;
  opacity: 1;
  position: absolute;
  top: 15px;
  right: 15px;
  box-shadow: none;
}
.header nav.show {
  transform: translateX(0px);
}
.header nav.show ul.main li {
  transform: translateX(0px);
  opacity: 1;
}
.header nav ul.main {
  list-style-type: none;
  padding-left: 0;
  padding-top: 20px;
}
.header nav ul.main li {
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.3s ease;
}
.header nav ul.main li a {
  color: #ffffff;
  font-size: 3vw;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.header nav ul.main li a span {
  color: #b7ac7f;
}
.header nav ul.main li a:hover {
  color: #aa1a00;
}
.header .social a {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 5px;
}
.header .contact {
  margin-top: 30px;
}
.header .contact a {
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 100px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  margin-right: 5px;
  transition: 0.4s;
}
.header .contact a:hover {
  color: #000;
  background-color: #fff;
}

.sc-banner h1 span {
  display: block;
}
.sc-banner h1 .span__2 {
  padding-left: 60px;
}
.sc-banner h1 .span__red {
  padding-left: 230px;
}
.sc-banner .hero__box {
  display: inline-block;
  width: calc(100% + 200px);
  margin-left: -100px;
  background: url(../img/about_company/hero-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: 100px;
  padding-bottom: 200px;
  padding-left: 100px;
  padding-right: 100px;
}
.sc-banner .hero__box .title {
  width: 100%;
  margin-top: -130px;
  padding-left: 100px;
  position: relative;
  display: flex;
}
.sc-banner .hero__box .title .start__date {
  font-weight: 400;
  color: #ffffff;
  font-size: 12px;
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
  align-self: center;
  margin-left: 40px;
  margin-top: -60px;
}
.sc-banner .hero__box .subtitle__box {
  margin-left: auto;
  margin-right: 110px;
  width: 100%;
  max-width: 678px;
  position: relative;
}
.sc-banner .hero__box .subtitle__box .oval {
  position: absolute;
  right: -100px;
  top: -170px;
  width: 170px;
  height: 170px;
  animation: rotate 2s;
  opacity: 0;
  transition: 3s;
  animation-fill-mode: forwards;
}
.sc-banner .hero__box .subtitle__box .oval:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M11 1.90735e-06L9 1.90735e-06L9 9L0 9L0 11L9 11L9 20H11L11 11L20 11V9L11 9L11 1.90735e-06Z" fill="%23FBFBFB"/></svg>');
  background-position: center center;
  background-size: 100% 100%;
  animation: rotateInfinite 10s linear infinite;
}
.sc-banner .hero__box .subtitle__box .oval img {
  max-width: 100%;
}
.sc-banner .hero__box .subtitle {
  color: #004362;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.sc-banner .hero__box .years {
  color: #004362;
  font-size: 320px;
  line-height: normal;
  line-height: 0.7;
  font-weight: 600;
  opacity: 0.15;
  margin-top: 30px;
  margin-left: -19px;
}
.sc-banner .hero__box .stats {
  display: inline-block;
  max-width: 632px;
  margin-top: 20px;
  border-radius: 10px;
  padding: 60px 50px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(21, 74, 101, 0.151);
  position: relative;
}
.sc-banner .hero__box .stats h4 {
  letter-spacing: -1px;
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}
.sc-banner .hero__box .stats p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.6px;
}
.sc-banner .hero__box .stat__list {
  display: flex;
  justify-content: space-between;
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
  margin-top: 30px;
}
.sc-banner .hero__box .stat__list .single__stat {
  width: 33.3333333%;
}
.sc-banner .hero__box .stat__list span {
  display: inline-block;
  width: 100%;
  color: #fff;
}
.sc-banner .hero__box .stat__list .stat__top-text {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 5px;
}
.sc-banner .hero__box .stat__list .stat__bottom-text {
  font-size: 50px;
  line-height: 0.8;
  font-weight: 400;
  letter-spacing: -3px;
}
.sc-banner .hero__box .stat__circle {
  border: solid 1px #e9e9e9;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  margin-top: -224px;
  margin-left: -60px;
}
@keyframes rotate {
  100% {
    opacity: 1;
    transform: rotate(360deg);
  }
}
@keyframes rotateInfinite {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sc-luck {
  position: relative;
}
.sc-luck .circle {
  border-radius: 100%;
  border: solid 1px rgba(0, 0, 0, 0.247);
  position: absolute;
  width: 900px;
  height: 900px;
  left: -15%;
  right: 0;
  top: 20px;
  margin: auto;
  display: inline-block;
}
.sc-luck .inner__circle {
  transform: translateY(-10%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 100%;
  border: solid 1px rgba(0, 0, 0, 0.247);
  position: absolute;
  display: inline-block;
}
.sc-luck .inner__circle-1 {
  width: 84%;
  height: 84%;
  border-color: #aa1a00;
  transform: translate(3%, -3%);
}
.sc-luck .inner__circle-2 {
  width: 67.5%;
  height: 67.5%;
  transform: translate(5%, -5%);
}
.sc-luck .inner__circle-3 {
  width: 51%;
  height: 51%;
  transform: translate(10%, -10%);
}
.sc-luck .inner__circle-4 {
  width: 35%;
  height: 35%;
  transform: translate(20%, -20%);
}
.sc-luck h3 {
  color: #fff;
}
.sc-luck .points {
  position: relative;
  padding-top: 50px;
}
.sc-luck .point__box {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
}
.sc-luck .point__box.p__1 {
  text-align: right;
  padding-right: 50px;
}
.sc-luck .point__box.p__3 {
  text-align: right;
  padding-right: 20px;
}
.sc-luck .point__box.p__4 {
  padding-left: 100px;
}
.sc-luck .point__box.p__5 {
  text-align: right;
  padding-right: 10px;
}
.sc-luck .point__box.p__5 .point {
  max-width: 150px;
}
.sc-luck .point__box.p__6 {
  padding-left: 50px;
}
.sc-luck .point {
  color: #004362;
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
  font-weight: 400;
  line-height: normal;
  position: relative;
  display: inline-block;
  text-align: left;
}
.sc-luck .point__stat {
  font-size: 60px;
  letter-spacing: -3px;
}
.sc-luck .point__stat.red {
  color: rgb(170, 26, 0);
}
.sc-luck .point__name {
  font-size: 12px;
}
.sc-luck .info__box {
  border-radius: 6px;
  background-color: rgba(0, 66, 97, 0.75);
  box-shadow: 0px 30px 80px 0px rgba(154, 161, 165, 0.2);
  padding: 100px 80px 50px 80px;
  margin-top: -70px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.sc-luck .info__box .subtitle {
  color: #cfcbcb;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.sc-luck .info__box .text__info p {
  line-height: 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
}

.sc-buildings{
  padding-top: 100px;
  padding-bottom: 50px;
}
.sc-buildings .title{
  margin-bottom: 50px;
}
.sc-buildings .building__text-box{
  display: inline-block;
  padding-right: 20px;
  color: #004362;
  font-size: 14px;
}
.sc-buildings .building__text-box p{
  margin-bottom: 30px;
}
.sc-buildings .building__text-box ul{
  padding-left: 20px;
  font-weight: 700;
}
.sc-buildings .img__box {
  margin-bottom: 25px;
  position: relative;
}
.sc-buildings .img__box.oval__after::after {
  content: "";
  position: absolute;
  position: absolute;
  top: -58px;
  left: -56px;
  width: 400px;
  height: 400px;
  display: inline-block;
  border-radius: 100%;
  border: solid 1px #004362;
  z-index: -1;
}
.sc-buildings .img__box img{
  max-width: 100%;
  border-radius: 5px;
}
.sc-buildings .building__partners{
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sc-buildings .building__partners .icon{
  margin: 5px 0px;
  display: flex;
  align-items: center;
}
.sc-buildings .building__partners .icon img{
  max-width: 100%; 
  padding: 2px;
}
.sc-buildings.sc-buildings-2{
  padding: 20px 0;
}
.sc-buildings.sc-buildings-2 .title{
  margin-bottom: 0;
}
.sc-buildings.sc-buildings-2 .title h2{
  padding-left: 62px;
}
.sc-buildings.sc-buildings-2 .building__text-box{
  display: flex;
  padding-right: 20px;
  color: #004362;
  font-size: 14px;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  align-content: center;
  padding-right: 0;
}
.sc-buildings.sc-buildings-2 .img__box.oval__after::after {
  width: 300px;
  height: 300px;
}
@media (max-width: 1400px) {
  .sc-buildings.sc-buildings-2 .title{
    margin-bottom: 25px;
  }
  .sc-buildings.sc-buildings-2 .title h2{
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .sc-buildings .building__text-box{
    padding-right: 0;
  }
  .sc-buildings .img__box-wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sc-buildings .img__box{
    width: calc(50% - 10px);
  }
}
@media (max-width: 576px) {
  .sc-buildings{
    padding-top: 20px;
  }
  .sc-buildings .title{
    text-align: center;
    margin-bottom: 25px;
  }
  .sc-buildings .building__text-box p {
    margin-bottom: 19px;
  }
  .sc-buildings .img__box{
    width: 100%;
    margin-bottom: 15px;
  }
  .sc-buildings .img__box img{
    width: 100%;
  }
  .sc-buildings .building__partners{
    display: inline-block;
    text-align: center;
  }
  .sc-buildings .building__partners .icon{
    display: inline-block;
    margin: 2px 0px;

  }
  .sc-buildings .building__partners .icon img {
    padding: 2px;
  }
  .sc-buildings .img__box.oval__after::after{
    width: 200px;
    height: 200px;
    top: auto;
    right: -8px;
    bottom: -132px;
    left: auto;
  }
  .sc-buildings.sc-buildings-2 .img__box.oval__after::after {
    bottom: auto;
    left: auto;
    right: -25px;
    top: -75px;
    width: 200px;
    height: 200px;
  }
}

.sc-partners {
  padding-top: 50px;
  overflow: hidden;
}
.sc-partners .title {
  margin-bottom: 10px;
}
.sc-partners marquee img {
  min-width: 173px;
  max-height: 90%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.sc-rieltor {
  padding-top: 70px;
  padding-bottom: 100px;
  background-color: #dde9f0;
  position: relative;
  overflow: hidden;
}
.sc-rieltor:before {
  content: "";
  position: absolute;
  height: 10%;
  bottom: -10%;
  left: 0;
  width: 100%;
  background-image: linear-gradient(#dde9f0, transparent);
}
.sc-rieltor .circle {
  border-radius: 100%;
  border: solid 1px rgba(0, 67, 98, 0.616);
  position: absolute;
  width: 770px;
  height: 770px;
  left: -19%;
  right: 0;
  top: 32%;
  margin: auto;
  display: inline-block;
  transition-delay: 1.5s;
}
.sc-rieltor .inner__circle {
  transform: translateY(10%);
  width: 73%;
  height: 73%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 100%;
  border: solid 1px rgba(0, 67, 98, 0.616);
  position: absolute;
  display: inline-block;
}
.sc-rieltor .circle-2 {
  border-radius: 100%;
  border: solid 1px rgba(0, 67, 98, 0.616);
  position: absolute;
  width: 400px;
  height: 400px;
  left: -28%;
  right: 0;
  bottom: -4%;
  margin: auto;
  display: inline-block;
}
.sc-rieltor .title {
  margin-bottom: 50px;
}
.sc-rieltor .bubble__wrap {
  display: flex;
  flex-wrap: wrap;
  width: 1463px;
  margin: auto;
}
.sc-rieltor .bubble__box {
  border-radius: 100%;
  flex-shrink: 0;
  display: inline-block;
  background-color: #1a4361;
  position: relative;
}
.sc-rieltor .bubble__box.bubble__1 {
  width: 580px;
  height: 580px;
  padding: 100px 100px;
}
.sc-rieltor .bubble__box.bubble__2 {
  width: 460px;
  height: 460px;
  padding: 70px 70px;
}
.sc-rieltor .bubble__box.bubble__3 {
  width: 480px;
  height: 480px;
  padding: 65px 75px;
  background-color: #aa1a00;
}
.sc-rieltor .bubble__box.bubble__4 {
  width: 500px;
  height: 500px;
  padding: 100px 70px;
  background-color: transparent;
  border: solid 1px #aa1a00;
}
.sc-rieltor .bubble__box.bubble__4 .about__box {
  color: #000;
}
.sc-rieltor .bubble__box.bubble__4 .rieltor__info h4 {
  color: #000;
}
.sc-rieltor .bubble__box.bubble__4 .rieltor__info p {
  color: #000;
}
.sc-rieltor .bubble__box.bubble__5 {
  width: 500px;
  height: 500px;
  padding: 81px 63px;
}
.sc-rieltor .bubble__box.bubble__6 {
  width: 500px;
  height: 500px;
  padding: 72px 82px;
}
.sc-rieltor .bubble__box.bubble__1 {
  margin-right: -59px;
  margin-top: 39px;
}
.sc-rieltor .bubble__box.bubble__2 {
  margin-top: 339px;
}
.sc-rieltor .bubble__box.bubble__3 {
  margin-left: -140px;
  margin-top: -7px;
}
.sc-rieltor .bubble__box.bubble__4 {
  margin-left: -126px;
  margin-top: -343px;
}
.sc-rieltor .bubble__box.bubble__5 {
  margin-top: -186px;
  left: 121px;
}
.sc-rieltor .bubble__box.bubble__6 {
  margin-left: 88px;
  margin-top: -8px;
}
.sc-rieltor .rieltor__box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.sc-rieltor .rieltor__info h4 {
  color: #ffffff;
  font-size: 30px;
  line-height: normal;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.sc-rieltor .rieltor__info h4 span {
  margin-left: 10px;
  line-height: 18px;
  font-size: 12px;
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
  font-weight: 400;
  vertical-align: top;
}
.sc-rieltor .rieltor__info p {
  line-height: 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
}
.sc-rieltor .img__box {
  width: 96px;
  height: 96px;
  position: relative;
  border-radius: 100%;
  margin-right: 10px;
  border: solid 3px #fff;
  flex-shrink: 0;
}
.sc-rieltor .img__box img {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 100%;
  border: solid 3px #1a4361;
  overflow-clip-margin: unset;
}
.sc-rieltor .about__box {
  color: #fff;
  line-height: 18px;
  font-size: 12px;
  font-weight: 400;
  max-width: 200px;
}

.sc-highlights {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 50px;
}
.sc-highlights .title {
  margin-bottom: 30px;
}
.sc-highlights .highlight-col {
  margin: 50px 0;
  position: relative;
}
.sc-highlights .highlight-col .circle {
  position: absolute;
  z-index: -1;
  display: inline-block;
  border-radius: 100%;
  transition-delay: 1.5s;
}
.sc-highlights .highlight-col .circle-1 {
  width: 650px;
  height: 650px;
  right: 0;
  left: 0;
  top: 49%;
  margin: auto;
  border: solid 1px #aa1a00;
}
.sc-highlights .highlight-col .circle-1-inner {
  border: solid 1px rgba(0, 67, 98, 0.616);
  width: 55%;
  height: 55%;
  bottom: 8%;
  right: 8%;
}
.sc-highlights .highlight-col .circle-2 {
  width: 350px;
  height: 350px;
  left: 3%;
  top: 68%;
  margin: auto;
  border: solid 1px rgba(0, 67, 98, 0.616);
}
.sc-highlights .highlight-col .circle-3 {
  width: 850px;
  height: 850px;
  right: -8%;
  top: -18%;
  border: solid 1px #aa1a00;
}
.sc-highlights .highlight-col:nth-of-type(odd) .info__box {
  text-align: right;
}
.sc-highlights .info__box {
  display: inline-block;
  width: 100%;
  position: relative;
}
.sc-highlights .info__box .num {
  color: #004362;
  font-size: 320px;
  font-family: var(--zr-font-body, 'Montserrat', sans-serif);
  line-height: normal;
  font-weight: 600;
  opacity: 0.1;
}
.sc-highlights .info__box h4 {
  color: #004362;
  font-size: 54px;
  line-height: 58px;
  font-weight: 500;
  margin-top: -100px;
}
.sc-highlights .img__box {
  position: relative;
  padding-top: 53%;
}
.sc-highlights .img__box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  overflow-clip-margin: unset;
}
.sc-highlights .highlight__text {
  color: #004362;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-top: 20px;
}
.sc-highlights .highlight__text span {
  font-weight: 700;
}

.sc-service {
  padding-top: 20px;
  padding-bottom: 50px;
  background-image: linear-gradient(transparent, #dae9f0, #dae9f0, #dae9f0, #dae9f0, #dae9f0, #dae9f0, #dae9f0, #dae9f0, transparent);
  position: relative;
}
.sc-service .circle {
  border-radius: 100%;
  border: solid 1px rgba(0, 67, 98, 0.616);
  position: absolute;
  width: 770px;
  height: 770px;
  left: 12%;
  top: 8%;
  margin: auto;
  display: inline-block;
  transition-delay: 1.5s;
}
.sc-service .title {
  margin-bottom: 50px;
}
.sc-service .img__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.sc-service .img__wrap-1 {
  min-height: 630px;
}
.sc-service .img__wrap-1 .img__inner-wrap {
  width: 30%;
}
.sc-service .img__wrap-2 {
  min-height: 650px;
}
.sc-service .img__wrap-2 .img__inner-wrap {
  width: 42%;
}
.sc-service .img__wrap-2 .img__inner-wrap .img__box {
  width: 100%;
}
.sc-service .img__inner-wrap {
  flex-shrink: 0;
}
.sc-service .img__inner-wrap .img__box {
  height: 50%;
}
.sc-service .img__box {
  position: relative;
  flex-shrink: 0;
  border: solid 10px transparent;
}
.sc-service .img__box:before {
  background-color: #dae9f0;
}
.sc-service .img__box.img__1 {
  width: 40%;
}
.sc-service .img__box.img__2 {
  width: 100%;
}
.sc-service .img__box.img__3 {
  width: 100%;
}
.sc-service .img__box.img__4 {
  width: 30%;
}
.sc-service .img__box.img__7 {
  width: 58%;
}
.sc-service .img__box.img__7 .text__box {
  padding-right: 100px;
}
.sc-service .img__box img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  overflow-clip-margin: unset;
}
.sc-service .service__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px;
  transition: 0.3s;
}
.sc-service .service__info:hover {
  background-color: #004362;
}
.sc-service .service__info:hover .text__box {
  opacity: 1;
  transform: none;
}
.sc-service .text__box {
  align-self: flex-start;
  color: #f9fbfc;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
}
.sc-service .text__box ul {
  margin: 20px 0;
  padding-left: 20px;
}
.sc-service .title__box {
  align-self: flex-end;
  color: #ffffff;
  font-size: 40px;
  line-height: normal;
  font-weight: 700;
}

.sc-history {
  padding-top: 50px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
.sc-history .circle {
  border-radius: 100%;
  border: solid 1px rgba(52, 179, 238, 0.185);
  position: absolute;
  width: 900px;
  height: 900px;
  right: 5%;
  top: 6%;
  margin: auto;
  display: inline-block;
}
.sc-history .inner__circle {
  transform: translateY(-10%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 100%;
  border: solid 1px rgba(52, 179, 238, 0.185);
  position: absolute;
  display: inline-block;
}
.sc-history .inner__circle-1 {
  width: 80%;
  height: 80%;
  transform: translate(3%, -3%);
}
.sc-history .inner__circle-2 {
  width: 60%;
  height: 60%;
  transform: translate(5%, -5%);
}
.sc-history .inner__circle-3 {
  width: 40%;
  height: 40%;
  transform: translate(10%, -10%);
}
.sc-history .mobile__only {
  display: none;
}
.sc-history .img__box {
  width: 1040px;
  height: 1040px;
  display: inline-block;
  border: solid 1px rgba(52, 179, 238, 0.185);
  border-radius: 100%;
  position: relative;
}
.sc-history .img__box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
  border-radius: 100%;
  background-image: url(../img/about_company/crane.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sc-history .dot {
  width: 40px;
  height: 40px;
  border: solid 2px #004362;
  background-color: #b6b9bd;
  position: relative;
  border-radius: 100%;
  z-index: 2;
}
.sc-history .dot:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  background-color: #004362;
}
.sc-history .dot:hover + .tip__text .text {
  opacity: 1;
}
.sc-history .tip__box {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.sc-history .tip__text {
  position: absolute;
}
.sc-history .year__text {
  color: #004362;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}
.sc-history .year__text:hover + .text {
  opacity: 1;
}
.sc-history .text {
  color: #004362;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  position: absolute;
  transition: 0.5s;
  opacity: 0;
}
.sc-history .history__line-1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 39%;
  left: -8%;
  z-index: 1;
  transform: rotate(-23deg);
  padding-left: 295px;
}
.sc-history .history__line-1:before {
  content: "";
  height: 10px;
  width: 1175px;
  position: absolute;
  background-color: #004362;
  top: 0;
  left: 0;
  display: inline-block;
}
.sc-history .history__line-1 .tip__box {
  margin-top: -13px;
  transform: rotate(23deg);
}
.sc-history .history__line-1 .tip__box.t-1 .year__text {
  left: -163px;
  top: -55px;
}
.sc-history .history__line-1 .tip__box.t-1 .text {
  width: 249px;
  left: -209px;
  bottom: 135px;
}
.sc-history .history__line-1 .tip__box.t-2 {
  left: 90px;
}
.sc-history .history__line-1 .tip__box.t-2 .year__text {
  top: 22px;
  left: -16px;
}
.sc-history .history__line-1 .tip__box.t-2 .text {
  width: 500px;
  left: 114px;
  bottom: -2px;
}
.sc-history .history__line-1 .tip__box.t-3 {
  left: 63px;
}
.sc-history .history__line-1 .tip__box.t-3 .year__text {
  top: -119px;
  left: -40px;
}
.sc-history .history__line-1 .tip__box.t-3 .text {
  width: 329px;
  left: 60px;
  top: -18px;
}
.sc-history .history__line-1 .tip__box.t-4 {
  left: 156px;
}
.sc-history .history__line-1 .tip__box.t-4 .year__text {
  right: 59px;
  top: 10px;
}
.sc-history .history__line-1 .tip__box.t-4 .text {
  bottom: 123px;
  width: 421px;
  text-align: right;
  right: 74px;
}
.sc-history .history__line-1 .tip__box.t-5 {
  left: 169px;
}
.sc-history .history__line-1 .tip__box.t-5 .dot {
  border-color: #aa1a00;
}
.sc-history .history__line-1 .tip__box.t-5 .dot:before {
  background-color: #aa1a00;
}
.sc-history .history__line-1 .tip__box.t-5 .year__text {
  top: -114px;
  right: 60px;
  color: #aa1a00;
}
.sc-history .history__line-1 .tip__box.t-5 .text {
  width: 312px;
  bottom: 190px;
  left: -63px;
  color: #aa1a00;
}
.sc-history .history__line-1 .tip__box.t-6 {
  left: 141px;
}
.sc-history .history__line-1 .tip__box.t-6 .text {
  width: 200px;
  top: 48px;
  text-align: right;
  left: -68px;
}
.sc-history .history__line-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 35%;
  height: 680px;
  left: 31%;
  padding-top: 10px;
  padding-bottom: 60px;
}
.sc-history .history__line-2:before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  background-color: #004362;
  top: 0;
  left: 0;
  display: inline-block;
}
.sc-history .history__line-2 .tip__box {
  margin-left: -15px;
}
.sc-history .history__line-2 .tip__box.t-1 .year__text {
  top: -115px;
  left: -89px;
}
.sc-history .history__line-2 .tip__box.t-1 .text {
  bottom: 190px;
  width: 348px;
  text-align: right;
  right: 94px;
}
.sc-history .history__line-2 .tip__box.t-2 {
  top: 90px;
}
.sc-history .history__line-2 .tip__box.t-2 .year__text {
  top: -56px;
  right: -80px;
}
.sc-history .history__line-2 .tip__box.t-2 .text {
  left: 215px;
  top: -37px;
  width: 464px;
}
.sc-history .history__line-2 .tip__box.t-3 {
  top: 70px;
}
.sc-history .history__line-2 .tip__box.t-3 .year__text {
  top: -56px;
  left: -140px;
}
.sc-history .history__line-2 .tip__box.t-3 .text {
  left: 83px;
  top: -37px;
  width: 464px;
}
.sc-history .history__line-2 .tip__box.t-4 {
  top: 55px;
}
.sc-history .history__line-2 .tip__box.t-4 .year__text {
  top: -56px;
  right: -80px;
}
.sc-history .history__line-2 .tip__box.t-4 .text {
  left: 215px;
  top: -37px;
  width: 464px;
}
.sc-history .history__line-2 .tip__box.t-5 {
  top: 44px;
}
.sc-history .history__line-2 .tip__box.t-5 .year__text {
  top: -56px;
  left: -140px;
}
.sc-history .history__line-2 .tip__box.t-5 .text {
  left: 83px;
  top: -37px;
  width: 464px;
}
.sc-history .history__line-2 .tip__box.t-6 {
  top: 24px;
}
.sc-history .history__line-2 .tip__box.t-6 .year__text {
  top: -56px;
  right: -80px;
}
.sc-history .history__line-2 .tip__box.t-6 .text {
  left: 215px;
  top: -37px;
  width: 464px;
}
.sc-history .history__line-2 .tip__box.t-7 .year__text {
  top: -56px;
  left: -140px;
}
.sc-history .history__line-2 .tip__box.t-7 .text {
  left: 83px;
  top: -37px;
  width: 464px;
}

.sc-trust {
  padding-top: 100px;
  padding-bottom: 70px;
  background-image: linear-gradient(transparent, #dae9f0, #dae9f0, #dae9f0, #dae9f0);
}
.sc-trust .title {
  margin-bottom: 100px;
}
.sc-trust .partner__logo {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sc-trust .partner__logo img {
  max-width: 100%;
  max-height: 150px;
}
.sc-trust .swiper-box {
  position: relative;
  display: inline-block;
  width: 100%;
}
.sc-trust .arrow__box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
.sc-trust .arrow__box .swiper-partner-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px #aa1a00;
  transform: rotate(45deg);
  z-index: 1;
}
.sc-trust .arrow__box .swiper-partner-arrow.swiper-partner-next {
  right: -10%;
  border-left: none;
  border-bottom: none;
}
.sc-trust .arrow__box .swiper-partner-arrow.swiper-partner-prev {
  left: -10%;
  border-right: none;
  border-top: none;
}

.sc-contact {
  background: url(../img/about_company/contact-bg.webp);
  background-attachment: fixed;
  padding-top: 200px;
  padding-bottom: 200px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.sc-contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to bottom, rgba(0, 67, 98, 0.1), rgba(0, 67, 98, 0.55));
}
.sc-contact .circle {
  border-radius: 100%;
  width: 530px;
  height: 530px;
  border: solid 1px #004362;
  display: inline-block;
  position: relative;
  margin-top: -100px;
  margin-left: 100px;
}
.sc-contact .inner__circle {
  border-radius: 100%;
  width: 360px;
  height: 360px;
  border: solid 1px #004362;
  position: absolute;
  left: 35px;
  bottom: 35px;
}
.sc-contact .contact__info-box {
  display: inline-block;
  width: 100%;
}
.sc-contact .subtitle {
  font-size: 70px;
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 67px;
  color: #fff;
  margin-top: 55px;
}
.sc-contact .contact__box {
  margin-top: 20px;
}
.sc-contact .contact__box a {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  transition: 0.4s;
}
.sc-contact .contact__box a:hover {
  color: #aa1a00;
}
.sc-contact .address__box {
  margin-top: 40px;
  margin-bottom: 40px;
}
.sc-contact .address__box p {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  color: #dae9f0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 29px;
}
.sc-contact .website__link a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  margin-bottom: 0;
  color: #aa1a00;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 29px;
}

.footer {
  display: flex;
  align-items: center;
  background-color: #004362;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer .copyright {
  margin-bottom: 0;
  font-weight: 700;
  color: #aa1a00;
  font-size: 18px;
}
.footer .social {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footer .social a {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 100%;
  margin-right: 5px;
}
.footer .social a:hover {
  opacity: 0.5;
}
.footer .scroll-top {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: auto;
  display: inline-block;
  width: 100%;
  text-align: right;
}
.footer .scroll-top i {
  margin-left: 5px;
}

@media (max-width: 1400px) {
  .sc-banner {
    overflow: hidden;
  }
  .sc-rieltor .bubble__wrap {
    transform: scale(0.8);
    margin-left: -120px;
  }
}
@media (max-width: 1200px) {
  h1 {
    font-size: 74px;
  }
  h3 {
    font-size: 33px;
  }
  .sc-banner .hero__box .title {
    padding-left: 0;
    margin-top: -79px;
  }
  .sc-banner .hero__box .subtitle__box {
    margin-right: 0;
    max-width: 701px;
  }
  .sc-banner .hero__box .subtitle__box .oval {
    right: 0px;
  }
  .sc-banner .hero__box .years {
    font-size: 220px;
  }
  .sc-luck .circle {
    width: 725px;
    height: 725px;
  }
  .sc-luck .point__stat {
    font-size: 50px;
  }
  .sc-luck .info__box {
    padding: 58px 40px 50px 40px;
    margin-top: -49px;
  }
  .sc-luck .info__box .subtitle {
    font-size: 16px;
  }
  .sc-luck .info__box .text__info p {
    font-size: 12px;
  }
  .sc-rieltor {
    background-color: #aa1a00;
    position: relative;
    padding-top: 43px;
    padding-bottom: 20px;
  }
  .sc-rieltor:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.781), #aa1a00);
  }
  .sc-rieltor .title {
    margin-bottom: 32px;
  }
  .sc-rieltor .circle, .sc-rieltor .circle-2 {
    display: none;
  }
  .sc-rieltor .bubble__wrap {
    transform: none;
    margin-left: 0px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .sc-rieltor .bubble__box {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 150px 0 !important;
    border: 2px solid rgb(255, 255, 255) !important;
    background-color: rgb(218, 233, 240) !important;
    border-radius: 10px;
    padding: 30px !important;
    left: 0 !important;
    display: flex;
    flex-wrap: wrap;
  }
  .sc-rieltor .bubble__box .about__box {
    color: #fff !important;
  }
  .sc-rieltor .rieltor__box {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: -130px;
  }
  .sc-rieltor .about__box {
    max-width: 100%;
    padding-left: 12%;
    padding-right: 12%;
    text-align: center;
  }
  .sc-rieltor .rieltor__info {
    order: 1;
  }
  .sc-rieltor .rieltor__info h4 {
    color: rgb(170, 26, 0) !important;
    font-size: 16px;
    font-weight: 700;
  }
  .sc-rieltor .rieltor__info h4 span {
    display: none;
  }
  .sc-rieltor .rieltor__info p {
    font-size: 12px;
    color: #004362 !important;
    line-height: 16px;
  }
  .sc-rieltor .img__box {
    border: none;
    width: 130px;
    height: 130px;
    margin-right: 0;
  }
  .sc-rieltor .img__box img {
    border: none;
  }
  .sc-service .text__box {
    font-size: 15px;
    line-height: 22px;
  }
  .sc-service .title__box {
    font-size: 23px;
  }
  .sc-history {
    position: relative;
    background: url(../img/about_company/history-bg-mob.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-bottom: 20px;
    z-index: 1;
  }
  .sc-history:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 26, 0, 0.3)), to(rgba(170, 26, 0, 0.5)));
  }
  .sc-history .desktop__only {
    display: none;
  }
  .sc-history .mobile__only {
    display: block;
  }
  .sc-history .title {
    text-align: center;
    margin-bottom: 30px;
  }
  .sc-history .title h2 {
    color: #fff;
  }
  .sc-history .title h2 span {
    color: #fff;
  }
  .sc-history .history__line-mob {
    display: inline-block;
    width: 100%;
    position: relative;
  }
  .sc-history .history__line-mob .year__point {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 32px;
  }
  .sc-history .history__line-mob .year__point:last-of-type::after {
    display: none;
  }
  .sc-history .history__line-mob .year__point::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 7px;
    z-index: -1;
    width: 2px;
    height: 100%;
    background-color: #fff;
  }
  .sc-history .history__line-mob .year__point:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #aa1a00;
    border: solid 2px #fff;
  }
  .sc-history .history__line-mob .h__year {
    font-size: 18px;
    display: inline-block;
    width: 100%;
    color: #dae9f0;
    font-family: var(--zr-font-body, 'Montserrat', sans-serif);
    font-weight: 700;
    line-height: 24px;
  }
  .sc-history .history__line-mob p {
    font-size: 12px;
    color: #dae9f0;
    line-height: 17px;
    font-weight: 400;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 50px;
  }
  .sc-banner h1 span {
    padding-left: 0 !important;
  }
  .sc-banner .hero__box {
    padding-bottom: 100px;
  }
  .sc-banner .hero__box .subtitle__box .oval {
    top: -110px;
    width: 110px;
    height: 110px;
  }
  .sc-luck {
    overflow: hidden;
    padding-bottom: 30px;
  }
  .sc-luck .circle {
    width: 500px;
    height: 500px;
    top: auto;
    bottom: 20px;
    left: 10%;
  }
  .sc-luck .points {
    max-width: 400px;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sc-luck .point__box {
    margin: 5px 0;
    max-width: 50%;
    padding: 0 10px 0 0 !important;
    text-align: left !important;
  }
  .sc-luck .point__box.p__1 {
    order: 2;
  }
  .sc-luck .point__box.p__2 {
    order: 1;
  }
  .sc-luck .point__box.p__3 {
    max-width: 100%;
    order: 3;
    padding-left: 25% !important;
  }
  .sc-luck .point__box.p__4 {
    order: 5;
  }
  .sc-luck .point__box.p__5 {
    order: 4;
    padding-top: 30px !important;
  }
  .sc-luck .point__box.p__6 {
    text-align: right !important;
    max-width: 100%;
    order: 6;
  }
  .sc-luck .point__box.p__6 .point {
    margin-left: auto;
  }
  .sc-luck .point__stat {
    font-size: 32px;
  }
  .sc-luck .point__name {
    font-size: 10px;
  }
  .sc-luck .info__box {
    margin-top: 0;
    border-radius: 0px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .sc-highlights .circle {
    transform: scale(0.6);
  }
  .sc-highlights .info__box .num {
    font-size: 260px;
  }
  .sc-highlights .info__box h4 {
    font-size: 38px;
    line-height: 41px;
  }
  .sc-contact {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 100vh;
    display: flex;
    align-content: center;
    align-items: center;
    background-attachment: inherit;
    background-position: center center;
  }
  .sc-contact .circle {
    width: 220px;
    height: 220px;
    margin-top: 50px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
  }
  .sc-contact .inner__circle {
    width: 140px;
    height: 140px;
    left: 51px;
    bottom: 21px;
  }
  .sc-contact .contact__info-box {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sc-contact .subtitle {
    font-size: 32px;
    line-height: 44px;
    margin-top: 32px;
  }
  .sc-contact .contact__box a {
    font-size: 21px;
  }
  .sc-contact .address__box p {
    font-size: 21px;
  }
  .sc-contact .website__link a {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 34px;
  }
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 115px;
  }
  .header nav {
    max-width: 74vw;
  }
  .header nav .logo-white {
    max-width: 80px;
  }
  .header nav ul.main li a {
    font-size: 14px;
  }
  .header .nav__inner-wrap {
    display: flex;
    flex-wrap: wrap;
    min-height: 100%;
    padding: 45px 20px 35px 20px;
  }
  .header .burger {
    width: 55px;
  }
  .header .burger span {
    margin-left: 0;
    left: 0;
    width: 100%;
  }
  .header .burger span:before {
    left: 0;
    width: 100%;
  }
  .header .burger span::after {
    left: 0;
    width: 100%;
  }
  .header .contact a {
    padding: 7px 10px;
    font-size: 12px;
  }
  .sc-banner .hero__box {
    margin-top: 47px;
    padding-bottom: 12px;
  }
  .sc-banner .hero__box .title {
    margin-top: -43px;
    position: relative;
  }
  .sc-banner .hero__box .title .start__date {
    position: absolute;
    bottom: 18px;
    font-size: 10px;
    margin-left: 0;
    margin-top: 0;
    left: auto;
    right: 0;
  }
  .sc-banner .hero__box .years {
    font-size: 30vw;
    margin-left: 0;
  }
  .sc-banner .hero__box .subtitle__box .oval {
    position: relative;
    top: 0;
  }
  .sc-banner .hero__box .stats {
    padding: 20px 18px;
    max-width: 100%;
    width: 100%;
  }
  .sc-banner .hero__box .stats h4 {
    font-size: 25px;
  }
  .sc-banner .hero__box .stat__list {
    flex-wrap: wrap;
  }
  .sc-banner .hero__box .stat__list span {
    width: auto;
  }
  .sc-banner .hero__box .stat__list .single__stat {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin: 10px 0;
  }
  .sc-banner .hero__box .stat__list .stat__top-text {
    order: 2;
    margin-left: 20px;
    font-size: 10px;
  }
  .sc-banner .hero__box .stat__list .stat__bottom-text {
    order: 1;
    font-size: 38px;
  }

  .sc-highlights {
    padding-top: 56px;
  }
  .sc-highlights .title {
    margin-bottom: 0;
  }
  .sc-highlights .circle {
    transform: none;
  }
  .sc-highlights .highlight-col {
    margin: 0px 0;
  }
  .sc-highlights .highlight-col .circle-1 {
    width: 247px;
    height: 247px;
    right: -45%;
    left: auto;
    top: 27%;
  }
  .sc-highlights .highlight-col .circle-1-inner {
    top: 170%;
    width: 78%;
    height: 78%;
    right: 15%;
  }
  .sc-highlights .highlight-col .circle-2 {
    left: -84%;
    top: -72%;
  }
  .sc-highlights .highlight-col .circle-3 {
    width: 247px;
    height: 247px;
    right: -45%;
    left: auto;
    bottom: 27%;
  }
  .sc-highlights .highlight-col:nth-of-type(odd) .info__box {
    text-align: left;
  }
  .sc-highlights .info__box .num {
    font-size: 216px;
  }
  .sc-highlights .info__box h4 {
    font-size: 26px;
    line-height: 31px;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sc-highlights .highlight__text {
    font-size: 14px;
    line-height: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .sc-service {
    background-color: #dde9f0;
  }
  .sc-service .title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .sc-service .img__wrap {
    flex-wrap: wrap;
    width: 100% !important;
    min-height: auto;
    margin-left: 0;
  }
  .sc-service .img__inner-wrap {
    width: 100% !important;
  }
  .sc-service .img__box {
    width: 100% !important;
    height: auto !important;
    border: none;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .sc-service .img__box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(170, 26, 0, 0.4));
  }
  .sc-service .img__box.img__7 .text__box {
    padding-right: 0px;
  }
  .sc-service .service__info {
    z-index: 2;
    align-content: flex-end;
    position: relative;
    min-height: 450px;
    padding-top: 40%;
  }
  .sc-service .service__info:hover {
    background-color: transparent;
  }
  .sc-service .service__info:hover .text__box {
    transform: none;
    opacity: 1;
  }
  .sc-service .text__box {
    opacity: 1;
    transform: none;
    order: 2;
  }
  .sc-service .title__box {
    order: 1;
    font-weight: 600;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    font-size: 18px;
    margin-bottom: 18px;
    width: 100%;
  }
  .sc-trust {
    background-color: #dae9f0;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sc-trust .title {
    margin-bottom: 21px;
  }
  .sc-trust .arrow__box .swiper-partner-arrow.swiper-partner-prev {
    left: 0;
  }
  .sc-trust .arrow__box .swiper-partner-arrow.swiper-partner-next {
    right: 0;
  }
  .sc-trust .partner__logo img {
    max-width: 100%;
    max-height: 88px;
  }
  .footer {
    text-align: center;
  }
  .footer .copyright {
    margin: 20px 0 15px 0;
  }
  .footer .scroll-top {
    text-align: center;
  }
}