* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  position: relative;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  height: 100%;
}

.lock {
  overflow: hidden;
}

.lock1 {
  overflow: hidden;
}

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

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #132378;
}
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #132378;
}
@media (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #132378;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-family: "Cabin", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #132378;
}

p {
  font-family: "Cabin", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: #626C9F;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.btn__write {
  max-width: 216px;
  display: flex;
  padding: 18px 42px;
  background: #5381FC;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  transition: background 0.3s linear;
  -webkit-transition: background 0.3s linear;
  -moz-transition: background 0.3s linear;
  -ms-transition: background 0.3s linear;
  -o-transition: background 0.3s linear;
}
.btn__write:hover {
  background-color: #132378;
}
.btn__write .icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/mail.svg");
  background-size: cover;
  margin-right: 10px;
}

.container {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1176px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 30px;
  }
}
.header.fixed {
  position: fixed;
  top:0; left:0;
  width: 100%; 
  background: #fff;
  z-index: 999;
}
.header .header__body {
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header__body .logo .logo__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header .header__body .logo .logo__link img {
  width: 175px;
  height: 43px;
}
.header .header__body .logo .logo__link span {
  padding-left: 16px;
  font-family: "Raleway", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #132378;
}
.header .header__body .logo__mobmenu {
  display: none;
}
@media (max-width: 992px) {
  .header .header__body .logo__mobmenu {
    display: block;
    position: absolute;
    top: 12px;
    left: -150%;
    z-index: 12;
    transition: all 1s ease;
  }
}
.header .header__body .logo__mobmenu .logo__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header .header__body .logo__mobmenu .logo__link img {
  width: 175px;
  height: 43px;
}
.header .header__body .logo__mobmenu .logo__link span {
  padding-left: 16px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
}
.header .header__body .logo__mobmenu.active {
  left: 26px;
}
.header .header__body .menu {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .header .header__body .menu {
    position: fixed;
    top: 0;
    left: -150%;
    width: 100%;
    z-index: 10;
    text-align: center;
    background-color: #5381FC;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    transition: all 1s ease;
  }
}
.header .header__body .menu .menu__img {
  display: none;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__img {
    display: block;
    margin-top: 176px;
  }
  .header .header__body .menu .menu__img img {
    width: 204px;
    height: auto;
  }
}
.header .header__body .menu .menu__nav {
  padding-right: 180px;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__nav {
    padding-right: 0;
  }
}
.header .header__body .menu .menu__nav ul {
  display: flex;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__nav ul {
    display: block;
    margin-top: 85px;
    margin-bottom: 52px;
  }
}
.header .header__body .menu .menu__nav ul li {
  padding: 0 13px;
  list-style: none;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__nav ul li {
    padding: 13px 0;
  }
}
.header .header__body .menu .menu__nav ul li :where(a, span) {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #132378;
  text-decoration: none;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__nav ul li :where(a, span) {
    color: #fff;
    display: block;
  }
}
.header .header__body .menu .menu__nav ul li .active {
  color: #5381FC;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__nav ul li .active {
    color: #132378;
  }
}
.header .header__body .menu .menu__btn {
  position: relative;
  z-index: 4;
}
.header .header__body .menu .menu__btn .btn__ask {
  padding: 20px 32px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #132378;
  text-decoration: none;
  border: 2px solid #132378;
  border-radius: 8px;
  outline: 0;
  transition: background 0.3s linear;
}
.header .header__body .menu .menu__btn .btn__ask:hover {
  color: #FFFFFF;
  border: 2px solid #5381FC;
  background-color: #5381FC;
}
@media (max-width: 992px) {
  .header .header__body .menu .menu__btn .btn__ask {
    max-width: 180px;
    background-color: #fff;
    color: #5381FC;
    border: 0;
    margin: 0 auto;
  }
}
.header .header__body .menu.active {
  left: 0;
}
.header .header__body .burger {
  display: none;
}
@media (max-width: 992px) {
  .header .header__body .burger {
    margin-right: 6px;
    display: block;
    position: relative;
    z-index: 8;
  }
}
.header .header__body .burger .burger__1 {
  margin-top: 3px;
  width: 20px;
  height: 2px;
  background-color: #000000;
  position: relative;
  z-index: 2;
}
.header .header__body .btn-close {
  position: absolute;
  top: 12px;
  right: 150%;
  z-index: 12;
  transition: all 1s ease;
}
.header .header__body .btn-close img {
  width: 18px;
  height: 18px;
}
.header .header__body .active.btn-close {
  right: 24px;
}

