@charset "UTF-8";
@import "../fonts/fonts.css?v101";

body{
  box-sizing: border-box;
  font-family: 'ReadexPro', sans-serif;
  color: var(--grey);
  margin: 0;
  padding: 0;
  font-size: 20px;
  background: #fff;
  overflow-x: hidden;
  --grey: #374C6B;
  --col-text: #2B4060;
  --black: #121924;
  --yellow: #FFBF00;
  --lightyellow: #FFF1C7;
  --font-ibm: 'IBMPlex', sans-serif;
}
div, h1, h2, h3, h4, p, ul, ol, li, a, input, textarea, label, button, span{
  box-sizing: border-box;
}
.container{
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px){.container{max-width: 540px;}}
@media (min-width: 768px){.container{max-width: 720px;}}
@media (min-width: 992px){.container{max-width: 960px;}}
@media (min-width: 1200px){.container{max-width: 1140px;}}
@media (min-width: 1300px){.container{max-width: 1230px;}}
@media (min-width: 1500px){.container{max-width: 1390px;}}



a, a:hover{
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
  color: var(--grey);
}

a:hover{
  color: var(--col-text);
}

h1, h2, h3, h4, p, ul, ol{
  margin: 0;
}

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

img{
  display: block;
  width: 100%;
  max-width: 100%;
}

::-webkit-scrollbar {width: 6px;}
::-webkit-scrollbar-track {background: var(--col-text);}
::-webkit-scrollbar-thumb {
    background-color: var(--yellow);
    border-radius: 3px;
}
html, body, div, * {
    scrollbar-width: thin;
    scrollbar-color: var(--yellow), var(--col-text);
}
.body-wrapper{
  overflow-x: hidden;
}


.mb120{margin-bottom: 120px;}
.mb80{margin-bottom: 80px;}
.mb60{margin-bottom: 60px;}
.mb50{margin-bottom: 50px;}
.mb40{margin-bottom: 40px;}
.mb30{margin-bottom: 28px;}
.mb25{margin-bottom: 25px;}
.mb20{margin-bottom: 20px;}
.mb15{margin-bottom: 15px;}
.mb8{margin-bottom: 8px;}

.ttl{
  color: var(--black);
}
.ttl.lg{
  font-weight: 700;
  font-size: 44px;
}
.ttl.sm{
  font-weight: 700;
  font-size: 24px;
}
.ttl.ssm{
  color: var(--text);
  font-weight: 500;
  font-size: 20px;
}
.ttl.border-bottom{
  border-bottom: 1px solid #EEF1F6;
  padding-bottom: .35em;
}
.text{
  font-family: var(--font-ibm);
  color: var(--col-text);
  font-size: 16px;
}

.centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.flex{
  display: flex;
  flex-wrap: wrap;  
}
.flex.between{
  justify-content: space-between;
}
.flex.align-center{align-items: center;}

.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 123px;
  height: 38px;
  border: 1px solid var(--yellow);  
  transition: 0.3s;
  font-weight: 700;
  font-size: 15px;
  border-radius: 20px;
  background: var(--yellow);
  color: var(--black);
}
.btn.scnd{
  background: var(--lightyellow);
}
.btn:hover, .btn.scnd:hover{
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

.header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #FFF;
  border-bottom: 1px solid #EEF1F6;
  transition: 0.5s;
  padding: 20px 0;      
}
.header.sticky{
  background: rgba(255,255,255,.97);
  padding: 10px 0;
}
.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;
}


/*=============================*/
.header .logo{
  width: 135px;
  margin-right: auto;
}
.header .mod-languages{
  color: var(--black);
  font-size: 15px;
  padding-right: 20px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  margin-left: 28px;
}
.header .mod-languages .active-language{
  position: relative;
}
header .mod-languages .active-language::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 4px;
  border: solid var(--black);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
