@charset "UTF-8";
@import "../fonts/fonts.css";
body {
  box-sizing: border-box;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  padding: 0;
  --black: #141415;
  --text: #2A2A2C;
  --yellow: #FCB326;
  --blue: #31637A;
  --blue-light: #10AC9E;
  --bg: #31637A;
}
div,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
a,
input,
textarea,
label,
button,
span {
  box-sizing: border-box;
}
*::-moz-selection {
  color: var(--black);
  background-color: var(--yellow);
}
*::selection {
  color: var(--black);
  background-color: var(--yellow);
}
a {
  cursor: pointer;
  transition: 0.3s;
}
a,
a:hover {
  text-decoration: none;
}
p {
  font-size: 18px;
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol {
  counter-reset: list;
}
img {
  max-width: 100%;
}
input,
button,
textarea {
  outline: none;
}
form {
  width: 100%;
}
textarea {
  resize: none;
}
.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
.wrapper {
  position: relative;
}
@media (min-width: 1860px) {
  .container {
    max-width: 1920px;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.between {
  justify-content: space-between;
}
.flex.align-center {
  align-items: center;
}
.d-none {
  display: none;
}
.ttl{
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.ttl.lg {  
  font-size: 56px;  
}
.ttl.md {
  font-size: 34px;
}
.ttl.sm {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: normal;
}
.subttl {
  display: flex;
  align-items: center;
  max-width: max-content;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue);
  border-radius: 12px;
  background: rgba(49, 99, 122, 0.10);
  text-transform: uppercase;
  padding: 10px 15px;
}
.subttl.white {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}
.upper{
  text-transform: uppercase;
}
.fz22 {
  font-size: 22px;
}
.fz20 {
  font-size: 20px;
}
.fz18 {
  font-size: 18px;
}
.fz13 {
  font-size: 13px;
}
.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.img-absolute {
  display: block;
  position: absolute;
}
.text {
  color: var(--text);
}
.white,
.ttl.white {
  color: #fff;
}
.yellow{
  color: var(--yellow);
}
.blue, .ttl.blue{
  color: var(--blue);
}
.blue-light, .ttl.blue-light{
  color: var(--blue-light);
}

.mb240 {
  margin-bottom: 240px;
}
.mb200 {
  margin-bottom: 200px;
}
.mb140 {
  margin-bottom: 140px;
}
.mb110 {
  margin-bottom: 110px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb10 {
  margin-bottom: 10px;
}

.padding-section {
  padding: 130px 0;
}
.padding-100 {
  padding: 100px 0;
}
.padding-80 {
  padding: 80px 0;
}
.mw1600 {
  max-width: 1600px;
}
.mw1240 {
  max-width: 1242px;
}
.mw1200 {
  max-width: 1200px;
}
.mw1000 {
  max-width: 1000px;
}
.mw800 {
  max-width: 800px;
}
.text-justify{
  text-align: justify;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  height: 46px;
  padding: 0 22px;
  cursor: pointer;
  transition: 0.4s;
  background: var(--yellow);
  max-width: max-content;
  outline: none;
  border: none;
  border-radius: 23px;
  white-space: nowrap;
  letter-spacing: -0.32px;
}
.btn:hover {
  background: var(--black);
  color: var(--yellow);
}
button.btn {
  max-width: 100%;
}
.btn.small {
  height: 36px;
  font-size: 16px;
  padding: 0 18px;
}
div.btn {
  pointer-events: none;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
}
.modal-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-wrapper {
  background: #fff;
  position: relative;
  width: calc(100% - 20px);
  max-width: 900px;
  border-radius: 0 20px 20px 0;
  overflow-y: auto;
}
#thanksModal .modal-wrapper{
  padding: 40px 20px;
}
.modal-wrapper .close, .mobile-menu .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(49, 99, 122, 0.10);
  font-size: 16px;
  line-height: 1;
  color: #31637A;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: .3s;
}
#contactModal .modal-wrapper{
  background: url(/images/form-bg.jpg) no-repeat left / 50% 100% #fff;  
}
#contactModal .form-box, #priceModal .form-box{
  width: 50%;
  padding: 68px 30px 60px;
  margin-left: auto;
}
#contactModal .close, #priceModal .close{
  top: 20px;
  right: 20px;
}
#priceModal .modal-wrapper{
  background: url(/images/price-form-bg.jpg) no-repeat left / 50% 100% #fff;
}
.input{
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background: rgba(49, 99, 122, 0.08);
  border: 1px solid rgba(49, 99, 122, 0.08);
  font-size: 16px;
  color: var(--black);
  padding: 0 20px;
  transition: .5s;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 12px;
}
textarea.input{
  height: 120px;
  padding: 15px 20px;
  resize: none;
  margin-bottom: 30px;
}
#priceModal textarea.input{
  margin-bottom: 12px;
}
#priceModal .input.mb30{
  margin-bottom: 30px;
}
.input:focus {
  border-color: var(--blue);
}

.input::placeholder{
  font-size: 16px;
  color: #878787;
}
.uForm__preload {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: url(/images/loading.svg) no-repeat center / 120px rgba(0, 0, 0, .8);
}
#preloader{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  outline: 0;
  background: #fff;
}
#preloader video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
#preloader .mobile{
  display: none;
}
.ww {
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
}
.ww.fadeUp {
  transform: translateY(200px);
}
.ww.fadeLeft {
  transform: translateX(-100%);
}
.ww.fadeRight {
  transform: translateX(100%);
}
.ww.zoomIn {
  transform: scale3d(0.3, 0.3, 0.3);
}
.ww.dn {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
  transition-duration: 1s;
}

.breadcrumb {
  justify-content: center;
  flex-wrap: wrap;
}
.breadcrumb,
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  
}
.breadcrumb .divider {
  margin: 0 5px;
}
.breadcrumb a{
  color: var(--blue);
  margin-right: 10px;
}
.breadcrumb a:hover{
  color: var(--yellow);
}
.breadcrumb a:after{
  content: '>';
  margin-left: 10px;
}
.breadcrumb li > span {
  color: #878787;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination-list li a,
.pagination-list li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  font-size: 16px;
  line-height: 1;
  margin: 5px;
  transition: 0.5s;
  border-radius: 50%;
}

.pagination-list li a {
  color: var(--black);
}
.pagination-list li .icon-angle-double-right:before,
.pagination-list li .icon-angle-double-left:before,
.pagination-list li .icon-angle-right:before,
.pagination-list li .icon-angle-left:before,
.pagination-list li span {
  color: var(--black);
}
.pagination-list li:hover:not(.disabled) .icon-angle-double-right:before,
.pagination-list li:hover:not(.disabled) .icon-angle-double-left:before,
.pagination-list li:hover:not(.disabled) .icon-angle-right:before,
.pagination-list li:hover:not(.disabled) .icon-angle-left:before,
.pagination-list li.active a,
.pagination-list li.active span,
.pagination-list li:hover a,
.pagination-list li.arrow:hover a {
  background: var(--yellow);
}
.pagination-list li.arrow a {
  background: transparent;
}
.pagination-list li.arrow span {
  color: var(--black);
}
.pagination-list li .icon-angle-double-right:before {
  content: '>>';
}
.pagination-list li .icon-angle-double-left:before {
  content: '<<';
}
.pagination-list li .icon-angle-right:before {
  content: '>';
}
.pagination-list li .icon-angle-left:before {
  content: '<';
}
.com-content-category-blog__counter {
  text-align: right;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--text);
}
::-webkit-scrollbar-thumb {
  background-color: var(--yellow);
  border-radius: 3px;
}
html,
body,
div,
* {
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) var(--text);
}

.burger-menu {
  display: none;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  transition: .5s;
  font-size: 20px;
  color: var(--yellow);
  position: relative;
  cursor: pointer;
}
.burger-menu:before {
  transition: inherit;
}
.body-wrapper {
  min-height: 100vh;
  display: flex;
  position: relative;
  flex-direction: column;
  overflow-x: hidden;
}
.main {
  flex: 1;
}

.body-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 110;
  transition: 600ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.body-wrapper.hidden:before {
  opacity: 1;
  visibility: visible;
}

#toTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background: var(--blue);
  width: 70px;
  height: 70px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 20;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
#toTop.show {
  visibility: visible;
  opacity: 1;
}
.header {
  position: relative;
  width: calc(100% - 20px);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: #1C333E;
  transition: .6s;
  padding: 12px 40px;
  box-sizing: border-box;
  margin: 0 auto;
}

.header.sticky,
.main-page .header.sticky {
  position: fixed;
  animation: flash 0.5s linear 1;
  background: rgba(28, 51, 62, 0.95);
}
@keyframes flash {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header .wrapper{
  width: 100%;
  max-width: 1620px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.header .logo {
  display: flex;
  align-items: center;
  width: 160px;
  margin-right: auto;  
}
.header .mod-menu{
  display: flex;
  align-items: center;
}
.header .mod-menu > li{
  display: flex;
  align-items: center;
  margin: 0 15px;
}
.header .mod-menu a{
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
}
.header .mod-menu a:hover{
  color: var(--yellow);
}
.header .btn{
  color: #fff;
  margin-left: 15px;
}
.header .btn:hover{
  color: var(--yellow);
}
.header .mod-menu .parent{
  position: relative;
}
.header .mod-menu > .parent > a{
  padding-right: 15px;
}
.header .mod-menu > .parent > a:before,
.header .mod-menu > .parent > a:after
 {    
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2px, -50%) rotate(45deg);
}
.header .mod-menu > .parent > a:after
{
  transform: translate(2px, -50%) rotate(-45deg);
}
.header .mod-menu > .parent:hover > a:before
 {
  transform: translate(-2px, -50%) rotate(-45deg);
}
.header .mod-menu > .parent:hover > a:after
{
  transform: translate(2.5px, -50%) rotate(45deg);
}
.header .mod-menu .mod-menu__sub{
  width: 525px;
  border-radius: 0px 0px 20px 20px;
  background: #1C333E;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: -15px;
  transition: all 0.3s ease-in-out;
  z-index: 5;
  padding: 20px 10px;
}
.header .sticky  .mod-menu__sub{
  background: rgba(28, 51, 62, 0.95);
}
.header .mod-menu .parent:hover .mod-menu__sub{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .mod-menu .mod-menu__sub a{
  display: flex;
  align-items: center;
  font-weight: 500;
  border-radius: 6px;
  letter-spacing: -0.32px;
  transition: .5s;
  padding: 12px 10px;
}
.header .mod-menu .mod-menu__sub a:hover{
  background: rgba(255, 255, 255, 0.04);
  color: var(--yellow);
}
.header .mod-menu .mod-menu__sub a:before{
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--yellow);
  margin-right: 10px;
}
.mobile-menu {
  display: flex;
  flex-direction: column;  
  background-color: #fff;
  position: fixed;
  right: -300px;
  top: 0px;
  height: 100%;
  width: 300px;
  z-index: 10009;
  transition: 0.4s linear;
  overflow-y: auto;
  border-radius: 12px 0px 0px 12px;
  padding: 60px 40px 40px;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .logo{
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.mobile-menu .nav{
  flex: 1;
}
.mobile-menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.mobile-menu li a{
  display: flex;
  width: 100%;
  align-items: center;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}
.mobile-menu .btn{
  flex-shrink: 0;
  width: 220px;
  max-width: 220px;
}
.mobile-menu .parent > a{
  max-width: max-content;
  padding-right: 20px;
}
.mobile-menu .parent > a:before,
.mobile-menu .parent > a:after
{    
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  display: block;
  width: 8px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: var(--black);
  transform: translate(-2px, -50%) rotate(45deg);
}
.mobile-menu .parent > a:after
{
  transform: translate(2px, -50%) rotate(-45deg);
}
.mobile-menu .parent > a.active:before
{
  transform: translate(-2px, -50%) rotate(-45deg);
}
.mobile-menu .parent > a.active:after
{
  transform: translate(2.5px, -50%) rotate(45deg);
}
.mobile-menu .mod-menu__sub{
  display: none;
  margin-top: 20px;
}
.mobile-menu .mod-menu__sub li{
  margin-bottom: 10px;
}
.mobile-menu .mod-menu__sub a{
  font-size: 12px;
  padding-left: 15px;
}
.mobile-menu .mod-menu__sub a:before{
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  top: .55em;
  left: 0;
}
.footer{
  width: calc(100% - 20px);
  box-sizing: border-box;
  background: #1C333E;
/*  background: url(/images/footer-bg.jpg) no-repeat center bottom / auto 40px #1C333E;*/
  border-radius: 40px 40px 0 0;
  padding: 130px 30px 0;
  margin-left: auto;
  margin-right: auto;
}
.footer .top{
  padding: 0 100px 40px 100px;
}
.footer-request{
  width: calc(50% + 10px);
}
.footer .subttl{
  font-size: 16px;
  font-weight: 500;
}
.footer-menu{
  width: calc(22% - 20px);
  padding-right: 5%;
}
.footer-menu a{
  display: block;
  color: #DBDBDB;
  margin-bottom: 20px;
}
.footer-menu a:hover{
  color: var(--yellow);
}
.footer-menu .item-116{
  display: none;
}
.footer-contacts{
  width: 28%;
}
.footer-contacts a{
  display: block;
  position: relative;
  color: #DBDBDB;
  padding-left: 36px;
  margin-bottom: 30px;
}
.footer-contacts a:before{
  position: absolute;
  top: 0.2em;
  left: 0;
  font-size: 1.5em;
  color: var(--yellow);
}
.footer-contacts a:hover{
  color: var(--yellow);
}
.social a{
  display: flex;
  align-items: center;
  width: 35px;  
  margin-right: 10px;
}
.footer .social{
  padding-left: 26px;
}
.footer .social a{
  padding: 0;
}
.footer .bottom{
  border-radius: 40px;
  border-top: 1px solid rgba(49, 99, 122, 0.50);
  padding: 20px 40px;
}
.footer .copy{
  color: #DBDBDB;
  font-size: 12px;
}

/*========================*/
/*.main-intro{
  width: calc(100% - 20px);
  max-height: calc(100vh - 70px);
  position: relative;
  overflow: hidden;
  padding-bottom: 48%;
  margin-top: -10px;
  margin-left: auto;
  margin-right: auto;
}
.main-intro video, .main-intro img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}*/
.main-intro{
  width: calc(100% - 20px);
  height: calc(100vh - 50px);
  position: relative;
  background: url(/images/main/intro.jpg) no-repeat center / cover;
  padding: 11% 0 17%;
  margin: -10px auto 0;
}
.main-intro .text-box{
  max-width: 1270px;
}
.main-intro .ttl.xlg{
  font-size: 120px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.main-intro .text-wrap{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  padding: 50px;
}
.main-intro .text-wrap .wrapper{
  justify-content: center;
}
.main-intro .text-wrap a{
  margin: 0 20px;
}
@media (min-width: 1300px){
  .main-intro .text-wrap .wrapper:after{
    content: '';
    width: 1px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    margin: auto;
  }
  .main-intro .text-wrap a{
    min-width: 340px;
    margin: 0 45px;
  }
}


.main-counters .wrapper{
  width: calc(100% - 20px);
  max-width: 1900px;
  background: url(/images/main/count-bg.jpg) no-repeat center / cover;
  border-radius: 0 0 40px 40px;
  padding: 140px 70px;
  margin-left: auto;
  margin-right: auto;
}
.main-counters .counter-wrapper{
  position: relative;
  padding-bottom: 15px;
}
.main-counters .column{
  width: 29%;
  position: relative;
  z-index: 3;
}
.main-counters .column:first-child{
  text-align: right;
}
.main-counters .item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  border: 1px solid rgba(16, 172, 158, 0.50);
  background: rgba(28, 51, 62, 0.20);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  margin-bottom: 20px;
}
.main-counters .item .ttl.md{
  color: var(--yellow);
  margin-bottom: 12px;
}
.main-counters .item .text{
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
@media(min-width: 1300px){
  .main-counters .item:not(:first-child){
    min-height: 200px;
  }
}

.main-counters .img-box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37.5%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.main-counters .img-box img{
  width: 80%;
}
@media(min-width: 1300px){
.main-counters .img-box:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: -9%;
  left: 0;
  right: 0;
  background: url(/images/main/count-lines.svg) no-repeat center / contain;
}
}

.main-slider-section .wrapper{
  padding-left: 10px;
  padding-right: 10px;
}
.main-slider{
  position: relative;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.slider-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-slider .img-wrap{
  padding-bottom: 68%;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.main-slider-nav{
  position: absolute;
  width: 130%;
  height: 0;
  top: 0;
  left: -15%;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.slider-prev, .slider-next{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.50);
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  font-size: 12px;
  position: relative;
  z-index: 5;
  cursor: pointer;
}
.lg-backdrop {
  background: rgba(0,0,0,.95);
 }
 .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--yellow);
}
.main-advan .wrapper{
  width: calc(100% - 20px);
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  padding: 75px 50px;
  margin-left: auto;
  margin-right: auto;
}
.main-advan .item{
  width: calc(25% - 15px);
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(16, 172, 158, 0.50);
  background: rgba(28, 51, 62, 0.20);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
}
.main-advan .ico{
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.10);
  margin: 0 auto 15px;
}
.main-advan .ttl{
  color: #fff;
}
.main-about .wrapper{
  overflow: hidden;
}
.main-about .text-box{
  width: 38.5%;
  margin-left: 3%;
}
.main-about .ttl.md{
  max-width: 500px;
}
.main-about .img-wrap{
  position: absolute;
  width: calc(50% - 10px);
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(/images/main/about.jpg) no-repeat center / cover;
  border-radius: 40px;
}
.main-spheres .item{
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
  border-radius: 40px 40px 20px 20px;
  overflow: hidden;
}
.main-spheres .img-box{
  display: flex;
}
.main-spheres .text-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  padding: 40px;
  margin-top: -1px;
}
.main-spheres .text-box .title{
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.main-spheres .text-box .title:before{
  content: '';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--yellow);
  margin-right: 15px;
}
.main-spheres .text{
  flex: 1;
}

/*================================*/
.page-header .wrapper{
  width: calc(100% - 20px);
  max-width: 1920px;
  background: url(/images/head-bg.png) no-repeat 20% bottom / cover var(--yellow);
  border-radius: 0 0 40px 40px;
  padding: 120px 10px 40px;
  margin: -10px auto 0;
}
.page-header .ttl.lg{
  color: #fff;
}
.page-header .breadcrumb span, .page-header .breadcrumb a{
  color: #fff;
  transition: .4s;
}
.page-header .breadcrumb a:hover span{
  color: var(--yellow);
}
.wrapper-1620{
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}
.default-list li{
  position: relative;
  padding-left: 23px;
  margin-bottom: 20px;
}
.default-list li:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  top: .55em;
  left: 0;
}
.page-about .intro .first{
  padding-right: calc(50% + 30px);
}
.page-about .intro .first .img-wrap{
  width: calc(50% - 30px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 20px;
  background: url(/images/about/img1.jpg) no-repeat center / cover;
}
.page-about .intro .second .img-wrap{
  width: calc(50% - 30px);
  border-radius: 20px;
  background: url(/images/about/img2.jpg) no-repeat center / cover;
}
.page-about .intro .second .text-box{
  width: calc(50% - 30px);
  padding: 65px 0;
}
.page-about .intro .second .text{
  font-size: 22px;
}
.page-about .video-block .wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-about.page-struct .video-box{
  width: calc(100% - 20px);
  max-width: 1920px;
  position: relative;
  background: url(/images/about/vid1.jpg) no-repeat center / cover;
  border-radius: 40px;
  padding-bottom: 46.5%;
  margin: 10px auto 20px;
}
@media(min-width: 1300px){
  .page-about .video-box{order: 2}
}
.page-about .video-link{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 2;
}
.page-about .video-box:before{
  content: '';
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/about/play.svg) no-repeat center / contain;
  margin: auto;
}
.page-about .team .text-box{
  width: 37%;
}
.page-about .team .img-wrap{
  width: calc(50% - 30px);
  border-radius: 20px;
  background: url(/images/about/img3.jpg) no-repeat center / cover;
}
.page-about .garant .wrapper{
  display: flex;
  justify-content: center;
  background: url(/images/about/ban-bg.jpg) no-repeat center / cover;
  border-radius: 40px;
}
.page-about .garant .img-wrap{
  width: 34.5%;
  background: url(/images/about/ban-img.png) no-repeat center / contain;
}
.page-about .garant .text-box{
  width: calc(50% - 30px);
  padding: 90px 10% 90px 0;
}
.direct .wrapper{
  max-width: 1840px;
  margin-left: auto;
  margin-right: auto;
}
.direct .item{
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  border-radius: 40px;
  overflow: hidden;
  margin: 0 10px 20px;
}
.direct .item.kolos{
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media (min-width: 1300.1px){
  .page-struct .direct .columns-3 .item{
    width: calc(33.3% - 20px);
  }
  .page-struct .direct .columns-3 .item .img-box{
    padding-bottom: 67%;
  }
}

.direct .item .img-box{
  position: relative;
  background: #E2ECF1;
  padding-bottom: 55.5%;
}
.direct .item .img-box img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.direct .item .text-box{
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  position: relative;
  padding: 40px;
}
@media (min-width: 1300px){
  .direct .item .text-box:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 100%;
    background: url(/images/about/pattern.svg) no-repeat left center / cover;
  }
  .direct .columns-3 .item .text-box:after{
    display: none;
  }
}