.home {
  margin: 60px 0 30px;
}
.home .home__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .home .home__body {
    display: block;
  }
}
.home .home__body .home__body-text {
  margin-right: 30px;
  padding: 32px 36px;
}
@media (max-width: 992px) {
  .home .home__body .home__body-text {
    text-align: center;
    margin: 0;
    padding: 0 0 30px 0;
  }
}
.home .home__body .home__body-text .home__body-h1 {
  max-width: 496px;
}
@media (max-width: 992px) {
  .home .home__body .home__body-text .home__body-h1 {
    max-width: 100%;
  }
}
.home .home__body .home__body-text .home__body-p {
  padding: 24px 0 40px;
  max-width: 496px;
}
@media (max-width: 992px) {
  .home .home__body .home__body-text .home__body-p {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .home .home__body .home__body-text .home__body-p p {
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .home .home__body .home__body-text .home__body-btn {
    margin: 0 auto;
  }
}
.home .home__body .home__body-img {
  max-width: 558px;
}
@media (max-width: 992px) {
  .home .home__body .home__body-img {
    margin: 0 auto;
  }
}
.home .home__body .home__body-img img {
  width: 100%;
  height: auto;
}

.services {
  padding: 90px 0 60px;
}
@media (max-width: 992px) {
  .services {
    padding: 30px 0 15px;
  }
}
.services .services__body .tabs {
  display: block;
}
@media (max-width: 768px) {
  .services .services__body .tabs {
    display: none;
  }
}
.services .services__body .tabs .tab-header {
  margin-bottom: 90px;
  display: flex;
  justify-content: center;
  padding: 32px 36px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
}
.services .services__body .tabs .tab-header .tab-button {
  margin: 0 30px;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #132378;
}
.services .services__body .tabs .tab-header .tab-button.active {
  color: #5381FC;
}
.services .services__body .tabs .tab-content .tab-item {
  display: none;
}
.services .services__body .tabs .tab-content .tab-item.active {
  display: flex;
  animation: fade-in 1s ease-in-out forwards;
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item.active {
    flex-direction: column;
  }
}
.services .services__body .tabs .tab-content .tab-item .tab-item__img {
  padding-right: 20px;
  max-width: 568px;
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__img {
    margin: 0 auto 40px;
  }
}
.services .services__body .tabs .tab-content .tab-item .tab-item__img img {
  width: 100%;
  height: auto;
}
.services .services__body .tabs .tab-content .tab-item .tab-item__text {
  max-width: 568px;
  padding: 32px 36px;
}
@media (max-width: 1160px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__text {
    padding: 0px 36px;
  }
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__text {
    margin: 0 auto;
  }
}
.services .services__body .tabs .tab-content .tab-item .tab-item__text .tab-item__h2 {
  text-align: left;
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__text .tab-item__h2 {
    text-align: center;
  }
}
.services .services__body .tabs .tab-content .tab-item .tab-item__text .tab-item__p {
  padding: 24px 0 40px;
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__text .tab-item__p {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .services .services__body .tabs .tab-content .tab-item .tab-item__text .tab-item__btn {
    margin: 0 auto;
  }
}
.services .services__body .accordions {
  display: none;
}
@media (max-width: 768px) {
  .services .services__body .accordions {
    display: block;
  }
}
.services .services__body .accordions .accordion__panel {
  position: relative;
}
.services .services__body .accordions .accordion__panel .accordion {
  margin-bottom: 15px;
  padding: 32px 44px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #132378;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}
.services .services__body .accordions .accordion__panel .accordion:last-child {
  margin-bottom: 0px;
}
.services .services__body .accordions .accordion__panel .accordion::after {
  content: "";
  background-image: url("../images/up.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 0;
  right: -4px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services .services__body .accordions .accordion__panel .active:after {
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 6px;
  right: -8px;
  width: 20px;
  height: 20px;
}
.services .services__body .accordions .accordion__panel .panel {
  margin: 40px 0;
  display: none;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  animation: fade-in 1s ease-in-out forwards;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__img {
  margin: 0 auto;
  max-width: 300px;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__img img {
  width: 100%;
  height: auto;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__text {
  padding-top: 40px;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__text .tab-item__h2 {
  text-align: center;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__text .tab-item__p {
  padding: 24px 0 40px;
  text-align: center;
}
.services .services__body .accordions .accordion__panel .panel .tab-item__text .tab-item__btn {
  margin: 0 auto;
}

.benefits {
  padding-top: 90px;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .benefits {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.benefits .benefits__body .benefits__body-h2 {
  margin-bottom: 40px;
  text-align: center;
}
.benefits .benefits__body .benefits__body-cards {
  display: flex;
}
@media (max-width: 992px) {
  .benefits .benefits__body .benefits__body-cards {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card {
  margin-right: 20px;
  padding: 32px 36px;
  text-align: center;
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card:last-child {
  margin-right: 0px;
}
@media (max-width: 992px) {
  .benefits .benefits__body .benefits__body-cards .benefits__body-card {
    margin-right: 0px;
    margin-bottom: 16px;
  }
  .benefits .benefits__body .benefits__body-cards .benefits__body-card:last-child {
    margin-bottom: 0px;
  }
}
@media (max-width: 603px) {
  .benefits .benefits__body .benefits__body-cards .benefits__body-card {
    padding: 32px 20px;
  }
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card__img {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  background: #F2F6FE;
  border-radius: 8px;
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card__img img {
  width: 70px;
  height: 70px;
  position: relative;
  top: 14px;
  left: 0;
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card__h3 {
  padding: 16px 0;
  max-width: 142px;
  margin: 0 auto;
}
@media (max-width: 603px) {
  .benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card__h3 {
    max-width: 100%;
    justify-content: center;
  }
}
.benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card-p {
  max-width: 200px;
}
@media (max-width: 603px) {
  .benefits .benefits__body .benefits__body-cards .benefits__body-card .benefits__body-card-p {
    max-width: 260px;
  }
}

.do {
  padding: 90px 0 120px;
}
@media (max-width: 992px) {
  .do {
    padding: 60px 0 15px;
  }
}
.do .do__h2 {
  padding-bottom: 23px;
  text-align: left;
}
@media (max-width: 992px) {
  .do .do__h2 {
    text-align: center;
  }
}
.do .do__body .tabs {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .do .do__body .tabs {
    display: none;
  }
}
.do .do__body .tabs .tab-wrapper {
  display: flex;
}
.do .do__body .tabs .tab-header {
  width: 50%;
  display: flex;
  margin-right: 10px;
}
.do .do__body .tabs .tab-header .tab-header1 {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button {
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 96px 36px 32px;
  background: #FFFFFF;
  width: 274px;
  border: 1px solid #C8D4FF;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  position: relative;
  z-index: 10;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  align-items: center;
  color: #132378;
  text-align: center;
  justify-content: center;
}
@media (max-width: 1160px) {
  .do .do__body .tabs .tab-header .tab-header1 .tab_button {
    width: auto;
  }
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button:last-child {
  margin-bottom: 0px;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button.active {
  color: #FFFFFF;
  background: #5381FC;
  border: 1px solid #5381FC;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button.active .icon-1 {
  background-image: url("../images/do_1.svg");
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button .icon-1 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-1.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button.active .icon-2 {
  background-image: url("../images/do_2.svg");
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button .icon-2 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-2.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button.active .icon-3 {
  background-image: url("../images/do_3.svg");
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button .icon-3 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-3.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-header .tab-header1 .tab_button::before {
  content: "";
  display: block;
  height: 16px;
}
.do .do__body .tabs .tab-header .tab-header2 {
  display: flex;
  flex-direction: column;
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button {
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 96px 36px 32px;
  width: 274px;
  background: #FFFFFF;
  border: 1px solid #C8D4FF;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #132378;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 1160px) {
  .do .do__body .tabs .tab-header .tab-header2 .tab_button {
    width: auto;
  }
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button:last-child {
  margin-bottom: 0px;
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button.active {
  color: #FFFFFF;
  background: #5381FC;
  border: 1px solid #5381FC;
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button.active .icon-4 {
  background-image: url("../images/do_4.svg");
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button .icon-4 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-4.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button.active .icon-5 {
  background-image: url("../images/do_5.svg");
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button .icon-5 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-5.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button.active .icon-6 {
  background-image: url("../images/do_6.svg");
}
.do .do__body .tabs .tab-header .tab-header2 .tab_button .icon-6 {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  background-image: url("../images/do-6.svg");
  background-size: cover;
}
.do .do__body .tabs .tab-content {
  width: 50%;
}
.do .do__body .tabs .tab-content .tab_item {
  display: none;
}
.do .do__body .tabs .tab-content .tab_item.active {
  display: block;
  animation: fade-in 1s ease-in-out forwards;
}
.do .do__body .tabs .tab-content .tab_item .tab-item__text {
  padding: 32px 36px 32px 72px;
}
@media (max-width: 1160px) {
  .do .do__body .tabs .tab-content .tab_item .tab-item__text {
    padding: 0px 36px 32px 72px;
  }
}
.do .do__body .tabs .tab-content .tab_item .tab-item__text .tab-item__h2 {
  text-align: left;
}
.do .do__body .tabs .tab-content .tab_item .tab-item__text .tab-item__p {
  padding: 24px 0 40px;
}
.do .do__body .accordions {
  display: none;
}
@media (max-width: 768px) {
  .do .do__body .accordions {
    display: block;
  }
}
.do .do__body .accordions .accordion__panel {
  position: relative;
}
.do .do__body .accordions .accordion__panel .acc {
  cursor: pointer;
  margin-bottom: 15px;
  padding: 32px 20px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #132378;
  background: transparent;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}
.do .do__body .accordions .accordion__panel .acc img {
  margin-right: 16px;
  width: 48px;
  height: 48px;
}
.do .do__body .accordions .accordion__panel .acc:last-child {
  margin-bottom: 0px;
}
.do .do__body .accordions .accordion__panel .acc::after {
  content: "";
  background-image: url("../images/up.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 0;
  right: -4px;
  width: 38px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.do .do__body .accordions .accordion__panel .active:after {
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 6px;
  right: -8px;
  width: 38px;
  height: 20px;
}
.do .do__body .accordions .accordion__panel .panell {
  display: none;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  animation: fade-in 1s ease-in-out forwards;
}
.do .do__body .accordions .accordion__panel .panell .tab-item__text {
  padding: 23px 0 40px;
}
.do .do__body .accordions .accordion__panel .panell .tab-item__text .tab-item__h2 {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #132378;
}
.do .do__body .accordions .accordion__panel .panell .tab-item__text .tab-item__p {
  padding: 24px 0 40px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #626C9F;
}
.do .do__body .accordions .accordion__panel .panell .tab-item__text .tab-item__btn {
  margin: 0 auto;
}

.about {
  padding-top: 58px;
  padding-bottom: 88px;
}
@media (max-width: 992px) {
  .about {
    padding: 60px 0 30px;
  }
}
.about .about__body {
  display: flex;
}
@media (max-width: 992px) {
  .about .about__body {
    display: block;
  }
}
.about .about__body .about__body-text {
  padding: 32px 36px;
}
@media (max-width: 992px) {
  .about .about__body .about__body-text {
    padding: 0;
  }
}
.about .about__body .about__body-text .about__body-text__h2 {
  text-align: left;
}
@media (max-width: 992px) {
  .about .about__body .about__body-text .about__body-text__h2 {
    text-align: center;
  }
}
.about .about__body .about__body-text .about__body-text__p {
  padding: 24px 0 40px;
  max-width: 496px;
}
@media (max-width: 992px) {
  .about .about__body .about__body-text .about__body-text__p {
    max-width: 100%;
    text-align: center;
  }
}
.about .about__body .about__body-text .about__body-text__btn {
  max-width: 217px;
  padding: 20px 60px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #5381FC;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s linear;
}
.about .about__body .about__body-text .about__body-text__btn:hover {
  background-color: #132378;
}
@media (max-width: 992px) {
  .about .about__body .about__body-text .about__body-text__btn {
    margin: 0 auto;
  }
}
.about .about__body .about__body-textnumber {
  padding-top: 32px;
  display: flex;
}
@media (max-width: 992px) {
  .about .about__body .about__body-textnumber {
    padding-top: 40px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .about .about__body .about__body-textnumber {
    flex-direction: column;
  }
}
.about .about__body .about__body-textnumber .about__body-card {
  margin-left: 20px;
  width: 274px;
  height: 244px;
  padding: 32px 36px;
  background-color: #F2F6FE;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .about .about__body .about__body-textnumber .about__body-card {
    margin-bottom: 24px;
    text-align: center;
  }
  .about .about__body .about__body-textnumber .about__body-card:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .about .about__body .about__body-textnumber .about__body-card {
    margin: 0 auto 24px;
  }
  .about .about__body .about__body-textnumber .about__body-card:last-child {
    margin-bottom: 0;
  }
}
.about .about__body .about__body-textnumber .about__body-card_p {
  max-width: 127px;
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .about .about__body .about__body-textnumber .about__body-card_p {
    max-width: 100%;
  }
}
.about .about__body .about__body-textnumber .about__body-card_p p {
  color: #132378;
}

.brand {
  padding: 90px 0;
}
@media (max-width: 992px) {
  .brand {
    padding: 60px 0;
  }
}
.brand .brand__header .brand__header-h2 {
  max-width: 803px;
  margin: 0 auto;
}
.brand .brand__header .brand__header-h2 span {
  color: #5381FC;
}
@media (max-width: 768px) {
  .brand .brand__header .brand__header-h2 span {
    color: #132378;
  }
}
.brand .brand__header .brand__header-p {
  padding: 24px 0 40px;
  max-width: 75vw;
  margin: 0 auto;
  text-align: center;
}
.brand .brand__body .swiper {
  width: 100%;
  height: 100%;
}
.brand .brand__body .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand .brand__body .swiper-slide {
  width: 114px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand .brand__body .swiper-slide img {
  margin: 0 30px;
}

.contacts {
  padding: 110px 0 40px;
  background: #5381FC;
  position: relative;
}
@media (max-width: 992px) {
  .contacts {
    padding: 60px 0 0px;
  }
}
.contacts .img__usb {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  max-width: 420px;
  transform: translate(-90%, -50%);
  -webkit-transform: translate(-90%, -50%);
  -moz-transform: translate(-90%, -50%);
  -ms-transform: translate(-90%, -50%);
  -o-transform: translate(-90%, -50%);
}
.contacts .img__usb img {
  width: 100%;
  height: auto;
}
.contacts .container-con {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1176px;
}
@media (max-width: 992px) {
  .contacts .container-con {
    padding: 0;
  }
}
.contacts .container-con .contacts__body {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body {
    display: block;
  }
}
.contacts .container-con .contacts__body .contacts__body-text {
  margin-right: 20px;
  max-width: 496px;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text {
    max-width: 100%;
    position: relative;
    padding: 0 30px 230px;
    margin-right: 0px;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-text__h2 {
  color: #FFFFFF;
  text-align: left;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text .contacts__body-text__h2 {
    text-align: center;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-text__p p {
  padding: 24px 0 40px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #D6E4FF;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text .contacts__body-text__p p {
    justify-content: center;
    text-align: center;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info {
  padding-left: 24px;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text .contacts__body-info {
    padding-left: 0px;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul {
  display: block;
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul li {
  padding-bottom: 20px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul li {
    justify-content: center;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul li:last-child {
  padding-bottom: 0px;
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul li img {
  width: 24px;
  height: 24px;
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-info ul li p {
  padding-left: 16px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-img {
  display: none;
  position: absolute;
  bottom: 32px;
  right: 0;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-text .contacts__body-img {
    display: block;
  }
}
.contacts .container-con .contacts__body .contacts__body-text .contacts__body-img img {
  width: 100%;
  height: auto;
}
.contacts .container-con .contacts__body .contacts__body-form {
  padding: 43px 53px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  display: block;
  position: relative;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-form {
    padding: 38px 30px 44px;
    border-radius: 0;
  }
}
.contacts .container-con .contacts__body .contacts__body-form .contacts__body-form__peri {
  padding-bottom: 12px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #132378;
}
.contacts .container-con .contacts__body .contacts__body-form .empty {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  justify-content: center;
}
.contacts .container-con .contacts__body .contacts__body-form .empty p {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #5381FC;
}
.contacts .container-con .contacts__body .contacts__body-form .empty img {
  margin-left: 4px;
  width: 24px;
  height: 24px;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row {
  display: flex;
  flex-direction: column;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=name] {
  padding: 0 12px 0 24px;
  margin-bottom: 24px;
  width: 462px;
  height: 48px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  outline: 0;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #132378;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=name] {
    max-width: 462px;
    width: 100%;
    margin: 0 auto 24px;
  }
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=name]::-moz-placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=name]::placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=email] {
  margin-bottom: 24px;
  padding: 0 12px 0 24px;
  width: 462px;
  height: 48px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  outline: 0;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #132378;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=email] {
    max-width: 462px;
    width: 100%;
    margin: 0 auto 24px;
  }
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=email]::-moz-placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row input[name=email]::placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row textarea[name=message] {
  margin-bottom: 16px;
  padding: 12px 12px 0 24px;
  width: 462px;
  min-height: 100px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  outline: 0;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #132378;
  resize: none;
}
@media (max-width: 992px) {
  .contacts .container-con .contacts__body .contacts__body-form form .input-row textarea[name=message] {
    max-width: 462px;
    width: 100%;
    margin: 0 auto 24px;
  }
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row textarea[name=message]::-moz-placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row textarea[name=message]::placeholder {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #C8D4FF;
}
.contacts .container-con .contacts__body .share {
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-top: 16px;
}
.contacts .container-con .contacts__body .share img {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.contacts .container-con .contacts__body .share p {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #626C9F;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row .submit-button {
  margin: 24px auto 0;
  max-width: 262px;
  display: flex;
  padding: 18px 42px;
  background: #5381FC;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  outline: none;
  border: 0;
  cursor: pointer;
  transition: background 0.3s linear;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row .submit-button:hover {
  background: #132378;
}
.contacts .container-con .contacts__body .contacts__body-form form .input-row .submit-button .icon {
  width: 24px;
  height: 24px;
  background-image: url("../images/mail.svg");
  background-size: cover;
  margin-right: 10px;
}

.footer {
  background-color: #5381FC;
  padding: 50px 0 56px;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 32px;
  }
}
.footer .footer__body .footer__body-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row .footer__body-logo {
    padding-bottom: 40px;
  }
}
.footer .footer__body .footer__body-row .footer__body-logo .logo__link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row .footer__body-logo .logo__link {
    justify-content: center;
  }
}
.footer .footer__body .footer__body-row .footer__body-logo .logo__link img {
  margin-right: 16px;
  width: 174px;
  height: 43px;
}
.footer .footer__body .footer__body-row .footer__body-logo .logo__link span {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
}
.footer .footer__body .footer__body-row .footer__body-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row .footer__body-menu {
    display: none;
  }
}
.footer .footer__body .footer__body-row .footer__body-menu ul li {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding-left: 25px;
  position: relative;
  display: inline-block;
}

.footer .footer__body .footer__body-row .footer__body-menu ul li a {
  margin-bottom: 8px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  display: block;
  color: #fff;
  transition: color 0.3s linear;
}
.footer .footer__body .footer__body-row .footer__body-menu ul li span:hover {
  cursor: default;
}
.footer .footer__body .footer__body-row .footer__body-menu ul li .active,
.footer .footer__body .footer__body-row .footer__body-menu ul li a:hover {
  color: #132378;
}
.footer .footer__body .footer__body-row .footer__body-menu .dropdown:hover .dropdown-content {
  display: block;
}
.footer .footer__body .footer__body-row .footer__body-menu a {
  text-decoration: none;
}
.footer .footer__body .footer__body-row .footer__body-menu__mob {
  display: none;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row .footer__body-menu__mob {
    display: block;
  }
}
.footer .footer__body .footer__body-row .footer__body-menu__mob ul li {
  list-style: none;
  padding-bottom: 16px;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row .footer__body-menu__mob ul li {
    text-align: center;
  }
}
.footer .footer__body .footer__body-row .footer__body-menu__mob ul li span,
.footer .footer__body .footer__body-row .footer__body-menu__mob ul li a {
  text-decoration: none;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.footer .footer__body .footer__body-row .footer__body-menu__mob ul li .active {
  color: #132378;
}
.footer .footer__body .footer__body-row2 {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row2 {
    padding-top: 24px;
    flex-direction: column;
  }
}
.footer .footer__body .footer__body-row2 .footer__body-all p {
  max-width: 100px;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 25px;
  color: #D6E4FF;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row2 .footer__body-all {
    order: 3;
  }
}
.footer .footer__body .footer__body-row2 .footer__body-soc {
  margin-left: 428px;
}
@media (max-width: 1160px) {
  .footer .footer__body .footer__body-row2 .footer__body-soc {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row2 .footer__body-soc {
    padding-bottom: 24px;
    order: 1;
  }
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li {
  list-style: none;
  display: flex;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a {
  margin-right: 16px;
  text-decoration: none;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container {
  padding: 8px;
  background: #5381FC;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  transition: background 0.3s linear;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container:hover {
  background-color: #FFFFFF;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container:hover .icon1 {
  background-image: url("../images/twitter-b.svg");
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container:hover .icon2 {
  background-image: url("../images/face-b.svg");
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container:hover .icon3 {
  background-image: url("../images/youtube-b.svg");
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container:hover .icon4 {
  background-image: url("../images/in-b.svg");
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container .icon1 {
  width: 24px;
  height: 24px;
  background-image: url("../images/twitter-w.svg");
  background-repeat: no-repeat;
  text-align: center;
  justify-content: center;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container .icon2 {
  width: 24px;
  height: 24px;
  background-image: url("../images/face-w.svg");
  background-repeat: no-repeat;
  text-align: center;
  justify-content: center;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container .icon3 {
  width: 24px;
  height: 24px;
  background-image: url("../images/youtube-w.svg");
  background-repeat: no-repeat;
  text-align: center;
  justify-content: center;
}
.footer .footer__body .footer__body-row2 .footer__body-soc ul li a .icon-container .icon4 {
  width: 24px;
  height: 24px;
  background-image: url("../images/in-w.svg");
  background-repeat: no-repeat;
  text-align: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row2 .footer__body-info {
    padding-bottom: 8px;
    order: 2;
  }
}
.footer .footer__body .footer__body-row2 .footer__body-info ul {
  display: flex;
}
.footer .footer__body .footer__body-row2 .footer__body-info ul li {
  padding-left: 28px;
  list-style: none;
}
@media (max-width: 768px) {
  .footer .footer__body .footer__body-row2 .footer__body-info ul li:first-child {
    padding-left: 0px;
  }
}
.footer .footer__body .footer__body-row2 .footer__body-info ul li a {
  text-decoration: none;
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 25px;
  color: #D6E4FF;
}

.devel {
  padding: 90px 0 60px;
}
@media (max-width: 992px) {
  .devel {
    padding: 30px 0;
  }
}
.devel .devel__body .tabs {
  display: block;
}
@media (max-width: 768px) {
  .devel .devel__body .tabs {
    display: none;
  }
}
.devel .devel__body .tabs .tab-header {
  margin-bottom: 74px;
  display: flex;
  justify-content: center;
  padding: 32px 36px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
}
.devel .devel__body .tabs .tab-header .tab-button {
  margin: 0 30px;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #132378;
}
.devel .devel__body .tabs .tab-header .tab-button.active {
  color: #5381FC;
}
.devel .devel__body .tabs .tab-content .tab-item {
  display: none;
}
.devel .devel__body .tabs .tab-content .tab-item.active {
  display: flex;
  animation: fade-in 1s ease-in-out forwards;
}
@media (max-width: 1160px) {
  .devel .devel__body .tabs .tab-content .tab-item.active {
    flex-direction: column;
  }
}
.devel .devel__body .tabs .tab-content .tab-item .item_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.devel .devel__body .tabs .tab-content .tab-item .item_cards .item-card {
  padding: 24px 36px;
  margin-bottom: 20px;
}
.devel .item_cards h2 {
  margin-bottom: 48px;
}
.devel .item_cards .item-card__h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}
.devel .devel__body .tabs .tab-content .tab-item .item_cards .item-card .item-card__h3 {
  padding-bottom: 16px;
}
.devel .devel__body .tabs .tab-content .tab-item .item_cards .item-card .item-card__p {
  max-width: 300px;
}
.devel .devel__body .accordions {
  display: none;
}
@media (max-width: 768px) {
  .devel .devel__body .accordions {
    display: block;
  }
}
.devel .devel__body .accordions .accordion__panel {
  position: relative;
}
.devel .devel__body .accordions .accordion__panel .accordion {
  margin-bottom: 15px;
  padding: 32px 20px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #132378;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}
.devel .devel__body .accordions .accordion__panel .accordion:last-child {
  margin-bottom: 0px;
}
.devel .devel__body .accordions .accordion__panel .accordion::after {
  content: "";
  background-image: url("../images/up.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 0;
  right: -4px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.devel .devel__body .accordions .accordion__panel .active:after {
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 6px;
  right: -8px;
  width: 20px;
  height: 20px;
}
.devel .devel__body .accordions .accordion__panel .panel {
  margin: 40px 0 24px;
  display: none;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  animation: fade-in 1s ease-in-out forwards;
}
.devel .devel__body .accordions .accordion__panel .panel .item_cards {
  display: block;
  text-align: left;
}
.devel .devel__body .accordions .accordion__panel .panel .item_cards .item-card {
  padding: 24px 36px;
  margin-bottom: 20px;
}
.devel .devel__body .accordions .accordion__panel .panel .item_cards .item-card:last-child {
  margin-bottom: 0px;
}
.devel .devel__body .accordions .accordion__panel .panel .item_cards .item-card .item-card__h3 {
  padding-bottom: 16px;
}
.devel .devel__body .accordions .accordion__panel .panel .item_cards .item-card .item-card__p p {
  font-family: "Cabin";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #626C9F;
}

.hard {
  padding: 90px 0 20px;
}
@media (max-width: 992px) {
  .hard {
    padding: 30px 0;
  }
}
.hard .hard__body .tabs {
  display: block;
}
@media (max-width: 768px) {
  .hard .hard__body .tabs {
    display: none;
  }
}
.hard .hard__body .tabs .tab-header {
  margin-bottom: 90px;
  display: flex;
  justify-content: center;
  padding: 32px 36px;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
}
.hard .hard__body .tabs .tab-header .tab-button {
  margin: 0 30px;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #132378;
  text-transform: capitalize;
}
@media (max-width: 992px) {
  .hard .hard__body .tabs .tab-header .tab-button {
    margin: 0 20px;
  }
}
.hard .hard__body .tabs .tab-header .tab-button.active {
  color: #5381FC;
}
.hard .hard__body .tabs .tab-content .tab-item {
  display: none;
}
.hard .hard__body .tabs .tab-content .tab-item.active {
  display: flex;
  animation: fade-in 1s ease-in-out forwards;
}
@media (max-width: 1160px) {
  .hard .hard__body .tabs .tab-content .tab-item.active {
    flex-direction: column;
  }
}
.hard .hard__body .tabs .tab-content .tab-item .item-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.hard .hard__body .tabs .tab-content .tab-item .item-cards .item-card {
  padding-bottom: 40px;
  width: calc(25% - 20px);
  width: -webkit-calc(25% - 20px);
}
.hard .hard__body .tabs .tab-content .tab-item .item-cards .item-card .item-card__img {
  max-width: 274px;
}
.hard .hard__body .tabs .tab-content .tab-item .item-cards .item-card .item-card__img img {
  width: 100%;
  height: auto;
}
.hard .hard__body .tabs .tab-content .tab-item .item-cards .item-card .item-card__h3 {
  padding-top: 24px;
  justify-content: center;
}
.item-card .item-card__h3 {
  font-family: "Cabin", sans-serif;
}
.hard .hard__body .accordions {
  display: none;
}
@media (max-width: 768px) {
  .hard .hard__body .accordions {
    display: block;
  }
}
.hard .hard__body .accordions .accordion__panel {
  position: relative;
}
.hard .hard__body .accordions .accordion__panel .accordion {
  margin-bottom: 15px;
  padding: 32px 20px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #132378;
  background: #F2F6FE;
  border: 1px solid #C8D4FF;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
}
.hard .hard__body .accordions .accordion__panel .accordion:last-child {
  margin-bottom: 0px;
}
.hard .hard__body .accordions .accordion__panel .accordion::after {
  content: "";
  background-image: url("../images/up.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 0;
  right: -4px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hard .hard__body .accordions .accordion__panel .active:after {
  background-image: url("../images/down.svg");
  background-repeat: no-repeat;
  font-size: 18px;
  float: right;
  margin-left: 5px;
  -webkit-box-align: center;
  position: relative;
  top: 6px;
  right: -8px;
  width: 20px;
  height: 20px;
}
.hard .hard__body .accordions .accordion__panel .panel {
  margin: 40px 0 24px;
  display: none;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  animation: fade-in 1s ease-in-out forwards;
}
.hard .hard__body .accordions .accordion__panel .panel .item-cards {
  display: block;
}
.hard .hard__body .accordions .accordion__panel .panel .item-cards .item-card {
  padding-bottom: 40px;
}
.hard .hard__body .accordions .accordion__panel .panel .item-cards .item-card .item-card__img {
  max-width: 274px;
  margin: 0 auto;
}
.hard .hard__body .accordions .accordion__panel .panel .item-cards .item-card .item-card__img img {
  width: 100%;
  height: auto;
}
.hard .hard__body .accordions .accordion__panel .panel .item-cards .item-card .item-card__h3 {
  padding-top: 24px;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */