*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-weight: 400;
  font-family: 'Roboto';
  font-size: 18px;
  color: #333333;
  font-style: normal;
  line-height: 29px;
  margin: 0;
  padding: 0;
}

a {
  font-family: inherit;
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.header {
  margin: 0;
  padding: 0;
  background-color: #fff;
  text-align: center;
}


.header__top {
  background: #f9f9f9;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 800;
  font-family: "Open Sans";
  letter-spacing: 5px;
  font-size: 12px;
  color: #333333;
  font-style: normal;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
    .header__content.container{
        flex-wrap: wrap;
        justify-content: center;
    }
}

.header__content-logo {
  width: 150px;
  height: 36px;
}

.header__content-logo img {
  width: 100%;
  height: auto;
}

.header__content span {
  font-size: 16px;
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  color: #20a7e2;
}


.label_disclosure {
  font-weight: 300;
  font-size: 10px;
  color: #666666;
  line-height: 14px;
  text-align: center;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
    .header__content span {
        flex: 0 0 100%;
    }   
}

.container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0px 20px;
  }
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

.head {
  padding-top: 65px;
  background: rgba(255, 255, 255, 0);
  background-image: url("images/background.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
  border: none;
  min-height: 775px;
  position: relative;
}

@media (max-width: 768px) {
    .head {
        background-position: center center;
    }
}

@media (max-width: 768px) {
  .head .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.head__title {
  font-weight: 700;
  font-family: 'Roboto';
  font-size: 72px;
  color: white;
  font-style: normal;
  line-height: 90px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
    .head__title{
        font-size: 32px;
        line-height:42px;
    }
}



.head__desc {
  font-weight: 300;
  font-family: 'Roboto';
  font-size: 26px;
  color: white;
  font-style: normal;
  line-height: 42px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
    .head__desc {
        font-size: 18px;
        line-height: 28px;
    }
}

.head__btn {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  width: 385px;
  height: 51px;
  background: #ff7226;
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  font-family: 'Roboto';
  -webkit-transition: .3s all;
  transition: .3s all;
}

@media (max-width: 768px) {
    .head__btn {
        width:301px;
    }
}

.head__btn:hover {
  background: #f25e1d;
}

.head__link {
  display: block;
  margin-top: 20px;
  padding-left: 8px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  font-family: 'Open Sans';
  color: #fff;
  text-decoration: none;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.head__link:hover {
  color: #88CE32;
}

.head__logotypes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 768px) {
  .head__logotypes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    transform: translateY(-65px);
  }
}

.head__logotypes_logo {
  width: 240px;
  text-align: center;
}

@media (max-width: 768px){
  .head__logotypes_logo {
    height: 110px;
  }
}

.head__logotypes_logo img {
  width: auto;
  height: 240px;
}

.main {
  padding-top: 10px;
  padding-bottom: 10px;
}

.subtitle {
  font-size: 48px;
  color: #20a7e2;
  line-height: 58px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 768px) {
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.col-6 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .col-6 {
    padding-right: 0px;
  }
}

.col-4 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  padding-left: 20px;
  padding-top: 16px;
}

@media (max-width: 768px) {
  .col-4 {
    padding-left: 0;
  }
}

.subtitle-low {
  font-weight: 500;
  font-size: 16px;
  color: #20a7e2;
  line-height: 26px;
  border-bottom-style: solid;
  border-bottom-color: #EBF9FF;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 768px) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cards__label {
  font-weight: 300;
  font-size: 8px;
  color: #949494;
  line-height: 12px;
  margin-bottom: 30px;
}

.cards__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.3333% - 20px);
          flex: 1 1 calc(33.3333% - 20px);
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-shadow: 0 0 5px 5px #ebf9ff;
          box-shadow: 0 0 5px 5px #ebf9ff;
  padding: 10px;
}