.direct .item .name{
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 5px;
}
.direct .item .position{
  flex: 1;
  width: 100%;
  color: #fff;
  font-size: 24px;  
  margin-bottom: 20px;
}
.direct .item .icon-tel{
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  padding-top: 20px;
}
.direct .item .icon-tel:before{
  color: var(--yellow);
  margin-right: 12px;
}
.lg-outer .lg-video-cont {
  max-width: 1200px!important;
}
/*==============================*/

.page-develop .intro{
  padding: 130px 0 80px;
}
.page-develop .intro .ttl.md{
  max-width: 1300px;
}
.page-develop .img-wrap{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding-bottom: 53.8%;
}
.page-develop .intro .img-wrap{
  padding-bottom: 26%;
}
.page-develop .intro .ttl.sm{
  max-width: 1200px;
}
.page-develop .text-box{
  display: flex;
  flex-direction: column;
  width: calc(50% - 30px);
}
.ttl.grad{
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  color: #fff;
  position: relative;
  padding: 20px 30px;  
}
.ttl.grad.centered{
  justify-content: center;
}
.ttl.grad.yellow{
  background: linear-gradient(90deg, #F67F23 0%, #FCB326 100%);
}
.ttl.grad:before{
  font-size: 35px;
  margin-right: 20px;
}
@media (min-width: 1200px){
.ttl.grad:after{
  content: '';
  width: 34%;
  height: 80px;
  background: url(/images/line.png) no-repeat right center / contain;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto 0;
}
.ttl.grad.centered:after{
  width: calc(100% - 60px);
  left: 30px;
  background: url(/images/line-centered.png) no-repeat center / contain;
}
}
.ttl.grad span{
  position: relative;
  z-index: 2;
}
.page-develop .soc .ttl.sm{
  min-height: 90px;
}
.page-develop .padding-section{
  padding: 80px 0;
}
.page-develop .soc .wrapper{
  border-radius: 40px;
  background: #F5F9F9;  
}
.page-develop .pay .text-wrap{
  flex: 1;
  min-height: 200px;
}
.page-develop .grom .wrapper{
  border-radius: 40px;
  background: #F5F9F9;
}
.page-develop .grom .text-wrap{
  flex: 1;
  min-height: 150px;
}
.page-prices .wrapper{
  max-width: 1820px;
  padding: 80px 0 90px;
  margin-left: auto;
  margin-right: auto;
}
.page-prices .price-list .item{
  width: calc(33.3% - 13px);
  margin-bottom: 40px;
}
.page-prices .price-list .img-box{
  position: relative;
  border-radius: 40px 40px 0 0;
  overflow: hidden;
  padding-bottom: 84%;
}
.page-prices .price-list .img-box img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.page-prices .price-list .item.kolos{
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-radius: 40px;
}
.page-prices .price-list .title{
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 25px;
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.84px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
}
.page-prices .price-list .info-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 40px 40px;
  border: 1px solid #31637A;
  padding: 25px 40px 40px;
}
.page-prices .price-list .price{
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.page-prices .price-list .price:before{
  content: ">";
  color: var(--yellow);
  margin-right: 10px;
}
.page-struct .direct .wrapper{
  justify-content: center;
  border-radius: 40px;
  background: #F5F9F9;
  padding-top: 130px;
  padding-bottom: 80px;
}
.page-struct .direct .item{
  width: calc(50% - 50px);
}
.page-struct .direct .ttl.md{
  width: 100%;
}
.page-struct .map-section .wrapper{
  background: url(/images/chub/map-bg.jpg) no-repeat center / cover var(--blue);
  border-radius: 40px;
}
.page-struct .map-section .img-wrap{
  width: 43%;
  padding-bottom: 43%;
  background: url(/images/chub/map.png) no-repeat center / cover;
}
.page-struct .map-section .text-box{
  width: 47%;
}
.page-struct .gallery{
  padding: 80px 0 130px;
}
.swiper-notification{
  display: none;
}
.gal-slider{
  position: relative;
  width: 73%;
  margin-left: auto;
  margin-right: auto;
}
.gal-slider .img-wrap{
  padding-bottom: 46%;
  border-radius: 40px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.gal-slider-nav{
  position: absolute;
  width: 130%;
  height: 0;
  top: 0;
  left: -15%;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.page-struct .video-box{
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 20px 20px;
  padding-bottom: 46.5%;
  margin-top: -10px;
}
.page-struct .video-link{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 2;
}
.page-struct .video-box:before{
  content: '';
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/about/play.svg) no-repeat center / contain rgba(28, 51, 62, .2);
  border-radius: 50%;
  margin: auto;
}
.page-announce .intro-img{
  display: block;
  border-radius: 20px;
}
.page-announce .wrapper{
  padding: 130px 0;
}
.page-announce .intro-text{
  font-style: italic;  
  text-align: left;
}
.page-announce .intro-text p{
  font-size: 22px;
  font-weight: 600;
}
.page-announce .intro-text a{
  color: #10AC9E;
}
.page-announce .intro-text a:hover{
  color: var(--blue);
}
.page-announce .caption{
  border-radius: 12px;
  background: #F5F9F9;
  text-align: left;
  padding: 12px 35px;
}
.page-announce .caption .ico{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background:url(/images/logo-sm.svg) no-repeat center / contain;
  margin-right: 20px;
}
.page-contacts .wrapper{
  max-width: 1400px;
  margin: 130px auto 80px;
}
.page-contacts .contact-box{
  width: calc(50% - 20px);
  border-radius: 12px;
  border: 1px solid #31637A;
  background: #F5F9F9;
  box-shadow: 2px 2px 4px 0px rgba(49, 99, 122, 0.20);
}
.page-contacts .contact-logo{
  display: flex;
  align-items: center; 
  justify-content: center;
  padding: 20px;  
}
.page-contacts .contact-logo img{
  width: 48.5%;
}
.page-contacts .text-box{
  background: url(/images/contacts/pattern.svg) no-repeat right center / auto 100%;
  padding: 54.5px 20% 34.5px 40px;
}
.page-contacts .text-box a{
  display: flex;
  color: var(--text);
  position: relative;
  padding-left: 36px;
  margin-bottom: 20px;
}
.page-contacts .text-box a:hover{
  color: var(--blue);
}
.page-contacts .text-box a:before{
  position: absolute;
  top: 0.2em;
  left: 0;
  font-size: 1.5em;
  color: #10AC9E;
}
.news-page .wrapper{
  width: calc(100% - 20px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.news-page .publication-date{
  font-size: 16px;
}
.news-page .item-image img, .articleBody img{
  width: 100%;
  border-radius: 20px;
}
.articleBody p{
  font-size: 22px;
}
.articleBody p a{
  color: #10AC9E;
}
.articleBody p a:hover{
  color: var(--blue);
}
.articleBody blockquote{
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px;
}
.articleBody .caption{
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: #F5F9F9;
  text-align: left;
  padding: 12px 35px;
}
.articleBody .caption img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 20px;
}
.articleBody .caption .ava{
  border: 2px solid #10AC9E;
}
.articleBody .caption .capt-logo{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: url(/images/logo-sm.svg) no-repeat center / 40%;
  border: 2px solid #10AC9E;
  flex-shrink: 0;
  margin-right: 20px;
}
.articleBody .caption .text{
  font-size: 18px;
}
.articleBody .caption .name{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.articleBody .gal-slider{
  width: 100%;
}
.articleBody .video-box{
  width: 100%;
  max-width: 750px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding-bottom: 34%;
  margin-left: auto;
  margin-right: auto;
}
.articleBody .video-link{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 2;
}
.articleBody .video-box:before{
  content: '';
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/images/about/play.svg) no-repeat center / contain rgba(0, 0, 0, 0.5);
  margin: auto;
}
.cat-page .wrapper{
  width: calc(100% - 20px);
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}
.news-flex{
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
}
.news-card{
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 20px);
  margin: 0 10px 80px;
}
.news-card .publication-date{
  font-size: 16px;
  margin-bottom: 12px;
}
.news-card .name{
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
@media (min-width: 768.1px){
  .news-card .name{
  min-height: 62px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  }
}
.news-card .img-box{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 62.4%;
  margin-bottom: 20px;
}
.news-card .img-box img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 1.2s;
}
.news-card .img-box:hover img{
  transform: scale(1.05);
}
.news-card .text{
  flex: 1;
  margin-bottom: 25px;
}

/*=========================*/
.page-sphere .intro{
  padding: 130px 0 80px;
}
.page-sphere .intro .text-wrapper{
  width: calc(100% - 20px);
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}
.page-sphere .intro .default-list li{
  font-size: 22px;
}
.page-sphere .intro .gal-slider{
  width: 100%;
  overflow: hidden;
}
.page-sphere .intro .gal-slider .swiper-slide{
  border-radius: 40px;
}
@media(min-width: 768.1px){
  .page-sphere .intro .gal-slider-nav{
    width: 90%;
    left: 0;
  }
}
.page-sphere .advan-section{
  width: calc(100% - 20px);
  max-width: 1900px;
  border-radius: 40px 0px 0px 40px;
  background: rgba(49, 99, 122, 0.05);
  padding: 100px 0;
  margin-left: auto;
  margin-right: auto;
}
.page-sphere .advan-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;  
}
.page-sphere .advan-list li:not(:last-child){
  margin-bottom: 40px;
}
.page-sphere .advan-list .img-wrap{
  width: calc(50% - 30px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  padding-bottom: 22%;
}
.page-sphere .advan-list .text-box{
  width: calc(50% - 30px);
  padding: 24px 10% 24px 50px 
}
.page-sphere .advan-list .title{
  position: relative;
}
.page-sphere .advan-list li .title:before{
  counter-increment: list;
  content: counter(list);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #10AC9E;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: -50px;
}
.page-sphere .advan-list li:nth-child(even) .title:before{
  background: var(--yellow);
}
.page-plant .order-section .wrapper{
  width: calc(100% - 20px);
  max-width: 1900px;
  background: url(/images/plant/order-bg.jpg) no-repeat center / cover;
  border-radius: 40px;
  padding: 0 150px;
  margin-left: auto;
  margin-right: auto;
}
.page-plant .order-section .img-wrap{
  width: 40%;
  background: url(/images/plant/order-img.png) no-repeat center / contain;
  padding-bottom: 35%;
}
.page-plant .order-section .text-box{
  width: 45%;
  padding: 100px 0;
}
.page-tenders .items-flex{
  max-width: 1616px;
  justify-content: center;
}
.page-tenders .items-flex .item{
  width: calc(14.28% - 20px);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin: 0 10px 20px;
}
.page-tenders .items-flex .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-tenders .items-flex .name{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 25px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0 10px;
}
.page-tenders .criteria{
  border-radius: 20px;
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  padding: 75px 15px;
}
.page-tenders .criteria-flex{
  max-width: 890px;
}
.page-tenders .criteria-flex .item{
  width: calc(50% - 10px);
  border-radius: 20px;
  border: 1px solid rgba(16, 172, 158, 0.50);
  background: rgba(28, 51, 62, 0.20);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 10px;
}
.page-tenders .criteria-flex .ico{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.10);
  margin: 0 auto 15px;
}
.page-tenders .smart-img{
  border-radius: 20px;
  background: #F5F9F9;
  padding: 40px 40px 60px;
}
.page-tenders .smart-img img{
  display: block;
  width: 76%;
  border-radius: 20px;
  border: 4px solid #FFF;
  box-shadow: 9.763px 16px 80px 0px rgba(28, 51, 62, 0.40);
}
.page-tenders .frame{
  border-radius: 40px;
  background: #F5F5F5;
  padding-left: 10px;
  padding-right: 10px;
}
.page-tenders .frame iframe{
  height: 360px;
}


.page-shareholders .intro .item{
  width: calc(33.3% - 13px);
  border-radius: 20px;
  overflow: hidden;
}
.page-shareholders .intro .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-shareholders .cont{
  border-radius: 40px;
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  padding: 75px 50px;
}
.page-shareholders .cont .item{
  width: calc(25% - 15px);
  border-radius: 20px;
  border: 1px solid rgba(16, 172, 158, 0.50);
  background: rgba(28, 51, 62, 0.20);
  padding: 25px 25px 15px;
}
.page-shareholders .cont .item .company{
  min-height: 68px;
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.page-shareholders .cont .item .img-wrap{
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
  padding-bottom: 70%;
  margin-bottom: 20px;
}
.page-shareholders .cont .item .img-wrap img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.page-shareholders .cont .item .info-item{
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
.page-shareholders .cont .item .info-item:before{
  font-size: 1.2em;
  color: var(--yellow);
  margin-right: 12px;
}
.page-shareholders .cont .item a.info-item:hover{
  color: var(--yellow);
}
.page-shareholders .articles-flex{
  margin-left: auto;
  margin-right: auto;
}
.page-shareholders .articles-flex .name{
  min-height: 0;
  margin-bottom: 20px;
}
.page-careers .intro {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}
.page-careers .intro .img-wrap{
  background-repeat: no-repeat;
  width: 48%;
  background-size: cover;
  background-position: 20% center;
  border-radius: 20px;
}
.page-careers .intro .text-box{
  width: 48%;
}
.page-careers .default-list li{
  font-size: 18px;
  margin-bottom: 15px;
}
.page-careers .default-list li:last-child{
  margin-bottom: 0;
}
.page-careers .careers{
  border-radius: 40px;
  background: #F5F9F9;
}
.page-careers .careers .wrapper{
  margin-left: auto;
  margin-right: auto;
}
@media(min-width: 550px){
  .page-careers .careers .wrapper > .ttl br{
    display: none;
  }
}
.accordion .item{
  margin-bottom: 10px;
  transition: .4s;
}
.accordion .question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;  
  transition: .5s;
  border-radius: 12px;
  background: rgba(49, 99, 122, 0.10);
  line-height: 1.5;
  padding: 20px 30px;
}
.accordion .question .name{
  color: var(--blue);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue);
  transition: inherit;
  margin-bottom: 5px;
}
.accordion .question .company{
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  transition: inherit;
  color: var(--blue);
}
.accordion .question .company:before{
  font-size: 24px;
  color: var(--yellow);
  margin-right: 12px;
}
.accordion .open .name{
  color: #fff;
}
.accordion .open .company{
  color: #fff;
}
.accordion .arr{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue);
  transition: inherit;
  position: relative;
  margin-left: 6px;
}
.accordion .arr:before, .accordion .arr:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 9px;
  height: 2px;
  transition: all 0.3s ease-out;
  background-color: #fff;
  transform: translate(-2.5px, -50%) rotate(45deg);
}
.accordion .arr:after{
  transform: translate(2.5px, -50%) rotate(-45deg);
}
.accordion .open .question{
  background: linear-gradient(90deg, #31637A 0%, #10AC9E 100%);
  color: #fff;
}
.accordion .open .arr{
  background: rgba(255, 255, 255, 0.1);
}
.accordion .open .arr:before{
  transform: translate(-2.5px, -50%) rotate(-45deg);
} 

.accordion .open .arr:after{
  transform: translate(2.5px, -50%) rotate(45deg);
}
.accordion .answer{
  display: none;
  padding: 10px 30px 30px;
}
.accordion .answer h3{
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 40px 0 20px;
}
.accordion .answer p{
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.accordion .answer a{
  color: var(--blue-light);
}
.accordion .answer a:hover{
  color: var(--blue);
}
.accordion .answer ul li{
  position: relative;
  padding-left: 23px;
  font-size: 18px;
  margin-bottom: 15px;
}
.accordion .answer ul li:before{
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  position: absolute;
  top: .55em;
  left: 0;
}
.accordion .answer ul li:last-child{
  margin-bottom: 0;
}
.accordion .answer .info{
  border-radius: 12px;
  background: rgba(49, 99, 122, 0.10);
  padding: 20px 30px 15px;
  margin-top: 40px;
}
.accordion .answer .info .ttl{
  color: #141415;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.44px;
  text-transform: none;
  margin-bottom: 15px;
}
.accordion .answer .info .link{
  display: flex;
  align-items: center;
  max-width: max-content;
  color: var(--text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 6px;
}
.accordion .answer .info .link:hover{
  color: var(--blue-light);
}
.accordion .answer .info .link:before{
  font-size: 24px;
  color: var(--blue-light);
  margin-right: 12px;
}
.accordion .answer .info .link span{
  white-space: nowrap;
}
.faq .caption{
  color: #141415;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.44px;
  margin-bottom: 15px;
}
.faq .caption a{
  color: var(--blue-light);
  text-decoration: underline;
}