* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Stolzl', Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #2a374c;
    line-height: 1.5;
    counter-reset: itemNumber;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    color: #fff;
    text-decoration: none;
    transition: color .5s;
}
a:hover {
    color: #0eb582;
}
img {
    max-width: 100%;
}
.btn-primary {
    background: #0eb582;
    border-color: #0eb582;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px 10px;
    transition: all .3s;
}
.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background: #15263b;
    border-color: #15263b;
}
.btn-primary--outline {
    background: transparent;
    color: #0eb582;
}
.btn-primary--outline:hover {
    background: #0eb582;
    border-color: #0eb582;
    color: #fff;
}
.btn-block {
    width: 100%;
}
#scrollUp {
    display: none;
    background: #0eb582 none repeat scroll 0 0;
    bottom: 30px;
    color: #fff;
    font-size: 30px;
    height: 40px;
    line-height: 40px;
    right: 100px;
    text-align: center;
    border-radius: 5px;
    width: 40px;
}
.page-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main {
    flex-grow: 1;
}
.section-head__subtitle {
    font-size: 16px;
    color: #0eb582;
    margin-bottom: 13px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}
.section-head__title {
    font-size: 40px;
    font-weight: 700;
    padding: 0 0 20px 0;
}
@media screen and (max-width: 991px) {
    .section-head__title {
        font-size: 30px;
    }
}
@media screen and (max-width: 768px) {
    #scrollUp {
        right: 50px;
    }
}
@media screen and (max-width: 480px) {
    .section-head__title {
        font-size: 24px;
    }
}
/*header*/
.header {
    background: #05355b;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    transition: top .6s;
}
.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}
.header__wrapper {
    height: 80px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: max-width .4s;
}
.header--fixed .header__wrapper {
    max-width: 100%;
    background: #05355b;
    border-radius: 0;
}
.header__nav {
    flex-grow: 1;
    height: 100%;
}
.header__nav-list {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__nav-mobile {
    display: none;
}
.header__nav-item {
    height: 100%;
    padding: 0 10px;
}
.header__nav-item a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    font-size: 18px;
}
.dropdown-menu {
    background: #0eb582;
}
.dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 15px;
    transition: all .3s;
}
.dropdown-menu .dropdown-item:hover {
    background: #fff;
    color: #0eb582;
}
.header__user-nav {
    margin-left: 30px;
}
@media screen and (max-width: 1080px) {
    .header__nav-list {
        display: none;
    }
    .header__nav-mobile {
        display: block;
        text-align: right;
    }
    .header__nav-mobile .bi-list {
        font-size: 28px;
    }
    .header__user-nav {
        display: none;
    }
}
/*end header*/
/*intro*/
.intro {
    background-image: url('../assets/img/intro-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 50% left;
    background-color: #05355b;
    padding: 120px 0 180px 0;
    position: relative;
}
.intro__wrapper {
    /*max-width: 1430px;*/
    /*margin: 0 auto;*/
    padding: 50px 15px;
    display: flex;
    align-items: center;
    color: #fff;
}
.intro__t-slider .owl-nav button[class^='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    width: 50px;
}
.intro__t-slider .owl-nav .owl-prev {
    left: 0;
}
.intro__t-slider .owl-nav .owl-next {
    right: 0;
}
.intro__t-item {
    display: flex;
    align-items: center;
    max-width: 1430px;
    margin: 0 auto;
}
.intro__info h1 {
    font-size: 60px;
    margin: 15px 0 14px 0;
    font-weight: 600;
}
.intro__info p {
    font-weight: 300;
    font-size: 1.3rem;
}
.intro__image {
    padding-left: 30px;
    flex: 0 0 45%;
}
.intro__image img {
    width: auto !important;
}
.intro__actions {
    padding-top: 40px;
    position: relative;
    z-index: 1;
}
.intro__actions .btn-primary {
  animation: pulse .7s linear infinite alternate;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 2px rgba(14,181,130,.1);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(14,181,130,.3);
  }
}
.intro__point {
    max-width: 1150px;
    width: auto;
    margin: 0 auto;
    position: absolute;
    bottom: -125px;
    left: 15px;
    right: 15px;
}
.intro__point-list {
    display: flex;
}
.intro__point-item {
    height: 250px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid #C6F9E9;
    background: #fff;
    border-radius: 10px;
    padding: 25px 15px;
    /*margin-bottom: -50%;*/
    box-shadow: none;
}
.intro__point-item:hover {
    box-shadow: 0 0 50px 0 rgba(0,0,0,.09);
    border-color: #fff;
    transition: all .3s;
}
.intro__point-icon {
    flex: 0 0 65%;
    display: flex;
    align-items: center;
}
.intro__point-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2a374c;
    text-align: center;
    flex: 0 0 35%;
    margin: 0;
    transition: color .4s;
}
.intro__point-item:hover .intro__point-text {
    color: #0eb582;
}
.intro__dies {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.2);
  padding: 12px 32px;
  color: #fff;
  border-radius: 5px;
  margin-top: 25px;
  gap: 40px;
  z-index: 1;
}
.intro__dies .intro__die {
  position: relative;
}
.intro__dies .intro__die:not(:last-child):after {
  content: '+';
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  color: #0eb582;
}
@media screen and (max-width: 1500px) {
    .intro__info {
        padding-left: 50px;
    }
    .intro__info h1 {
        font-size: 48px;
    }
    .intro__info p {
        font-size: 18px;
    }
    .intro__image {
        padding-right: 50px;
    }
}
@media screen and (max-width: 1250px) {
    .intro__info {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        padding-right: 50px;
    }
    .intro__image {
        position: absolute;
        height: 100%;
        width: 100%;
        padding: 0;
    }
    .intro__image img {
        height: 100%;
        margin: 0 auto;
        opacity: 0.1;
    }
}
@media screen and (max-width: 768px) {
    .intro__info h1 {
        font-size: 36px;
    }
    .intro__info p {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
  .intro__wrapper {
      padding: 0 15px;
  }
  .intro__t-item {
      flex-direction: column;
  }
  .intro__t-slider .owl-nav {
      display: none;
  }
  .intro__info {
      padding: 0;
  }
  .intro__image {
      position: static;
      order: -1;
      margin-bottom: 15px;
  }
  .intro__image img {
      height: auto;
      opacity: 1;
      max-height: 300px;
      width: auto !important;
  }
  .intro__info h1 {
      font-size: 28px;
  }
  .intro__info p {
      font-size: 14px;
  }
  .intro__actions a {
      margin-right: 0 !important;
  }
  .intro__dies {
    padding: 12px 24px;
    gap: 20px;
  }
  .intro__dies .intro__die:not(:last-child):after {
    right: -15px;
  }
}
/*end intro*/
/*about*/
.about {
    padding-top: 200px;
    padding-bottom: 75px;
}
.about__quote {
    border-left: 3px solid #0eb582;
    padding: 10px;
    margin-bottom: 1rem;
    font-weight: 300;
}
.about__text p {
    font-weight: 300;
}
.about__slide span {
    font-weight: 500;
    font-size: 1.2rem;
}
.about__slide .bar {
    margin: 10px 0;
}
.about__slide .bar-inner {
    height: 5px;
    width: 90px;
    background: #0eb582;
    position: relative;
    border-radius: 30px;
}
@keyframes move_title_bg1 {
    from {
        left:0;
    }
    to {
        left:100%;
    }
}

@keyframes move_title_bg2 {
    from {
        right:0;
    }
    to {
        right:100%;
    }
}
.about__slide .bar-inner:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid #0eb582;
    border-radius: 50%;
    background: #1c1b1b;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: move_title_bg1;
}
.about__slide .bar-inner:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid #0eb582;
    border-radius: 50%;
    background: #1c1b1b;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: move_title_bg2;
}
.about__list {
    display: flex;
}
.about__item {
    flex-grow: 1;
}
/*end about*/
/*purpose*/
.purpose {
    background-color: #0EB58208;
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 90px 0 250px 0;
}
.purpose__shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}
.purpose__shape--top {
    top: -1px;
    transform: rotateY(180deg);
}
.purpose__shape--bottom {
    bottom: -1px;
}
.purpose__shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.purpose__shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}
.purpose__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 20px 40px 0 rgba(50, 65, 141, 0.12);
}
.purpose__item-top .absolute {
    position: absolute;
    top: 10px;
}
.purpose__badge {
    left: 10px;
    background: #0eb582;
    padding: 6px 10px;
    font-size: 12px;
    color: #fff;
    border-radius: 5px;
}
.purpose__bookmark {
    right: 10px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 5px;
}
.purpose__bookmark i {
    color: #0eb582;
}
.purpose__image {
    height: 240px;
    display: flex;
}
.purpose__image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}
.purpose__icon {
    position: relative;
    max-width: 30%;
    margin: -10% auto 0 auto;
}
.purpose__title {
    font-size: 1.5rem;
}
.purpose__item-bottom p {
    font-weight: 300;
}
/*end purpose*/
/*features*/
.features {
    margin-top: -190px;
    margin-bottom: 0;
    position: relative;
}
.features__item {
    /*counter-increment: itemNumber;*/
    min-height: 50vh;
    padding-left: 6rem;
}
.features__count {
    display: block;
    position: absolute;
    left: -3rem;
    top: -1rem;
    width: 7rem;
    height: 7rem;
    line-height: 8.75rem;
    font-size: 7rem;
    color: #ebebeb;
    text-align: right;
    overflow: hidden;
    font-weight: bold;
    padding-left: 1.75rem;
    border-right: 1px solid #ebebeb;
    transform: rotate(20deg);
}
.features__slider .owl-item:not(.cloned) {
    counter-increment: itemNumber;
}
.features__count:before {
    content: counter(itemNumber);
    transform: rotate(-20deg) translateX(0.5rem);
    display: block;
}
.features__title {
    height: 7rem;
    display: flex;
    align-items: center;
    margin: 0;
}

.features2 .nav-pills {
    width: 25%;
    min-width: 25%;
    justify-content: center;
    align-items: flex-start;
}
.features2 div[class*='nav-pills'] .features__nav-link {
    background: transparent;
    color: #000;
    border-radius: 6px;
    /*margin-bottom: 10px;*/
    padding: 15px;
    text-align: left;
    box-shadow: none;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    line-height: 1.2;
    transition: color.3s;
}
.features2 div[class*='nav-pills'] .features__nav-link:hover {
    background: transparent;
    /*box-shadow: 0 0 8px rgb(0 0 0 / 10%);*/
    color: #0eb582;
}
.features2 div[class*='nav-pills'] .features__nav-link.active {
    border-left: 4px solid #0eb582;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    color: #0eb582;
}
.features__tab-content {
    /*background: #0EB58208;*/
    border-radius: 30px;
    padding: 30px 0 30px 30px;
    min-height: 450px;
}
.features__tab-content .tab-pane,
.features__tab-content .tab-pane .row {
    height: 100%;
}
.features__list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.features__image {
    height: 100%;
    display: flex;
    align-items: center;
}

.features__list-item {
    display: flex;
    font-weight: 300;
    padding: 10px 1rem 10px 0;
}
.features__list-item i {
    color: #0eb582;
}
.features__list-item span {
    display: inline-block;
    margin-left: 1rem;
}
.features__slider .owl-stage-outer {
    z-index: 2;
}
.features__slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    height: 120px;
}
.features__slider.owl-carousel .owl-nav button {
    background: #0eb582;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    left: -80px;
    color: #fff;
    font-size: 24px;
    transform: scale(1);
    transition: all .3s;
}
.features__slider.owl-carousel .owl-nav button:not(.disabled):hover {
    background: #15263b;
}
.features__slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: -80px;
}
.features__slider .owl-dots {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.features__slider button.owl-dot {
    margin: .5rem;
    padding: .5rem;
}
.features__slider button.owl-dot span {
    display: block;
    width: .5rem;
    height: .5rem;
    background-color: #c9c9c9;
    border-radius: .5rem;
    opacity: 0.25;
}
.features__slider button.owl-dot.active span {
    background-color: #0eb582;
    opacity: 1;
    transform: scale(2)
}
/*.features__slider .owl-stage-outer {*/
/*    margin-left: -90px;*/
/*}*/
@media screen and (max-width: 1500px) {
    .features__slider .owl-nav {
        top: 100%;
    }
    .features__slider.owl-carousel .owl-nav button {
        left: 0;
    }
    .features__slider.owl-carousel .owl-nav button.owl-next {
        right: 0;
    }
}
@media screen and (max-width: 1400px) {
    .features2 .nav-pills .features__nav-link {
        font-size: 1rem;
    }
    .features__tab-content {
        padding: 0 0 0 30px;
    }
}
@media screen and (max-width: 991px) {
    .features2 .d-flex {
        flex-wrap: wrap;
    }
    .features2 .nav-pills {
        flex-direction: row !important;
        width: 100%;
    }
    .features__tab-content {
        padding: 0;
    }
}
@media screen and (max-width: 768px) {
    .features__item {
        padding: 0;
    }
    .features__count {
        display: none;
    }
}
/*end features*/

/*onboard*/
.onboard {
    background-image: url('../assets/img/intro-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 50% left;
    background-color: #05355b;
    padding: 20px 0 60px 0;
    color: #fff;
}
.onboard__body {
    display: flex;
    justify-content: center;
}
.onboard__item {
    display: flex;
    align-items: center;
    font-weight: 300;
}
.onboard__item:not(:last-child) {
    padding-bottom: 5px;
}
.onboard__item i {
    color: #0eb582;
    font-size: 20px;
    margin-right: 10px;
}
/*end onboard*/

/*benefits*/
.benefits {
    padding-bottom: 40px;
}
/*.benefits__item {*/
/*    padding: 60px 0 35px 0;*/
/*    border-style: solid;*/
/*    border-width: 2px 2px 2px 2px;*/
/*    border-color: #C6F9E9;*/
/*    border-radius: 5px 5px 5px 5px;*/
/*    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .03);*/
/*    text-align: center;*/
/*}*/
/*.benefits__item:hover {*/
/*    border-style: solid;*/
/*    border-color: #FFFFFF;*/
/*    box-shadow: 0 0 50px 0 rgb(0, 0, 0, .06);*/
/*}*/
.benefits__item {
    height: 100%;
}
.benefits__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.benefits__title {
    margin-bottom: 20px;
}
.benefits__list-item {
    display: flex;
    align-items: center;
}
.benefits__list-item:not(:last-child) {
    padding-bottom: 10px;
}
.benefits__list-item i {
    font-size: 18px;
    color: #0eb582;
    margin-right: 10px;
}
.benefits__image img {
    width: 500px;
    max-width: 100%;
}
.benefits__text {
    font-weight: 300;
    line-height: 1.4;
}
.order--1 {
    order: 1;
}
.order--2 {
    order: 2;
}
.order--3 {
    order: 3;
}
.order--4 {
    order: 4;
}
.order--5 {
    order: 5;
}
.order--6 {
    order: 6;
}
@media screen and (max-width: 991px) {
    .benefits__image img {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .benefits__image {
        text-align: center !important;
    }
    .benefits__image img {
        width: 320px;
        max-width: 100%;
    }
    .order--3 {
        order: 4;
    }
    .order--4 {
        order: 3;
    }
}
/*end benefits*/

/*app*/
.app {
    background-image: url('../assets/img/intro-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom 50% left;
    background-color: #05355b;
    padding: 60px 0 60px 0;
    color: #fff;
}
.app__info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.app__free {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
@media screen and (max-width: 768px) {
    .app__info > h2 {
        text-align: center;
    }
    .app__free {
        margin: 0 0 30px 0;
    }
}
/*end app*/

/*review*/
.review {
    padding-top: 40px;
    padding-bottom: 80px;
    background: #0EB58208;
}
.review__rating {
    padding-bottom: 25px;
}
.review__rating i {
    color: #0eb582;
    font-size: 1.2rem;
}
.review__text {
    font-weight: 300;
    font-size: 1.2rem;
    min-height: 85px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.review__author {
    display: flex;
}
.review__author-image {
    width: 50px;
    margin-right: 1rem;
}
.review__author-name {
    margin: 0;
}
.review__author-role {
    color: #0eb582;
    font-weight: 500;
}
.review__slider .owl-nav {
    padding: 25px 0;
    display: flex;
    align-items: center;
}
.review__slider.owl-carousel .owl-nav button {
    display: block;
    padding: 0;
    cursor: pointer;
    color: #fff;
    outline: none;
    background: #0eb582;
    border-radius: 50px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    width: 55px;
    height: 55px;
    transition: .5s;
    border: 0 solid #17161a;
}
.review__slider.owl-carousel .owl-nav button:hover {
    background: #15263b;
}
.review__slider.owl-carousel .owl-nav button.owl-prev {
    margin-right: 1rem;
}
/*end review*/

/*payments*/
.payments {
  padding: 80px 0;
}
.payments .avatar.avatar-ex-sm {
  max-height: 35px;
}
/*end payments*/

/*link*/
.link {
    padding-top: 40px;
    padding-bottom: 80px;
    background: #0EB58208;
}
.link__item {
    padding: 50px 20px 35px 30px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #C6F9E9;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
}
.link__item:hover {
    border-style: solid;
    border-color: #FFFFFF;
    box-shadow: 0 0 50px 0 rgb(0, 0, 0, .06);
}
.link__image {
    margin-right: 2.5rem;
}
.link__text {
    font-size: 1.2rem;
}
/*end link*/

/*mail*/
.mail {
    background: #0EB58208;
}
.mail__wrapper {
    background: #0eb582;
    color: #fff;
    padding: 73px 30px 63px;
    border-radius: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -100px;
    position: relative;
}
.mail__form {
    width: 100%;
    display: flex;
    position: relative;
}
.mail__text h3 {
    font-size: 2.5rem;
}
.mail__input {
    width: 100%;
    background: #fff;
    font-size: 16px;
    line-height: 28px;
    color: #b0afaf;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 15px 30px;
}
.mail__button {
    width: 30%;
    border-radius: 0 5px 5px 0;
    background: #15263b;
    border: none;
    outline: none;
    position: absolute;
    right: -3px;
    top: 0;
    bottom: 0;
    font-size: 18px;
    color: #fff;
    text-align: center;
    z-index: 2;
    cursor: pointer;
    padding: 10px 15px;
    transition: .5s;
}
/*end mail*/

/*footer*/
.footer {
    min-height: 300px;
    /*background-color: #18406b;*/
    background-color: #05355b;
    color: #fff;
}
.footer__top {
    padding: 65px 0 73px;
    /*padding-top: 200px;*/
}
.footer__widget {
    display: flex;
    height: 100%;
    align-items: center;
}
.footer__description-area {
    font-weight: 300;
    display: flex;
    align-items: center;
}
.widget_nav_menu {
    font-weight: 300;
}
.footer__social-icons a {
    width: 38px;
    height: 38px;
    line-height: 36px;
    display: inline-block;
    border: 1px solid #ffffffb8;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
    transition: all .3s;
}
.footer__social-icons a:hover {
    color: #fff;
    background-color: #0eb582;
    border-color: #0eb582;
}
.widget-title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}
.footer .menu-item {
    margin-bottom: 12px;
}
.widget_sub_table {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid #ffffff8c;
    margin-bottom: 8px;
    font-weight: 300;
}
.footer__bottom {
    padding: 26px 0 24px;
    position: relative;
}
.footer__copyright {
    border-top: 1px solid #fff;
    padding: 26px 0 24px;
    position: relative;
}
.footer__copyright-menu {
    display: flex;
    justify-content: flex-end;
}
@media screen and (max-width: 991px) {
    .footer__description-area {
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .footer__description-area {
        width: 100%;
    }
    .widget_nav_menu {
        margin-top: 50px;
    }
    .widget-title {
        text-align: center;
    }
    .menu-item {
        text-align: center;
    }
}
/*end footer*/

/*page*/
.page-title {
    background-color: #05355b;
    padding: 120px 0 60px 0;
    color: #fff;
}
.breadcrumbs__list {
    display: flex;
    justify-content: center;
    font-weight: 400;
}
.breadcrumbs__item {
    padding: 0 15px;
    position: relative;
}
.breadcrumbs__item a:hover {
    color: #0eb582;
}
.breadcrumbs__item span {
    opacity: 0.7;
}
.breadcrumbs__item i {
    position: absolute;
    top: 50%;
    transform: translate(50%, -50%);
    right: 0;
    font-size: 6px;
    color: #0eb582;
}
.bg-brand {
    background-color: #05355b;
    color: #fff;
}
/*end page*/