header .mod-languages .lang-list li a {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
header .mod-languages .lang-list li a:hover {
  color: var(--grey);
}

.lang-flex {
  display: flex !important;
}

ul.lang-flex {
  justify-content: space-around;
}

header .mod-languages:hover .active-language::before {
  top: 8px;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
}

header .mod-languages .lang-list {
  display: none;
  border: 1px solid var(--grey);
  background-color: #fff;
  padding: 8px;
  position: absolute;
  top: 20px;
  left: 0;
  width: 40px;
}
header .mod-languages:hover .lang-list {
  display: block;
}
header .mod-languages .lang-list li {
  text-align: center;
}

.main-intro{
  overflow: hidden;
  padding: 160px 0 60px;
}
.main-intro .ttl-box{
  width: calc(50% - 14px);
}
.main-intro .text-box{
  width: calc(50% - 14px);
}
.main-intro .partners .item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30.4%;
  height: 72px;
  border-radius: 36px;
  border: 1px solid var(--yellow);
  padding: 16px 24px;
}
.main-intro .partners .item img{
  width: auto;
  height: auto;
  max-width: auto;
}
.what-block .ttl-box{
  width: calc(50% - 14px);
}
.what-block .text-box{
  width: calc(50% - 14px);
}
.what-wrapper .item{
  width: 30.4%;
}
.what-wrapper .item .title{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}
.what-wrapper .item .img-wrap{
  margin-bottom: 24px;
}
.intel-slider .item .title{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}
.intel-slider .item .img-wrap{
  margin-bottom: 24px;
}
.captions-list{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 8px);
  margin-right: -8px;
}
.captions-list li{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--grey);
  font-family: var(--font-ibm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  max-width: max-content;
  height: 32px;
  border-radius: 16px;
  border: 1px solid var(--yellow);
  padding: 6px 16px;
  margin: 0 8px 8px 0;
}
.infr-wrapper .item{
  width: calc(50% - 14px);
}
.infr-wrapper .item .title{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}
.infr-wrapper .item .img-wrap{
  margin-bottom: 24px;
}
.bottom-block{
  background: #F6F8FA;
  padding-top: 80px;
}
.miss-block .ttl-box{
  width: calc(50% - 14px);
}
.miss-block .text-box {
  width: calc(50% - 14px);
}
.val-list{
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
}
.val-list li{
  width: calc(33.3% - 48px);
  margin: 0 24px 48px;
}
.val-list .ico{
  width: 48px;
  height: 48px;
  background-repeat: none;
  background-position: center;
  background-size: contain;
  margin-bottom: 24px;
}
.val-list .title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
.team-block .text-box {
  max-width: 1100px;
}
.contact-block{  
  padding: 80px 0;
}
.contact-block .ttl{
  color: var(--grey);
}
.footer{
  background: linear-gradient(90deg, rgba(18, 25, 36, 0.00) 0%, rgba(18, 25, 36, 0.05) 100%);  
  padding: 128px 0 40px;
}
/*===============================*/
.page-case{
  padding-top: 80px;
}
.mod-breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0;
}
.mod-breadcrumbs li{
  display: flex;
  align-items: center;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.mod-breadcrumbs li a{
  color: #888C91;
}
.mod-breadcrumbs li a:hover{
  color: var(--black);
}
.mod-breadcrumbs li:not(:last-child):after{
  content: '>';
  margin: 0 16px;
}
.case-items-list{
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
}
.case-items-list .item{
  width: calc(33.33% - 48px);
  margin: 0 24px 20px;
}
.case-items-list .item .title{
  color: var(--col-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}
.case-items-list .item .img-wrap{
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  padding-bottom: 57%;
  margin-bottom: 24px;
}
.case-items-list .item .img-wrap img{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  object-position: center;
}
.case-items-list .item .text-wrap{
  font-size: 16px;
}
.case-intro{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #E5EFF9;
  padding: 40px 0 40px;
}
.case-intro .wrapper{
  width: 900px;
  max-width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 40px 32px;
  margin: 0 auto;
}
.case-intro .uses-list{
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-intro .uses-list li{
  display: flex;
  align-items: center;
  height: 32px;
  border-radius: 16px;
  border: 1px solid #121924;
  color: #374C6B;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 16px;
  margin: 0 4px;
}
.case-intro .text{
  color: #374C6B;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.case-prob-list li{
  width: calc(50% - 24px);
  margin-bottom: 20px;
}
.case-prob-list .ico{
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 24px;
}
.case-prob-list .title{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
.case-prob-list .text{
  line-height: 1.75;
}
.case-prob .content-wrap{
  background: #FFFCF2;
  padding: 40px 0;
}
.case-prob .text-box{
  width: calc(50% - 24px);
  max-width: 500px;
}
.case-prob .text-box .text{
  font-size: 20px;
  line-height: 1.4;
}
.case-prob .img-box{
  width: calc(50% - 24px);
}
.default-list li{
  position: relative;
  padding-left: calc(1.2em + 5px);
}
.default-list li:before{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--col-text);
  position: absolute;
  top: .5em;
  left: .6em;
}

/*===============================*/


@media (max-width: 1499.9px){}
@media (max-width: 1199.9px){
  .main-intro .ttl-box{
    width: 100%;
    margin-bottom: 40px;
  }
  .main-intro .text-box{
    width: 100%;
  }
  .what-block .ttl-box{
    width: 100%;
    margin-bottom: 40px;
  }
  .what-block .text-box{
    width: 100%;
  }
  .val-list li{
  width: calc(50% - 48px);}

} 
@media (max-width: 991.9px){}
@media (max-width: 767.9px){
  .mb120{margin-bottom: 80px;}
  .mb80{margin-bottom: 50px;}
  .mb60{margin-bottom: 30px;}
  .mb50{margin-bottom: 30px;}
  .mb40{margin-bottom: 25px;}
  .mb25{margin-bottom: 20px;}
  .mb20{margin-bottom: 15px;}
  .mb15{margin-bottom: 12px;}
  .ttl.lg {font-size: 36px;}
  .what-wrapper .item{width: 100%; margin-bottom: 24px}
  .what-wrapper .item .title{margin-bottom: 12px}
  .what-wrapper .item .img-wrap{margin-bottom: 12px}
  .intel-slider .item .title{margin-bottom: 12px;}
  .intel-slider .item .img-wrap{margin-bottom: 12px;}
  .infr-wrapper .item{width: 100%; margin-bottom: 24px}
  .infr-wrapper .item .title{margin-bottom: 12px}
  .infr-wrapper .item .img-wrap{margin-bottom: 12px}
  .miss-block .ttl-box{width: 100%; margin-bottom: 24px}
  .miss-block .text-box{width: 100%;}
  .contact-block{padding: 40px 0}
  .footer{padding: 60px 0 30px}
  .case-items-list .item{width: calc(100% - 48px);}
  .case-items-list .item .title{margin-bottom: 12px}
  .case-items-list .item .img-wrap{margin-bottom: 12px}
  .case-intro .wrapper{padding: 30px 15px}
  .case-prob-list li{width: 100%;}
  .case-prob-list .ico{margin-bottom: 12px}
  .case-prob-list .title{margin-bottom: 8px}
  .case-prob .text-box{width: 100%; max-width: 100%; margin-bottom: 30px;}
  .case-prob .img-box{width: 100%;}

}
@media (max-width: 576px){
  .mb120{margin-bottom: 60px;}
  .mb80{margin-bottom: 40px;}
  .mb60{margin-bottom: 30px;}
  .mb50{margin-bottom: 25px;}
  .mb40{margin-bottom: 20px;}
  .mb25{margin-bottom: 15px;}
  .mb20{margin-bottom: 10px;}
  .mb15{margin-bottom: 8px;}
  .header .mod-languages {margin-left: 14px}
  .main-intro{padding: 120px 0 50px}
  .main-intro .partners .item{
    width: 100%;
    height: 48px;
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 8px;
  }
  .intel-slider{width: 90%}
  .val-list li{width: calc(100% - 48px); margin-bottom: 24px}
  .val-list .ico{margin-bottom: 16px}
  .val-list .title{margin-bottom: 12px}
}

/*===============================*/
.page-rtl{
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}
.page-rtl .header .logo{
  margin: 0 0 0 auto;
}
.page-rtl .header .mod-languages{
  margin: 0 28px 0 0;
}


@media (min-width: 1200px){
  .page-rtl .what-wrapper .item .title {
    min-height: 56px;
  }
}

@media (max-width: 576px){
  .page-rtl .header .mod-languages{margin: 0 14px 0 0;}
}
