:root {
  --primary-color: #131317;
  --secondary-color: #1692E4;
  --title-color: #131317;
  --black-text: #2E2E37;
  --white-text: #FFFFFF;
  --text-link-color: #1692E4;
  --border-radius: 8px;  
  --shade-color: #E4EBFA;
  --extra-color: #F4F6FA;
}
*, ::after, ::before {
  box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 150%;
  margin-top: 0;
  margin-bottom: 16px;
 
}
h1 {
  font-size: 60px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
} 
.line-height0{
  line-height: 0;
}
.line-height160{
  line-height: 160%;
}
p{
  font-size: 16px;
  line-height: 150%;
  margin: 0 0 16px;
}
button{
  font-size: 16px;
  line-height: 150%; 
}
p:last-child{
  margin-bottom: 0;
}
.font-48 {
  font-size: 48px;
  line-height: 150%;
}
.font-36 {
  font-size: 36px;
  line-height: 150%;
}
.font-18 {
  font-size: 18px;
  line-height: 150%;
}
.font-20   {
  font-size: 20px;
  line-height: 150%;
} 
.font-24 {
  font-size: 24px;
  line-height: 150%;
}
.font-14 {
  font-size: 14px;
  line-height: 150%;
}
.font-12 {
  font-size: 12px;
  line-height: 150%;
}
.font-10 {
  font-size: 10px;
  line-height: 150%;
}
.f-weight-600{
  font-weight: 600;
}
.f-weight-700{
  font-weight: 700;
}
.mb-xlarge{
  margin-bottom: 32px;
}
.mb-large{
  margin-bottom: 32px;
}
.mb-medium{
  margin-bottom: 24px;
}
.mb-small{
  margin-bottom: 16px;
}
.mb-xsmall{
  margin-bottom: 8px;
}
.mb-micro {
  margin-bottom: 4px;
}
.mb-5{
  margin-bottom: 5px;
}
.mb-none{
  margin-bottom: 0;
}
.m-none{
  margin: 0;
}
.form-input{
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
  font-size: 16px;
  line-height: 150%;
}
.form-input:focus{
  border-color: var(--primary-color);
  outline: none;
}
.form-input::placeholder{
  color: #B0BABE;
}
.fbold-700{
  font-weight: 700;
}
.fbold-600{
  font-weight: 600;
}
.fmedium-500{
  font-weight: 500;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-black{
  color: var(--title-color);
}
.text-white{
  color: #fff;
}
.bg-shade{
  background-color: #E6F6FC;
}
.bg-white{
  background-color: #fff;
}
.bg-blue{
  background-color: #2E697E;
}
.bg-blue2{
  background-color: #17586F;
}
.bg-blue3{
  background-color: #0097CE;
}
.bg-gray{
  background-color: #F9F9F9;
}
.content-section-container{
  padding: 30px 0;
}
.img-container img{
  width: 100%;
  height: auto
}
.box-border{
  border: 1px solid var(--shade-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.box-border2{
  border: 1px solid #4F5152;
  border-radius: var(--border-radius); 
  background-color: #38393A;
}
.border-radius{
  border-radius: var(--border-radius);
  overflow: hidden;
}
ul{ 
  padding: 0 0 0 24px;
}
ul.list-check{ 
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}
ul.list-check li{
  list-style: none;
  position: relative;
  padding: 0px 0px 0px 30px;
}
ul.list-check li:before{
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/icon-check.svg) no-repeat center center / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0px;
}
.height100{
  height: 100%;
} 
.p-24{
  padding: 24px;
}
.p-32 {
  padding: 32px;
} 
.h-100{
  height: 100%;
}
a{
  color: var(--text-link-color);
  text-decoration: none;
}
a:hover{
  color: var(--text-link-color);
  text-decoration: underline;
}
.mobile-show{
  display: block;
}
.mobile-hide{
  display: none;
}
.font-weight-700{
  font-weight: 700;
}
.btn-primary{
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border:1px solid var(--primary-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  color: var(--primary-color);
  overflow: hidden;
  transition: all 0.5s ease;
  background: #fff;
  cursor: pointer;
}
.btn-primary.with-icon{
  position: relative;
  padding-right: 64px;
}
.btn-primary.with-icon:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 48px;
  height: 100%;
  background: url(../img/icon-arrow-white.svg) no-repeat center center var(--primary-color);
  background-size: 24px;
  margin-left: 10px;
  border-left:1px solid #fff;
  transition: all 0.5s ease;
}
.btn-primary:hover{
  background: var(--primary-color);
  border-color: var(--primary-color);
  text-decoration: none;
  color: var(--white-text);
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
  transition: all 0.5s ease;
}
.btn-primary:hover:after{
  background: url(../img/icon-arrow-white.svg) no-repeat center center var(--primary-color);
  transition: all 0.5s ease;
} 
.bg-grey{
  background: var(--extra-color);
  border-radius: 8px;
  padding: 16px 24px;
}
@media (min-width: 596px) {
  .p-24{
    padding: 24px;
  }
  .p-32 {
    padding: 32px;
  }
  .mobile-show{
    display: none;
  }
  .mobile-hide{
    display: block;
  }
}
@media (min-width: 769px) {
  .mb-xlarge{
    margin-bottom: 60px;
  }
  .mb-large{
    margin-bottom: 40px;
  }
 
  .p-24{
    padding: 24px;
  }
  .p-32 {
    padding: 32px;
  } 
  .content-section-container{
    padding: 80px 0;
  }
  h1 {
    font-size: 60px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  } 
  .mb-large{
    margin-bottom: 40px;
  }
  .mb-medium{
    margin-bottom: 24px;
  }
  .mb-small{
    margin-bottom: 16px;
  }
  .mb-xsmall{
    margin-bottom: 8px;
  }
}