@media (max-width: 768px) {
  .cards__card {
    max-width: 360px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.cards__card:hover {
  -webkit-box-shadow: 0 0 5px 1px #20a7e2;
          box-shadow: 0 0 5px 1px #20a7e2;
}

.cards__card img {
  height: 40px;
  width: auto;
}
@media(max-width:600px){
  .cards__card img{
    max-width:80%;
    height: auto;
    max-height: 50px;
  }
}

.cards__card_title {
  font-weight: 700;
  font-size: 15px;
  color: #333333;
  line-height: 26px;
}

.cards__card_text {
  font-weight: 500;
  font-size: 12px;
  color: #333333;
  line-height: 26px;
}

.cards__card_link {
  font-weight: 500;
  font-size: 16px;
  color: #88ce32;
  text-decoration: underline;
  line-height: 26px;
}

.clicktitle {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  line-height: 36px;
  text-align: center;
}

.clickafter {
  color: #333333;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 20px;
}

.clickcards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .clickcards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.clickcards__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3333%;
          flex: 1 1 33.3333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .clickcards__card {
    max-width: 360px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.clickcards__card img {
  height: 55px;
  width: auto;
  margin-bottom: 10px;
}

.clickcards__card_title {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  color: #333333;
  max-width: 200px;
}

.clickcards__card_text {
  text-align: center;
  font-size: 16px;
  color: #333333;
  max-width: 200px;
}

.biglink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 372px;
  height: 60px;
  color: #20A7E2;
  border: 3px solid #20A7E2;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  margin: 40px auto;
  text-decoration: none;
  border-radius: 100px;
}

.biglink:hover {
  background-color: #20A7E2;
  color: #fff;
}

.footer {
  margin: 0;
  padding: 30px 0;
  background-color: #d9d9d9;
}

.footer p {
  margin: 20px 0px;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
  color: #333333;
  line-height: 18px;
}

.table {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.table img {
  max-height: 71px;
  width: auto;
}

@media (max-width: 768px) {
    .table img {
        width:100%;
    }
}

.table th, .table td {
  padding: 0px 10px;
}

.table th {
  font-weight: 700;
  font-size: 16px;
  color: #20a7e2;
  line-height: 24px;
}

@media (max-width: 768px) {
  .table th {
    display: none;
  }
}

@media (max-width: 768px) {
  .table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
  }
}

.table td:nth-child(1) {
  font-weight: 700;
  font-size: 100px;
  color: #eefbff;
  text-align: center;
  line-height: 100%;
}

.table td:nth-child(2) {
  text-align: center;
}

.table td:nth-child(3) {
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  line-height: 24px;
  text-align: right;
}

.table tbody tr {
  border-color: #EEFBFF;
  border-radius: 24px;
}

.table tbody tr:nth-child(even) {
  background: #eefbff;
}

.table tbody tr:nth-child(even) td:nth-child(1) {
  color: #fff;
}

#mapwrapper {
  font-family: Arial, Helvetica, sans-serif;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0;
  background-color: transparent;
  min-width: 220px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#mapwrapper path:hover {
  fill: #00496e;
}

.bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 480px) {
  .bottom__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bottom__left {
  width: 50%;
}

@media (max-width: 480px) {
  .bottom__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.bottom__logo {
  width: 145px;
}

.bottom__logo img {
  width: auto;
  height: 45px;
}

.bottom__text {
  font-size: 14px;
  color: #919396;
}

.bottom__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 480px) {
  .bottom__right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 480px) {
  .bottom nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bottom nav a {
  font-size: 12px;
  color: #919396;
  text-decoration: none;
}

@media (max-width: 480px) {
  .bottom nav a {
    display: block;
    text-align: center;
  }
  .bottom nav a:after {
    display: none;
  }
}

.bottom nav a:after {
  content: ' | ';
  padding: 0px 8px;
}

.bottom nav a:last-child:after {
  display: none;
}

.bottom__corp {
  font-size: 12px;
  color: #919396;
}

.main__headl{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6d6d6;
}
.main__headl.border{
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #d6d6d6;
}

.main__headl img{
  height: 100%;
  width: auto;
  margin-right: 40px;
}

@media (max-width: 600px) {
  .main__headl img{
    margin-bottom: 20px;
  }
}


.main__headl_title{
  font-weight: 700; 
  font-size: 12px; 
  color: rgb(153, 153, 153);
  line-height: 20px; 
  letter-spacing: 4px; 
  text-align: center;
  margin-right: 20px;
}

@media (max-width: 600px) {
  .main__headl_title{
    width: 100%;
    margin-bottom: 20px;
  }
}

.bghead__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 600px) {
  .bghead__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.bghead__poster {
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}

@media (max-width: 600px) {
  .bghead__poster {
    width: 200px;
  }
}

.bghead__poster img {
  width: 100%;
  height: auto;
}

.bghead__content {
  margin-top: 40px;
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  padding-left: 30px;
}

@media (max-width: 600px) {
  .bghead__content {
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 250px;
    margin-top: 10px;
  }
}

.bghead__content_logo {
  display: block;
  width: 140px;
  margin-bottom: 30px;
}

.bghead__content_logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .bghead__content_logo {
    display: none;
  }
}

.bghead__content_title {
  font-size: 54px;
  font-weight: 700;
  font-style: normal;
  color: #001926;
  line-height: 130%;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .bghead__content_title {
    font-size: 30px;
  }
}

.bghead__content_text {
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  color: #333333;
}



#subcopy-bg-color{
  position: absolute;
  background-color: #EBF9FF;
  height: 17px;
  width: 390px;
  z-index: -1;
  margin-left: -10px;
  /* x: 350px; */
}

@media (max-width: 768px){
  #subcopy-bg-color{
    width: 240px;
    margin-left: 0px;
    bottom: 239px;
    left: 57px;
  }
}

#subcopy-bg-color2{
  visibility: hidden;
  position: absolute;
  background-color: #EBF9FF;
  height: 17px;
  width: 390px;
  z-index: -1;
  margin-left: -10px;
}

@media (max-width: 768px){
  #subcopy-bg-color2{
    visibility: visible;
    width: 170px;
    margin-left: 0px;
    bottom: 209px;
    left: 57px;
  }
}


.bghead__content_logomobile {
  display: none;
}

@media (max-width: 600px) {
  .bghead__content_logomobile {
    display: block;
    width: 140px;
  }
}

h3 {
  font-weight: 600;
  font-size: 16px;
  color: #aeaeae;
  font-style: normal;
  margin: 20px 0px;
}

.awards__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 768px) {
  .awards__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.awards__item {
  max-width: 220px;
  width: 100%;
}

.awards__item_logo {
  width: 60px;
  height: 60px;
}

.awards__item_text {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  font-style: normal;
}

.awards__item_title {
  font-weight: 700;
  font-size: 16px;
  color: #333333;
}

.features__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.features__item {
  margin-bottom: 40px;
}

.features__item_number {
  font-weight: 800;
  font-size: 36px;
  color: #dcf4ff;
  margin-bottom: 20px;
}

.features__item_title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.features__item_position {
  position: relative;
}

.features__item_position img {
  max-width: 700px;
  z-index: -10;
}

.features__item_position p {
  position: absolute;
  right: 0;
  bottom: 15px;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  line-height: 170%;
  max-width: 343px;
  /* background-color: #fff; */
  padding: 4px;
  z-index: 5;
}

#bg_color1{
  position: absolute;
  background-color: #EBF9FF;
  width: 350px;
  height: 28px;
  left: 570px;
  top: 227px;
  z-index: 1;
}

@media (max-width: 600px){
  #bg_color1{
    left: 53px;
    width: 255px;
    top: 190px;
    z-index: -1;
  }
}

#bg_color2{
  position: absolute;
  background-color: #EBF9FF;
  width: 320px;
  height: 28px;
  left: 600px;
  top: 267px;
  z-index: 1;
}

@media (max-width: 600px){
  #bg_color2{
    left: 65px;
    width: 245px;
    top: 232px;
    z-index: -1;
  }
}

#bg_color3{
  visibility: hidden;
}

@media (max-width: 600px){
  #bg_color3{
    position: absolute;
    visibility:visible;
    background-color: #EBF9FF;
    left: 170px;
    width: 140px;
    height: 28px;
    top:274px;
    z-index: -1;
  }
}

@media (max-width: 600px) {
  .features__item_position p {
    position: static;
    z-index: 5;
  }
}

.features__item_position span {
  display: block;
  max-width: 91px;
  position: absolute;
  right: 0;
  bottom: 0px;
  text-align: right;
}

@media (max-width: 600px) {
  .features__item_position span {
    position: static;
    margin: 0 0 0 auto;
  }
}

