/*color*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  overflow-x: hidden;
  color: #0f4848;
  line-height: 1.2;
  font-family: 'Rubik', sans-serif;
}

html body .container {
  max-width: 100%;
  width: 100%;
  position: relative;
  padding-left: 22px;
  padding-right: 22px;
}

@media only screen and (min-width: 768px) {
  html body .container {
    width: 768px;
  }
}

@media only screen and (min-width: 992px) {
  html body .container {
    width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 1440px) {
  html body .container {
    width: 1340px;
  }
}

@media only screen and (min-width: 1680px) {
  html body .container {
    width: 1526px;
  }
}

body.open-menu {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body .row:before,
body .row:after {
  display: inline-block !important;
}

body a {
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

body a:hover, body a:focus {
  text-decoration: none;
}


/*header*/
body header {
  width: 100%;
  z-index: 99;
  background: transparent;
  position: relative;
}

body header .header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

body header .header-in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #0A3A70;
  width: -webkit-calc(100% - 134px);
  width: calc(100% - 134px);
  padding: 10px 10px;
}

@media only screen and (min-width: 375px) {
  body header .header-in {
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
    padding: 10px 25px;
  }
}

@media only screen and (min-width: 768px) {
  body header .header-in {
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
    padding: 10px 25px;
  }
}

@media only screen and (min-width: 992px) {
  body header .header-in {
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    padding: 10px 35px;
  }
}

@media only screen and (min-width: 1200px) {
  body header .header-in {
    width: -webkit-calc(100% - 245px);
    width: calc(100% - 245px);
    padding: 10px 50px;
  }
}

@media only screen and (min-width: 1440px) {
  body header .header-in {
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
    padding: 20px 65px 20px 68px;
  }
}

body header .header__logo__wrap {
  position: relative;
  z-index: 999;
  width: 134px;
  min-width: 134px;
}

@media only screen and (min-width: 768px) {
  body header .header__logo__wrap {
    width: 180px;
    min-width: 180px;
  }
}

@media only screen and (min-width: 992px) {
  body header .header__logo__wrap {
    width: 200px;
    min-width: 200px;
  }
}

@media only screen and (min-width: 1200px) {
  body header .header__logo__wrap {
    width: 245px;
    min-width: 245px;
  }
}

@media only screen and (min-width: 1440px) {
  body header .header__logo__wrap {
    width: 250px;
    min-width: 250px;
  }
}

body header .wrap__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
  body header .wrap__menu {
    width: 100vw;
    position: fixed;
    top: -100vh;
    left: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    height: 100vh;
    z-index: 99999;
    background: #0a151f;
    -webkit-background-size: 100% 100%;
    background-size: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  body header .wrap__menu {
    -webkit-background-size: cover;
    background-size: cover;
  }
}

body header .wrap__menu .menu {
  position: relative;
}

@media only screen and (max-width: 991px) {
  body header .wrap__menu .menu {
    overflow-y: auto;
    background: #0053a0;
    width: -webkit-calc(100% - 62px);
    width: calc(100% - 62px);
    height: 100vh;
    margin: 0 0 0 auto;
    padding: 116px 20px 20px 43px;
  }
}

body header .wrap__menu .menu__item {
  width: 100%;
}

@media only screen and (min-width: 992px) {
  body header .wrap__menu .menu__item {
    margin: 0 20px 0 0;
    width: auto;
  }
}

@media only screen and (min-width: 1200px) {
  body header .wrap__menu .menu__item {
    margin: 0 28px 0 0;
  }
}

@media only screen and (min-width: 1440px) {
  body header .wrap__menu .menu__item {
    margin: 0 40px 0 0;
  }
}

body header .wrap__menu .menu__item.active .menu__link:before {
  width: 25px;
}

body header .wrap__menu .menu__link {
  display: block;
  padding: 0;
  font-weight: bold;
  font-size: 1.175em;
  line-height: 350.6%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-transform: uppercase;
  color: white;
  background: transparent;
  position: relative;
}

@media only screen and (min-width: 992px) {
  body header .wrap__menu .menu__link {
    font-size: 0.8em;
    line-height: 17px;
  }
}

@media only screen and (min-width: 1440px) {
  body header .wrap__menu .menu__link {
    font-size: 0.875em;
  }
}

body header .wrap__menu .menu__link:hover, body header .wrap__menu .menu__link:focus {
  background: transparent;
}

body header .wrap__menu .menu__link:hover:before, body header .wrap__menu .menu__link:focus:before {
  width: 25px;
}

body header .wrap__menu .menu__link:before {
  display: block;
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 5px;
  background: #0084ff;
  content: "";
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 992px) {
  body header .wrap__menu .menu__link:before {
    bottom: -19px;
  }
}

body header.active .wrap__menu {
  top: 0;
}

.navigation-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 105px;
  top: 0;
  font-size: 1.125em;
  text-transform: uppercase;
  color: white;
  z-index: 99;
  height: 80px;
  background: #0053a0;
  width: -webkit-calc(100% - 62px);
  width: calc(100% - 62px);
}

@media only screen and (min-width: 992px) {
  .navigation-mobile {
    display: none;
  }
}

.header__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 992px) {
  .header-link {
    width: 40px;
    height: 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-link {
    width: 50px;
    height: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-link svg {
    width: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .header-link svg {
    width: 14px;
  }
}

.header-link svg path {
  fill: white;
}

.header-link:hover, .header-link:focus {
  background: rgba(255, 255, 255, 0.2);
}

.language {
  width: 64px;
  position: relative;
  z-index: 10;
  margin-right: 10px;
}

@media only screen and (min-width: 992px) {
  .language {
    margin-right: 15px;
    width: 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .language {
    height: 50px;
    width: 95px;
  }
}

.language .nice-select {
  background: transparent;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  text-transform: uppercase;
  color: white;
  font-size: 0.5em;
  font-weight: bold;
  width: 100%;
  line-height: 17px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  outline: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 25px 5px 16px;
}

@media only screen and (min-width: 992px) {
  .language .nice-select {
    height: 40px;
    padding: 8px 30px 6px 14px;
    font-size: 0.8em;
  }
}

@media only screen and (min-width: 1200px) {
  .language .nice-select {
    height: 50px;
    padding: 8px 30px 5px 21px;
    font-size: 0.875em;
  }
}

.language .nice-select:hover, .language .nice-select:focus {
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.language .nice-select.open {
  background: white;
  color: black;
  -webkit-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  border: 0;
}

.language .nice-select.open:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}

.language .nice-select .current {
  line-height: 1;
}

.language .nice-select .list {
  width: 100%;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.language .nice-select .list .option:hover {
  color: #0f4848;
}

.language .nice-select .list .option.selected {
  color: #0f4848;
}

.language .nice-select .list .option {
  min-height: inherit;
  line-height: 1;
  background: white !important;
  padding: 9px 10px;
  color: #a6b7b7;
  font-weight: bold;
  -webkit-border-radius: inherit;
  border-radius: inherit;
}

@media only screen and (min-width: 992px) {
  .language .nice-select .list .option {
    padding: 12px 16px;
  }
}

.language .nice-select .list .option a {
  color: inherit;
  display: inline-block;
  width: 100%;
}

.language .nice-select:after {
  margin: 0;
  right: 12px;
  width: 13px;
  height: 13px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: white;
  background-image: url(/assets/icon-d.svg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: 10px 10px;
  background-size: 10px;
  border: 0;
  top: 50%;
  -webkit-transform-origin: inherit;
  -ms-transform-origin: inherit;
  transform-origin: inherit;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media only screen and (min-width: 992px) {
  .language .nice-select:after {
    width: 17px;
    height: 17px;
    right: 14px;
  }
}

@media only screen and (min-width: 1200px) {
  .language .nice-select:after {
    width: 20px;
    height: 20px;
    right: 18px;
  }
}

header.active .wrap__burger {
  top: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.wrap__burger {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 999999;
  height: 80px;
  width: 80px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 992px) {
  .wrap__burger {
    display: none;
  }
}

.burger {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 20px;
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .burger {
    padding-left: 0;
  }
}

.burger .burger__inner,
.burger .burger__inner:after {
  position: absolute;
  width: 30px;
  height: 3px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background-color: white;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.burger .burger__inner:before {
  width: 30px;
  position: absolute;
  height: 3px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background-color: white;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.burger__inner {
  -webkit-transition: background-color 0s linear .13s;
  -o-transition: background-color 0s linear .13s;
  transition: background-color 0s linear .13s;
}

.burger__inner:before {
  display: block;
  content: "";
  top: 9px;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.burger__inner:after {
  display: block;
  content: "";
  top: 18px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.burger:hover .burger__inner {
  width: 30px;
}

.burger:hover .burger__inner:after {
  width: 30px;
}

.burger:hover .burger__inner:before {
  width: 30px;
}

header.active .wrap__burger {
  background: white;
}

header.active .wrap__burger:before {
  opacity: 0;
}

header.active .burger {
  height: 25px;
}

header.active .burger:hover .burger__inner,
header.active .burger:hover .burger__inner:before,
header.active .burger:hover .burger__inner:after {
  width: 30px;
}

header.active .burger__inner {
  -webkit-transition-delay: .22s;
  -o-transition-delay: .22s;
  transition-delay: .22s;
  background-color: transparent !important;
  width: 30px;
}

header.active .burger__inner:before {
  width: 30px;
  height: 3px;
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
  background: #00b2ff;
}

header.active .burger__inner:after {
  width: 30px;
  top: 0;
  height: 3px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
  background: #00b2ff;
}

.owl-item {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.owl-dots {
  display: none;
}

.banner {
  overflow: hidden;
  position: relative;
}

.banner__item {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .banner__item {
    min-height: 350px;
  }
}

.banner__item-image {
  width: 100%;
  height: 300px;
}

@media only screen and (min-width: 768px) {
  .banner__item-image {
    padding: 45px 42px 45px 55px;
    width: 40%;
    height: inherit;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) {
  .banner__item-image {
    padding: 60px 45px 60px 70px;
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__item-image {
    padding: 70px 50px 65px 80px;
    width: 60%;
  }
}

.banner__info {
  width: 100%;
  background: #0053a0;
  padding: 38px 22px 35px 25px;
  margin: -150px 0 0 auto;
}

@media only screen and (min-width: 375px) {
  .banner__info {
    padding: 38px 34px 90px 41px;
  }
}

@media only screen and (min-width: 768px) {
  .banner__info {
    padding: 45px 42px 90px 55px;
    width: 60%;
    margin: 0;
    min-height: 100%;
  }
}

@media only screen and (min-width: 992px) {
  .banner__info {
    padding: 60px 45px 60px 70px;
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__info {
    padding: 70px 50px 65px 80px;
    width: 40%;
  }
}

@media only screen and (min-width: 1440px) {
  .banner__info {
    padding: 80px 58px 70px 90px;
  }
}

@media only screen and (min-width: 1680px) {
  .banner__info {
    padding: 91px 65px 77px 110px;
  }
}

.banner__info-content {
  color: white;
  font-size: 0.75em;
  line-height: 160.1%;
  margin: 0 0 39px;
}

@media only screen and (min-width: 768px) {
  .banner__info-content {
    margin: 0 0 55px;
    font-size: 1.125em;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__info-content {
    margin: 0 0 74px;
    font-size: 1.25em;
  }
}

.banner__info-content:first-child {
  margin-bottom: 0;
  padding-bottom: 30px;
}

.banner__title {
  color: white;
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 0 28px;
}

.banner__title a {
  color: white;
}

.banner__title a:hover,
.banner__title a:focus {
  color: #00b2ff;
}

@media only screen and (min-width: 768px) {
  .banner__title {
    font-size: 1.5em;
    margin: 0 0 35px;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__title {
    font-size: 1.7em;
    margin: 0 0 45px;
  }
}

.banner__link {
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00b2ff;
  font-weight: bold;
  font-size: 0.6875em;
  line-height: 160.1%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 768px) {
  .banner__link {
    font-size: 0.875em;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__link {
    font-size: 1em;
  }
}

.banner__link svg {
  margin-left: 15px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 768px) {
  .banner__link svg {
    margin-left: 17px;
  }
}

@media only screen and (min-width: 1200px) {
  .banner__link svg {
    margin-left: 22px;
  }
}

.banner__link svg path {
  fill: #0084ff;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.banner__link:hover, .banner__link:focus {
  color: white;
}

.banner__link:hover svg path, .banner__link:focus svg path {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  fill: white;
}

.banner .owl-prev,
.banner .owl-next {
  width: 50px;
  height: 50px;
  background-color: white;
  background-position: center;
  -webkit-background-size: 25px 25px;
  background-size: 25px 25px;
  background-repeat: no-repeat;
  right: auto;
  left: 41px;
  cursor: pointer;
  position: absolute;
  font-size: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background-image: url(/assets/right-arrow-thick.svg);
}

.banner .owl-prev.disabled,
.banner .owl-next.disabled {
  background-image: url(/assets/right-arrow-thick-disabled.svg);
  cursor: default;
}

@media only screen and (min-width: 768px) {
  .banner .owl-prev,
  .banner .owl-next {
    right: calc(60% - 100px);
    left: auto;
  }
}

@media only screen and (min-width: 992px) {
  .banner .owl-prev,
  .banner .owl-next {
    right: calc(50% - 120px);
  }
}

@media only screen and (min-width: 1200px) {
  .banner .owl-prev,
  .banner .owl-next {
    right: calc(40% - 130px);
  }
}

.banner .owl-prev {
  bottom: 20px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.banner .owl-next {
  bottom: 20px;
  left: 101px;
}

@media only screen and (min-width: 768px) {
  .banner .owl-next {
    left: auto !important;
    right: calc(60% - 160px);
  }
}

@media only screen and (min-width: 992px) {
  .banner .owl-next {
    right: calc(50% - 190px);
  }
}

@media only screen and (min-width: 1200px) {
  .banner .owl-next {
    right: calc(40% - 190px);
  }
}

.banner .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.btn-down {
  display: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.625em;
  color: #8a9fc7;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .btn-down {
    font-size: 0.875em;
  }
}

.btn-down svg {
  margin-left: 17px;
  width: 15px;
}

@media only screen and (min-width: 768px) {
  .btn-down svg {
    margin-left: 24px;
    width: auto;
  }
}

@media only screen and (min-width: 992px) {
  .btn-down svg {
    margin-left: 30px;
  }
}

.btn-down span {
  position: relative;
  display: inline-block;
}

.btn-down span:before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #ededed;
  bottom: -13px;
}

@media only screen and (min-width: 992px) {
  .btn-down span:before {
    bottom: -27px;
  }
}

@media only screen and (max-width: 767px) {
  .btn-down span svg {
    width: 15px;
    height: 15px;
  }
}

.btn-down span:after {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #0084ff;
  -webkit-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
  -webkit-animation: btnAnim 2.75s linear infinite;
  animation: btnAnim 2.75s linear infinite;
  bottom: -13px;
}

@media only screen and (min-width: 992px) {
  .btn-down span:after {
    bottom: -27px;
  }
}

@-webkit-keyframes btnAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes btnAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.news {
  padding: 37px 0 70px;
}

@media only screen and (min-width: 768px) {
  .news {
    padding: 47px 0 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .news {
    padding: 45px 0 105px;
  }
}

@media only screen and (min-width: 1440px) {
  .news {
    padding: 47px 0 115px;
  }
}

.news__title {
  color: #0053a0;
  font-weight: 300;
  font-size: 2.25em;
  text-transform: uppercase;
  margin: 40px 0 0;
}

.banner__news__title {
  color: #0053a0;
  font-weight: 300;
  font-size: 1.3em;
  text-transform: uppercase;
  margin: 40px 0 0;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .news__title {
    margin: 0;
  }
}

@media only screen and (min-width: 992px) {
  .news__title {
    font-size: 3em;
  }
}

.news-wrap__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding: 0 53px;
}

@media only screen and (min-width: 768px) {
  .news-wrap__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }
}

.news__inner {
  padding: 71px 0 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .news__inner {
    padding: 80px 0 50px;
  }
}

@media only screen and (min-width: 992px) {
  .news__inner {
    padding: 80px 0 60px;
  }
}

@media only screen and (min-width: 1440px) {
  .news__inner {
    padding: 85px 0 75px;
  }
}

.news__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 40px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}

.news__item:hover:before, .news__item:focus:before {
  opacity: 1;
}

.news__item:hover .news__item-in, .news__item:focus .news__item-in {
  background: #f8fafd;
  border: 1px solid #0084ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 10px 0px #0084ff;
  box-shadow: 0px 10px 0px #0084ff;
}

.news__item:hover .news__item-line:before, .news__item:focus .news__item-line:before {
  background: #0084ff;
  width: 60px;
}

.news__item:hover .news__item-title, .news__item:focus .news__item-title {
  color: #2f4773;
}

.news__item:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: -webkit-calc(100% + 10px);
  height: calc(100% + 10px);
  left: 10px;
  top: 10px;
  border: 1px solid #0084ff;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.news__item-in {
  position: relative;
  border: 1px solid white;
  width: 100%;
  padding: 24px 21px 32px;
  background: #f8fafd;
  -webkit-box-shadow: 0px 10px 0px #e5ecf6;
  box-shadow: 0px 10px 0px #e5ecf6;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 992px) {
  .news__item-in {
    padding: 28px 24px 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media only screen and (min-width: 1200px) {
  .news__item-in {
    padding: 25px;
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-in {
    padding: 25px;
  }
}

@media only screen and (min-width: 1680px) {
  .news__item-in {
    padding: 35px;
  }
}

.news__item-img {
  height: 159px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

@media only screen and (min-width: 992px) {
  .news__item-img {
    height: 200px;
    width: 280px;
    margin: 0;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .news__item-img {
    height: 240px;
    width: 340px;
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-img {
    height: 250px;
    width: 390px;
  }
}

.news__item-content {
  padding: 35px 19px 0;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .news__item-content {
    padding: 0 35px;
    width: -webkit-calc(100% - 280px);
    width: calc(100% - 280px);
  }
}

@media only screen and (min-width: 1200px) {
  .news__item-content {
    padding: 0 40px;
    width: -webkit-calc(100% - 340px);
    width: calc(100% - 340px);
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-content {
    padding: 0 60px;
    width: -webkit-calc(100% - 390px);
    width: calc(100% - 390px);
  }
}

@media only screen and (min-width: 1680px) {
  .news__item-content {
    padding: 0 65px;
    width: -webkit-calc(100% - 390px);
    width: calc(100% - 390px);
  }
}

.news__item-title {
  color: #5f76a0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: normal;
  font-size: 1.125em;
  margin: 0 0 30px;
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .news__item-title {
    font-size: 1.25em;
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-title {
    font-size: 1.4em;
  }
}

@media only screen and (min-width: 1680px) {
  .news__item-title {
    font-size: 1.5em;
  }
}

.news__item-line {
  background: #e5ecf6;
  display: block;
  margin: 0 0 36px;
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  height: 1px;
}

@media only screen and (min-width: 992px) {
  .news__item-line {
    margin: 0 0 38px;
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-line {
    margin: 0 0 40px;
  }
}

.news__item-line:before {
  display: block;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 1px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 15px;
  background: #95b4d1;
}

.news__item-info,
.news__item p {
  color: #09253e;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 180.6%;
  margin: 0 0 39px;
}

@media only screen and (min-width: 992px) {
  .news__item-info,
  .news__item p {
    margin: 0 0 40px;
    font-size: 0.875em;
  }
}

@media only screen and (min-width: 1440px) {
  .news__item-info,
  .news__item p {
    margin: 0 0 41px;
  }
}

.news__item-date {
  color: #768bab;
  font-weight: 300;
  font-size: 0.75em;
  line-height: 180.6%;
}

.news__more {
  text-align: center;
}

.news__more-btn {
  color: #768bab;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 14px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 992px) {
  .news__more-btn {
    font-size: 0.875em;
    line-height: 17px;
    letter-spacing: 0.89em;
  }
}

.news__more-btn:hover .news__more-btn:focus {
  color: #09253e;
}

.news__more-btn span {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #b1cce4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-left: 20px;
}

@media only screen and (min-width: 992px) {
  .news__more-btn span {
    margin-left: 30px;
  }
}

footer {
  background: #f8fafd;
  padding: 0 20px;
}

@media only screen and (min-width: 375px) {
  footer {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 768px) {
  footer {
    padding: 0;
  }
}

.footer__inner {
  padding: 45px 0 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .footer__inner {
    padding: 27px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 35px;
  }
}

.footer__socio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__socio img {
  width: 30px;
  height: 30px;
  margin-right: 14px;
}

@media only screen and (min-width: 768px) {
  .footer__socio img {
    width: 40px;
    height: 40px;
    margin-right: 28px;
  }
}

.footer__socio-inner a {
  display: block;
  color: #5f76a0;
  font-size: 0.6875em;
  line-height: 154.6%;
  text-decoration: underline;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .footer__socio-inner a {
    font-size: 0.875em;
  }
}

.footer__copy {
  border-top: 1px solid #edf1f9;
  padding: 24px 0 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .footer__copy {
    padding: 27px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 1200px) {
  .footer__copy {
    padding: 33px 0;
  }
}

.footer__copy p {
  margin: 0;
  text-transform: uppercase;
  color: #5f76a0;
  font-size: 0.625em;
  line-height: 154.6%;
}

@media only screen and (min-width: 768px) {
  .footer__copy p {
    font-size: 0.875em;
  }
}

.footer__copy .footer-camo {
  color: #c9d6ee;
  margin: 19px 0 0;
}

@media only screen and (min-width: 768px) {
  .footer__copy .footer-camo {
    margin: 0;
  }
}

.footer__copy .footer-camo a {
  color: #33a4ab;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__copy .footer-camo a:hover, .footer__copy .footer-camo a:focus {
  text-decoration: underline;
}

.page-banner {
  height: 340px;
}

.page-banner-news {
  margin-top: 15px;
  height: 350px;
}


@media only screen and (min-width: 768px) {
  .page-banner {
    height: 360px;
  }
}

@media only screen and (min-width: 992px) {
  .page-banner {
    height: 360px;
  }
}

@media only screen and (min-width: 1200px) {
  .page-banner {
    height: 375px;
  }
}

@media only screen and (min-width: 1680px) {
  .page-banner {
    height: 440px;
  }
}

iframe {
  margin-bottom: 25px;
}

.cont {
  position: relative;
  padding: 0 0 61px;
  min-height: 450px;
}

@media only screen and (min-width: 992px) {
  .cont {
    padding: 50px 0 70px;
  }
}

@media only screen and (min-width: 1200px) {
  .cont {
    padding: 55px 0 80px;
  }
}

@media only screen and (min-width: 1680px) {
  .cont {
    padding: 70px 0 90px;
  }
}

.cont-nav {
  width: 100%;
  max-width: 300px;
  background: #0053a0;
  padding: 12px 10px 32px 36px;
  margin: 0 0 37px;
  position: relative;
  z-index: 99999;
}

@media only screen and (min-width: 768px) {
  .cont-nav {
    width: 360px;
    max-width: inherit;
    padding: 30px 10px 35px 30px;
    margin: 0 0 47px;
  }
}

@media only screen and (min-width: 992px) {
  .cont-nav {
    width: 340px;
    padding: 30px 10px 30px 30px;
    margin: 0 0 47px;
    float: left;
  }
}

@media only screen and (min-width: 1200px) {
  .cont-nav {
    width: 350px;
    padding: 40px 10px 35px 35px;
  }
}

@media only screen and (min-width: 1440px) {
  .cont-nav {
    width: 380px;
    padding: 45px 15px 40px 35px;
  }
}

.cont-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cont-nav__item.active .cont-nav__link {
  color: #fff;
}

.cont-nav__item.active .cont-nav__link:before {
  width: 20px;
}

.cont-nav__link {
  display: block;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 290%;
  text-transform: uppercase;
  color: #4da5cb;
  position: relative;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media only screen and (min-width: 992px) {
  .cont-nav__link {
    font-size: 0.875em;
  }
}

@media only screen and (min-width: 1440px) {
  .cont-nav__link {
    font-size: 0.95em;
  }
}

.cont-nav__link:before {
  display: block;
  position: absolute;
  left: 0;
  bottom: 10px;
  background: #fff;
  content: "";
  height: 1px;
  width: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cont-nav__link:hover, .cont-nav__link:focus {
  color: white;
}

.cont-nav__link:hover:before, .cont-nav__link:focus:before {
  width: 20px;
}

.cont__inner {
  width: 100%;
  margin: 0 0 0 auto;
  padding: 0 14px;
}

@media only screen and (min-width: 992px) {
  .cont__inner {
    width: 62%;
    padding: 0;
  }
}

@media only screen and (min-width: 1200px) {
  .cont__inner {
    width: 72%;
  }
}

@media only screen and (min-width: 1280px) {
  .cont__inner {
    width: 76%;
  }
}

@media only screen and (min-width: 1366px) {
  .cont__inner {
    width: 79%;
  }
}

@media only screen and (min-width: 1440px) {
  .cont__inner {
    width: 72%;
  }
}

@media only screen and (min-width: 1600px) {
  .cont__inner {
    width: 76%;
  }
}

@media only screen and (min-width: 1680px) {
  .cont__inner {
    width: 77%;
  }
}

@media only screen and (min-width: 1800px) {
  .cont__inner {
    width: 79%;
  }
}

@media only screen and (max-width: 767px) {
  .cont__inner .news-wrap__title {
    padding: 0 14px;
  }
}

@media only screen and (max-width: 767px) {
  .cont__inner .news__title {
    font-size: 1.5em;
    margin: 30px 0 0;
  }
}

.content {
  margin: 29px 0 0;
  padding-top: 50px;
  border-top: 1px solid #e4f0f6;
  font-weight: 300;
  font-size: 14px !important;
  line-height: 200%;
  color: #46536a !important;
}

@media only screen and (min-width: 768px) {
  .content {
    margin: 45px 0 0;
  }
}

@media only screen and (min-width: 992px) {
  .content {
    padding-top: 45px;
    margin: 45px 0 0;
    font-size: 16px !important;
  }
}

@media only screen and (min-width: 1200px) {
  .content {
    padding-top: 40px;
    margin: 45px 0 0;
  }
}

@media only screen and (min-width: 1680px) {
  .content {
    padding-top: 55px;
    margin: 55px 0 0;
    font-size: 18px !important;
  }
}

.content__subinfo {
  font-weight: 300;
  font-size: 0.875em;
  color: #8a9fc7;
  margin: 0;
}

@media only screen and (min-width: 992px) {
  .content__subinfo {
    font-size: 1em;
  }
}

@media only screen and (min-width: 1200px) {
  .content__subinfo {
    font-size: 1.125em;
  }
}

.content img {
  margin: 20px 0 25px;
  display: block;
  width: -webkit-calc(100% + 28px);
  width: calc(100% + 28px);
  max-width: inherit;
  position: static !important;
}

@media only screen and (min-width: 768px) {
  .content img {
    margin: 20px auto 20px;
    width: auto;
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .content img {
    margin: 25px auto 20px;
  }
}

.content h1,
.content h2,
.content h3,
.content h4 {
  margin: 0 0 33px;
  font-weight: 500;
  font-size: 1.125em !important;
  line-height: 1.16;
  color: #0053a0 !important;
}

@media only screen and (min-width: 992px) {
  .content h1,
  .content h2,
  .content h3,
  .content h4 {
    font-size: 1.25em !important;
    margin: 0 0 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .content h1,
  .content h2,
  .content h3,
  .content h4 {
    font-size: 1.5em !important;
    margin: 0 0 35px;
  }
}

.content span {
  color: inherit !important;
}

.content p {
  font-weight: 300;
  font-size: 1em !important;
  line-height: 200%;
  margin: 0 0 25px;
  color: #46536a;
}

@media only screen and (min-width: 992px) {
  .content p {
    margin: 0 0 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .content p {
    margin: 0 0 26px;
  }
}

@media only screen and (min-width: 1680px) {
  .content p {
    margin: 0 0 28px;
  }
}

.content a {
  color: #0053a0 !important;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  text-decoration: underline !important;
}

.content a:hover, .content a:focus {
  color: #0053a0 !important;
  text-decoration: none !important;
}

.content b {
  font-weight: bold;
}

.content span {
  font-size: 1em !important;
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.content ul li {
  position: relative;
  padding: 0 0 0 30px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin: 0;
  font-size: 1em !important;
  font-weight: 300;
  line-height: 200%;
  color: #46536a;
}

@media only screen and (min-width: 992px) {
  .content ul li {
    padding: 0 0 0 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .content ul li {
    padding: 0 0 0 30px;
  }
}

.content ul li:before {
  background: #0084ff;
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 9px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

@media only screen and (min-width: 992px) {
  .content ul li:before {
    width: 11px;
    height: 11px;
    left: 4px;
    top: 10px;
  }
}

@media only screen and (min-width: 1200px) {
  .content ul li:before {
    left: 5px;
    top: 13px;
  }
}

.content__inner {
  padding: 0 0 65px;
  margin: 0 auto;
  max-width: 975px;
}

@media only screen and (min-width: 992px) {
  .content__inner {
    padding: 10px 0 80px;
  }
}

@media only screen and (min-width: 1200px) {
  .content__inner {
    padding: 10px 0 110px;
  }
}

@media only screen and (min-width: 1440px) {
  .content__inner {
    padding: 15px 0 130px;
  }
}

@media only screen and (min-width: 1680px) {
  .content__inner {
    padding: 10px 0 145px;
  }
}

.content__inner p:last-child {
  margin: 0;
}

.inside__wrap-title {
  background: #0053a0;
  width: 100%;
  max-width: 300px;
  min-height: 210px;
  padding: 44px 36px 42px 36px;
  margin-top: -220px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .inside__wrap-title {
    width: -webkit-calc((100% - ((100% - 768px) / 2)));
    width: calc((100% - ((100% - 768px) / 2)));
    max-width: 100%;
    padding: 36px 0 36px;
    margin: -105px 0 0 0;
  }
}

@media only screen and (min-width: 992px) {
  .inside__wrap-title {
    width: -webkit-calc((100% - ((100% - 960px) / 2)));
    width: calc((100% - ((100% - 960px) / 2)));
  }
}

@media only screen and (min-width: 1440px) {
  .inside__wrap-title {
    width: -webkit-calc((100% - ((100% - 1340px) / 2)));
    width: calc((100% - ((100% - 1340px) / 2)));
  }
}

@media only screen and (min-width: 1680px) {
  .inside__wrap-title {
    width: -webkit-calc((100% - ((100% - 1526px) / 2)));
    width: calc((100% - ((100% - 1526px) / 2)));
  }
}

.inside__wrap-title .container {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .inside__wrap-title .container {
    padding: 0;
  }
}

.inside__title {
  color: white;
  margin: 0;
  font-weight: 300;
  font-size: 1.25em;
}

@media only screen and (min-width: 768px) {
  .inside__title {
    font-size: 1.4em;
  }
}

@media only screen and (min-width: 992px) {
  .inside__title {
    font-size: 1.5em;
  }
}

@media only screen and (min-width: 1200px) {
  .inside__title {
    font-size: 1.8em;
  }
}

@media only screen and (min-width: 1680px) {
  .inside__title {
    font-size: 1.875em;
  }
}

.inside .news-wrap__title {
  padding: 37px 14px 43px;
}

@media only screen and (min-width: 768px) {
  .inside .news-wrap__title {
    padding: 50px 0 40px;
  }
}

@media only screen and (min-width: 1200px) {
  .inside .news-wrap__title {
    padding: 50px 0 40px;
  }
}

.inside-date {
  font-weight: bold;
  font-size: 0.625em;
  text-transform: uppercase;
  color: #768bab;
  margin: 30px 0 0;
}

@media only screen and (min-width: 768px) {
  .inside-date {
    margin: 0;
    font-size: 0.875em;
  }
}

.inside .content {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .inside .content {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.news.news-page .news__inner {
  padding-bottom: 0;
}

.news.news-page .news-wrap__title {
  padding-top: 30px;
}

.content .image-container .edy-padding-resizer-wrapper {
  padding-bottom: 0 !important;
}

.edy-texteditor-container picture {
  position: static !important;
}

/** hie style
.edy-texteditor-container img {
  position: static !important;
  width: auto !important;
  max-width: 700px !important;
  height: auto !important;
  }
  **/
@media only screen and (max-width: 767px) {
  .edy-texteditor-container img {
    max-width: 100% !important;
  }
}

body img.edys-gallery-image {
  margin: 0 !important;
}

.photo_gallery_area {
  margin-top: 10px;
}

body .edys-gallery {
  clear: inherit;
}

iframe {
  position: static;
  height: 265px;
  width: 480px;
  margin: 0 auto 20px;
}

@media only screen and (max-width: 767px) {
  iframe {
    height: 45vw;
    width: 100%;
  }
}


body .content img {
  width: 100% !important;
  height: auto !important;
}

/* quiz */
.quiz-elements {
  padding: 37px 0 70px;
}

@media only screen and (min-width: 768px) {
  .quiz-elements {
    padding: 47px 0 85px;
  }
}

@media only screen and (min-width: 1200px) {
  .quiz-elements {
    padding: 45px 0 105px;
  }
}

@media only screen and (min-width: 1440px) {
  .quiz-elements {
    padding: 47px 0 115px;
  }
}

.quiz__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-transform: none;
  color: #5F76A0;
}

.news__item-button {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1182FC;
  border: 1px solid #768BAB;
  border-radius: 100px;
  padding: 16px 20px;
}

.quiz-element-hidden {
  display: none !important;
}

/* quizBlock */
.quizBlock {
  border-radius: 30px;
  overflow: hidden;
  margin: 32px -22px;
  position: relative;
}

.quizBlock_headerBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  border-radius: 30px 30px 0 0;
  z-index: 0;
}

.quizBlock_inner {
  position: relative;
  z-index: 1;
  padding: 64px 10px 0 10px;
  display: flex;
  flex-wrap: wrap;
}

.quizBlock-question .quizBlock_inner {
  padding-bottom: 48px;
  padding-top: 20px;
}

.quizBlock-info .quizBlock_inner {
  padding: 64px 10px 0 10px;
}

.quizBlock-results .quizBlock_inner {
  padding-bottom: 32px;
  padding-left: 0;
  padding-right: 0;
}

.quizBlock_col {
  width: 100%;
}

.quizBlock_intro {
  background-color: #fff;
  padding: 32px 0;
  height: 100%;
  display: flex;
  flex-flow: column;
}

.quizBlock_title {
  font-size: 24px;
  color: #5F76A0;
  font-weight: 500;
  line-height: 33px;
  margin-bottom: 24px;
}

.quizBlock_text {
  font-size: 16px;
  line-height: 28px;
  color: #46536A;
  max-height: 168px;
  position: relative;
  overflow: hidden;
}

.quizBlock_text:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  transition: .2s;
}

.quizBlock_text.open {
  max-height: none;
  overflow: visible;
}

.quizBlock_text.open:after {
  background: transparent;
}

.quizBlock_introFooter {
  margin-top: auto;
  padding-top: 32px;
  display: none;
}

.quizBlock_introFooter-mobile {
  margin-top: 32px;
}

.quizBlock_button {
  display: block;
  appearance: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1182FC;
  border: 2px solid #1182FC;
  border-radius: 100px;
  padding: 16px 20px;
  text-align: center;
  width: 100%;
  min-width: 180px;
}

.quizBlock_button + .quizBlock_button {
  margin-top: 10px;
}

.quizBlock_button:hover,
.quizBlock_button:focus {
  color: #1182FC;
  outline: none;
}

.quizBlock_button-filled {
  background-color: #1182FC;
  border: 2px solid #1182FC;
  color: #fff;
}

.quizBlock_button-filled:hover,
.quizBlock_button-filled:focus {
  color: #fff;
}

.quizBlock_authors {
  font-size: 12px;
  background-color: #F8FAFD;
  margin-top: 32px;
  padding: 12px;
  border-radius: 5px;
}

.quizBlock_authors table td:first-child {
  color: #5F76A0;
  font-weight: 500;
  padding: 10px 10px 10px 0;
}

.quizBlock_authors table td {
  color: #46536A;
}

.quizBlock_authors table tr:first-child th,
.quizBlock_authors table tr:first-child td {
  padding-top: 0;
}

.quizBlock_authors table tr:last-child th,
.quizBlock_authors table tr:last-child td {
  padding-bottom: 0;
}

.quizBlock_readMore {
  display: block;
  appearance: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1182FC;
  border: 2px solid #1182FC;
  border-radius: 100px;
  padding: 16px 20px;
  text-align: center;
  width: 100%;
}

.quizBlock_readMore:focus {
  outline: none;
}

.quizBlock_header {
  width: 100%;
  text-align: center;
}

.quizBlock_main {
  width: 100%;
}

.quizBlock_questions {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}

.quizBlock_questionTitle {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: #5F76A0;
  min-height: 140px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

.quizBlock_questionTitle.desktop {
  display: none;
}

.quizBlock_questionTitle.mobile {
  padding-left: 10px;
  padding-right: 10px;
}

.quizBlock_media {
  margin: 0 -10px;
}

.quizBlock_media .edy-padding-resizer-wrapper {
  max-height: 522px;
}

.quizBlock_media img {
  max-height: 522px;
  max-width: 100%;
  width: auto;
}

.quizBlock_nav {
  width: 100%;
  text-align: center;
}

.quizBlock_bottomText {
  font-size: 12px;
  line-height: 18px;
  color: #5F76A0;
  margin-top: 32px;
  text-align: center;
}

.quizBlock_info {
  background-color: #fff;
  padding: 48px 0 32px 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  position: relative;
}

.quizBlock_infoText {
  width: 100%;
}

.quizBlock_infoImage {
  width: 100%;
  padding-top: 32px;
}

.quizBlock_infoImage img {
  border-radius: 5px;
}

.quizBlock_infoFooter {
  width: 100%;
  text-align: center;
}

.quizBlock-results .quizBlock_infoFooter {
  padding-left: 10px;
  padding-right: 10px;
}

.quizBlock_editCheck {
  font-size: 18px;
  padding: 20px 0;
}

.quizBlock_infoTag {
  background-image: url(../assets/green_arrow.svg);
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  padding: 6px;
  position: absolute;
  height: 30px;
  width: 148px;
  z-index: 2;
  left: 0;
  top: 49px;
}

.quizBlock_results {
  display: block;
  width: 100%;
  background-color: #F8FAFD;
  padding-top: 32px;
  margin-bottom: 32px;
}

.quizBlock_resultsTitle {
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
  text-align: center;
  color: #5F76A0;
}

@media (min-width: 576px) {
  .quizBlock {
    background-color: #F8FAFD;
    margin: 64px 0;
  }

  .quizBlock_headerBg {
    height: 140px;
  }

  .quizBlock_inner {
    padding: 85px 60px;
  }

  .quizBlock-question .quizBlock_inner {
    padding-top: 85px;
  }

  .quizBlock-info .quizBlock_inner {
    padding: 85px 60px;
  }

  .quizBlock-results .quizBlock_inner {
    padding: 240px 60px 85px 60px;
  }

  .quizBlock_col + .quizBlock_col {
    margin-top: 32px;
  }

  .quizBlock_intro {
    border-radius: 5px;
    padding: 64px;
    position: relative;
  }

  .quizBlock_intro:after {
    content: '';
    height: 100px;
    width: 70%;
    box-shadow: 0 0 60px rgba(95, 118, 160, 0.6);
    position: absolute;
    left: 15%;
    bottom: 10px;
    z-index: -1;
  }

  .quizBlock_title {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 32px;
  }

  .quizBlock_text {
    font-size: 18px;
  }

  .quizBlock_authors {
    font-size: 16px;
    position: relative;
    background-color: #fff;
    padding: 48px;
  }

  .quizBlock_authors:after {
    content: '';
    height: 100px;
    width: 70%;
    box-shadow: 0 0 60px rgba(95, 118, 160, 0.6);
    position: absolute;
    left: 15%;
    bottom: 10px;
    z-index: -1;
  }

  .quizBlock_button {
    display: inline-block;
    width: auto;
  }

  .quizBlock_readMore {
    display: none;
  }

  .quizBlock_text:after {
    display: none;
  }

  .quizBlock_text {
    position: static;
    overflow: visible;
    max-height: none;
  }

  .quizBlock_introFooter {
    display: block;
  }

  .quizBlock_introFooter-mobile {
    display: none;
  }

  .quizBlock_questionTitle {
    font-size: 24px;
    line-height: 33px;
  }

  .quizBlock_questions {
    padding: 32px 30px;
  }

  .quizBlock_media {
    margin: 0;
  }

  .quizBlock_bottomText {
    font-size: 16px;
    line-height: 24px;
  }

  .quizBlock_main {
    padding-bottom: 48px;
  }

  .quizBlock_info {
    padding: 48px 32px;
  }

  .quizBlock_info:after {
    content: '';
    height: 100px;
    width: 70%;
    box-shadow: 0 0 60px rgba(95, 118, 160, 0.6);
    position: absolute;
    left: 15%;
    bottom: 10px;
    z-index: -1;
  }

  .quizBlock_infoTag {
    left: 8px;
    top: 70px;
  }

  .quizBlock_infoFooter {
    padding-top: 48px;
  }

  .quizBlock-results .quizBlock_infoFooter {
    padding-left: 0;
    padding-right: 0;
  }

  .quizBlock_results {
    width: auto;
    margin: 0 auto;
    padding-top: 0;
    background: none;
  }

  .quizBlock_resultsTitle {
    font-size: 30px;
    line-height: 41px;
    padding-bottom: 24px;
  }
}

@media only screen and (min-width: 768px) {
  .quizBlock_button {
    display: inline-block;
  }

  .quizBlock_button + .quizBlock_button {
    margin-top: 0;
  }
}

@media only screen and (min-width: 992px) {
  .quizBlock_header {
    text-align: left;
    padding-bottom: 20px;
  }

  .quizBlock_main {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }

  .quizBlock_questions {
    width: 50%;
    padding-top: 0;
  }

  .quizBlock_media {
    width: 50%;
    padding-left: 20px;
  }

  .quizBlock_questionTitle.desktop {
    display: flex;
  }

  .quizBlock_questionTitle.mobile {
    display: none;
  }

  .quizBlock-info .quizBlock_inner {
    padding: 85px 120px 80px 120px;
  }

  .quizBlock_infoTag {
    left: 8px;
    top: 140px;
  }
}

@media only screen and (min-width: 1440px) {
  .quizBlock_col {
    width: 50%;
  }

  .quizBlock_col:first-child {
    padding-right: 30px;
  }

  .quizBlock_col:last-child {
    padding-left: 30px;
  }

  .quizBlock_col + .quizBlock_col {
    margin-top: 0;
  }

  .quizBlock_questions {
    width: 35%;
  }

  .quizBlock_media {
    width: 65%;
  }

  .quizBlock_bottomText {
    margin-top: auto;
  }

  .quizBlock_infoText {
    width: 37%;
  }

  .quizBlock_infoImage {
    width: 63%;
    padding-left: 32px;
    padding-top: 60px;
  }
}

/* audioPlayer */
.audioPlayer {
  width: 100%;
  display: flex;
  align-items: center;
}

.audioPlayer + .audioPlayer {
  margin-top: 22px;
}

.audioPlayer_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 5px solid #F8FAFD;
  box-shadow: 0 2px 2px rgba(95, 118, 160, 0.6);
  flex-shrink: 0;
  z-index: 1;
  position: absolute;
}

.audioPlayer_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F8FAFD;
  width: 100%;
  position: relative;
  border-radius: 5px;
  padding: 15px 16px 15px 62px;
  margin: 0 0 0 35px;
}

.audioPlayer_main:after {
  content: '';
  height: 30px;
  width: 70%;
  box-shadow: 0 0 30px rgba(95, 118, 160, 0.6);
  position: absolute;
  left: 15%;
  bottom: 5px;
  z-index: -1;
}

.audioPlayer_content {
  color: #5F76A0;
}

.audioPlayer_text {
  font-size: 12px;
  line-height: 19px;
}

.audioPlayer_title {
  font-size: 14px;
  line-height: 27px;
  font-weight: 500;
}

.audioPlayer_buttonBig {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1182FC;
  border: 2px solid #1182FC;
  border-radius: 100px;
  padding: 16px 48px;
  display: none;
  background: none;
  cursor: pointer;
}

.audioPlayer_buttonSmall {
  appearance: none;
  border: 0;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}

@media only screen and (min-width: 576px) {
  .audioPlayer + .audioPlayer {
    margin-top: 12px;
  }

  .audioPlayer_icon {
    border: 10px solid #fff;
    width: 120px;
    height: 120px;
  }

  .audioPlayer_main {
    background-color: #fff;
    padding: 15px 16px 15px 82px;
    margin: 20px 0 20px 55px;
  }

  .audioPlayer_text {
    font-size: 14px;
  }

  .audioPlayer_title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .audioPlayer_buttonBig {
    display: inline-block;
  }

  .audioPlayer_buttonSmall {
    display: none;
  }
}

/* logoList */
.logoList {
  overflow: hidden;
  margin-bottom: 32px;
}

.logoList .edy-editable {
  overflow: hidden;
}

.logoList .image-container {
  float: none;
}

@media (min-width: 576px) {
  .logoList {
    margin-bottom: 64px;
  }
}

/* countBlock */
.countBlock {
  display: inline-block;
  background-color: #fff;
  padding: 12px;
  border-radius: 5px;
  color: #5F76A0;
  position: relative;
}

.countBlock:after {
  content: '';
  height: 30px;
  width: 70%;
  box-shadow: 0 0 18px rgba(95, 118, 160, 0.6);
  position: absolute;
  left: 15%;
  bottom: 5px;
  z-index: -1;
}

.countBlock + .countBlock {
  margin-left: 10px;
}

.countBlock_title {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  padding-bottom: 12px;
}

.countBlock_main {
  display: flex;
  align-items: center;
}

.countBlock_number {
  display: inline-block;
  font-family: 'Bebas Neue', cursive;
  font-size: 36px;
  line-height: 36px;
  background: #EEF3F9;
  box-shadow: inset 0 2px 2px rgba(95, 118, 160, 0.6);
  border-radius: 5px;
  padding: 7px 7px 3px 7px;
  position: relative;
  z-index: 0;
}

.countBlock_number:before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  background-image: url("../assets/number_line_mobile.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  left: 0;
  top: calc(50% - 3px);
  z-index: -1;
}

.countBlock_number + .countBlock_number {
  margin-left: 4px;
}

.countBlock_separator {
  font-size: 30px;
  margin: 0 4px 6px 4px;
}

@media only screen and (min-width: 576px) {
  .countBlock {
    padding: 12px 18px;
  }

  .countBlock + .countBlock {
    margin-left: 16px;
  }

  .countBlock_number {
    font-size: 48px;
    line-height: 48px;
    padding: 6px 10px 2px 10px;
  }

  .countBlock_number:before {
    background-image: url("../assets/number_line_desktop.svg");
  }

  .countBlock_title {
    font-size: 14px;
  }
}

/* questionButton */
.questionButton {
  appearance: none;
  border: 0;
  background: none;
  box-shadow: none;
  cursor: pointer;
  background: #EEF3F9;
  border-radius: 100px;
  padding: 8px;
  display: flex;
  align-items: center;
  width: 100%;
  transition: .2s;
}

.questionButton:hover,
.questionButton:focus {
  outline: none;
  background-color: #D1DFEE;
  box-shadow: 0 2px 2px rgba(95, 118, 160, 0.6);
}

.questionButton.true {
  background-color: #7CC176;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3);
}

.questionButton.false {
  background: #CB6464;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3);
}

.questionButton + .questionButton {
  margin-top: 12px;
}

.questionButton_number {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #D1DFEE;
  box-shadow: inset 0 2px 2px rgba(95, 118, 160, 0.6);
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  color: #1182FC;
  padding: 12px;
  text-align: center;
  margin-right: 12px;
}

.questionButton_text {
  display: inline-block;
  font-size: 20px;
  line-height: 27px;
  color: #5F76A0;
  text-align: left;
}

.questionButton.true .questionButton_number,
.questionButton.true .questionButton_text,
.questionButton.false .questionButton_number,
.questionButton.false .questionButton_text {
  color: #fff;
}

.questionButton.true .questionButton_number {
  background: #5CAA56;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3);
}

.questionButton.false .questionButton_number {
  background: #B54646;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3);
}

/* quizNav */
.quizNav {
  background-color: #EEF3F9;
  border-radius: 100px;
  padding: 15px;
  color: #5F76A0;
  display: inline-flex;
  align-items: center;
}

.quizNav_current {
  font-weight: 700;
  margin-left: 20px;
}

.quizNav_all {
  margin-right: 20px;
}

.quizNav_item {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 2px 2px rgba(95, 118, 160, 0.6);
  background: #EEF3F9;
  display: none;
}

.quizNav_item + .quizNav_item {
  margin-left: 14px;
}

.quizNav_check {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 2px;
}

.quizNav_item.current {
  background-color: #fff;
}

.quizNav_item.true .quizNav_check {
  background-color: #7CC176;
}

.quizNav_item.false .quizNav_check {
  background-color: #CB6464;
}

.quizNav_separator {
  margin: 0 4px;
}

@media only screen and (min-width: 576px) {
  .quizNav {
    background-color: #fff;
  }

  .quizNav_item {
    display: inline-block;
  }
}

.voogEditButton {
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  background-color: rgba(29,33,36,0.5);
  border-radius: 11px;
  text-decoration: none;
  transition: .2s;
  position: absolute;
  top: 20px;
  left: 20px;
}

.voogEditButton:hover,
.voogEditButton:focus {
  background-color: #1d2124;
  text-decoration: none;
  color: #fff;
}

.editmode .edy-cbtn {
  margin: 5px 8px !important;
}

.resultsBox {
  border-radius: 5px;
  position: relative;
  padding: 32px 10px;
}

.resultsBox_icon {
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
  border: 10px solid #fff;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.resultsBox_title {
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  color: #1182FC;
}

.resultsBox_text {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #5F76A0;
  padding-top: 16px;
}

@media only screen and (min-width: 576px) {
  .resultsBox {
    background-color: #fff;
    margin-top: 60px;
    padding: 74px 64px 64px 64px;
  }

  .resultsBox:after {
    content: '';
    height: 100px;
    width: 70%;
    box-shadow: 0 0 60px rgba(95, 118, 160, 0.6);
    position: absolute;
    left: 15%;
    bottom: 10px;
    z-index: -1;
  }

  .resultsBox_icon {
    position: absolute;
    top: -60px;
    left: calc(50% - 60px);
  }

  .resultsBox_title {
    font-size: 60px;
    line-height: 82px;
  }

  .resultsBox_text {
    font-size: 18px;
    line-height: 25px;
  }
}