.mapinfo {
  border-top: 1px solid #ebf9ff;
  padding-top: 40px;
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.mapinfo__title {
  color: #001926;
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}

.mapinfo__text {
  font-size: 16px;
  color: #333333;
}

.mapinfo img {
  max-width: 200px;
}

@media (max-width: 768px) {
  .mapinfo img {
    margin: 0 auto;
    max-width: 320px;
  }
}

.label.supersmall {
  font-size: 8px;
}

.float-smartimg {
  width: 125px;
  height: 125px;
  float: left;
}

@media (max-width: 600px) {
  .float-smartimg {
    display: none;
  }
}

.float-smartimg-mobile {
  display: none;
  width: 125px;
  height: 125px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .float-smartimg-mobile {
    display: block;
  }
}

.smarthead {
  margin-top: 30px;
}

.smarthead__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .smarthead__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.smarthead__logo {
  display: block;
  max-width: 121px;
  padding: 5px;
  background: #ebf9ff;
}

@media (max-width: 600px) {
  .smarthead__logo {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    max-width: 100%;
  }
  .smarthead__logo img {
    max-width: 121px;
  }
}

.smarthead__text {
  padding: 5px;
  background: #ebf9ff;
  font-size: 18px;
  letter-spacing: 2.8px;
  color: #20a7e2;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.smarthead__title {
  font-size: 38px;
  line-height: 140%;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .smarthead__title {
    font-size: 24px;
  }
}

.smarthead__poster {
  max-width: 822px;
  margin: 0 auto;
}

.sliders{
  max-width: 250px;
  overflow: hidden;
  display: flex;
  padding: 10px 0px;
}

@media (max-width: 600px){
  .sliders{
    margin: auto;
  }

}
.slider{
  flex:0 0 250px;
  animation: slider 10s infinite;
}
.slider__number{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin: 0 auto;
  color:#20a7e2;
  font-weight: bold;
  box-shadow: 0px 0px 3px #20a7e2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider__title{
  text-align: center;
  font-weight: bold;
  margin: 15px 0px;
}
.slider__logo{
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

@keyframes slider{
  0%{
    transform: translateX(0px);
  }
  33%{
    transform: translateX(-250px);
  }
  66%{
    transform: translateX(-500px);
  }
  100%{
    transform: translateX(-750px);
  }
}

.smartteam{
  position: relative;
}
.smartteam__title{
  font-size: 24px;font-weight: 700;line-height: 43px; padding: 5px;background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;

}
@media(max-width:600px){
  .smartteam__title{
    position: static;
  }
}

html {
  scroll-behavior: smooth;
}

/* beginning of smart financial tools */

.subtitle-low {
  font-weight: 500;
  font-size: 16px;
  color: #20a7e2;
  line-height: 26px;
  border-bottom-style: solid;
  border-bottom-color: #EBF9FF;
}

@media (max-width: 768px){
  .subtitle-low{
    /* padding-left: 20px; */
    margin-left: 18px;
    margin-right: 33px;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 768px) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cards__label {
  font-weight: 300;
  font-size: 8px;
  color: #949494;
  line-height: 12px;
  margin-bottom: 30px;
}

@media (max-width:768px){
  .cards__label{
    margin-left: 20px;
    margin-right: 33px;
  }
}

.cards__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.3333% - 20px);
          flex: 1 1 calc(33.3333% - 20px);
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  text-decoration: none;
  -webkit-box-shadow: 0 0 5px 5px #ebf9ff;
          box-shadow: 0 0 5px 5px #ebf9ff;
  padding: 10px;
}

@media (max-width: 768px) {
  .cards__card {
    max-width: 300px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.cards__card:hover {
  -webkit-box-shadow: 0 0 5px 1px #20a7e2;
          box-shadow: 0 0 5px 1px #20a7e2;
}

.cards__card img {
  height: 45px;
  width: auto;
}
@media(max-width:600px){
  .cards__card img{
    max-width:80%;
    height: auto;
    max-height: 50px;
  }
}

.cards__card_title {
  font-weight: 700;
  font-size: 15px;
  color: #333333;
  line-height: 26px;
}

.cards__card_text {
  font-weight: 500;
  font-size: 12px;
  color: #333333;
  line-height: 26px;
}

.cards__card_link {
  font-weight: 500;
  font-size: 16px;
  color: #88ce32;
  text-decoration: underline;
  line-height: 26px;
}

.clicktitle {
  font-size: 26px;
  font-weight: 700;
  color: #333333;
  line-height: 36px;
  text-align: center;
}

.clickafter {
  color: #333333;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 20px;
}

.clickcards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  .clickcards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.clickcards__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.3333%;
          flex: 1 1 33.3333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .clickcards__card {
    max-width: 360px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.clickcards__card img {
  height: 55px;
  width: auto;
  margin-bottom: 10px;
}

.clickcards__card_title {
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  color: #333333;
  max-width: 200px;
}

.clickcards__card_text {
  text-align: center;
  font-size: 16px;
  color: #333333;
  max-width: 200px;
}

/* end of smart financial tools */

