/*****************************************************/
.hero {
    position: relative;
    min-height: 600px;
    background: url(../img/heroBg.png) no-repeat 50% / cover;
}
.hero:before {
    content: "";
    inset: 0;
    position: absolute;
    background-color: rgba(0, 7, 112, 0.7);
    z-index: 1;
}
@media (max-width: 768px) {
    .hero {
        background: none;
    }
    .hero:before {
        background-color: #252fcb;
    }
}
@media (max-width: 992px) {
    .hero {
        min-height: 100%;
    }
}
.hero__inner {
    padding-top: 131px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 0;
}
@media (max-width: 992px) {
    .hero__inner {
        padding: 66px 0;
    }
}
@media (max-width: 768px) {
    .hero__inner {
        padding: 48px 0;
    }
}
@media (max-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, auto);
        grid-column-gap: 0;
        grid-row-gap: 24px;
    }
}
.hero__title {
    grid-column: 4 span;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
}
@media (max-width: 1200px) {
    .hero__title {
        font-size: 40px;
    }
}
@media (max-width: 992px) {
    .hero__title {
        font-size: 35px;
    }
}
@media (max-width: 768px) {
    .hero__title {
        font-size: 40px;
    }
}
@media (max-width: 375px) {
    .hero__title {
        font-size: 28px;
    }
}
.hero__text {
    grid-column: 5 span;
}
.hero__text p {
    margin-bottom: 20px;
    color: #fff;
    line-height: 26px;
}
/*****************************************************/
.products {
    position: relative;
    z-index: 5;
    margin-top: -120px;
}
@media (max-width: 992px) {
    .products {
        margin-top: 0;
    }
}
.products__text {
    color: #4b4d7e;
    font-weight: 400;
    line-height: 26px;
}
.products__text:not(:last-child) {
    margin-bottom: 10px;
}
.products-tab {
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (max-width: 768px) {
    .products-tab {
        padding-bottom: 60px;
    }
}
.products-tab__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}
@media (max-width: 992px) {
    .products-tab__nav {
        grid-column-gap: 8px;
    }
}
@media (max-width: 991px) {
    .products-tab__nav {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .products-tab__nav {
        grid-template-columns: repeat(1, 1fr);
    }
}
.products-tab__button {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 24px 28px 28px;
    text-align: left;
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(90deg, #e5e7f2, #d1d5ec);
}
.products-tab__button.active g path:first-child {
    fill: #00df82;
}
.products-tab__button:hover .products-tab__icon {
    background-color: #202bde;
}
@media (max-width: 992px) {
    .products-tab__button {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .products-tab__button {
        padding: 30px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}
.products-tab__button.active {
    background: #fff;
}

.products-tab__button.active .products-tab__text {
    color: #02133f;
}
.products-tab__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 4px;
    background: #8e90b6;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
    transition: all 0.2s;
}
.products-tab__button.active .products-tab__icon {
    background: #202bde;
}
.products-tab__text {
    display: flex;
    flex-direction: column;
    color: #3b455e;
    font-family: 'Nunito Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}
@media (max-width: 992px) {
    .products-tab__text {
        flex-direction: row;
        gap: 5px;
    }
}
/*.products-tab__body {
    min-height: 300px;
}*/
.products-tab__items-wrapper {
    opacity: 0;
    visibility: hidden;
    height: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 8px;
    grid-row-gap: 20px;
}
.products-tab__items-wrapper.active {
    opacity: 1;
    height: 100%;
    visibility: visible;
}
@media (max-width: 992px) {
    .products-tab__items-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 20px;
    }
}
@media (max-width: 768px) {
    .products-tab__items-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.products-item {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 16px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 10px 40px 0 rgba(207, 209, 220, 0.2);
    border-bottom: 3px solid #212BDC;
}
.products-item__top {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.products-item__left {
    display: flex;
    flex-direction: column;
}
.products-item__name {
    font-size: 18px;
    font-weight: 700;
    color: #02133F;
    line-height: 120%;
    text-decoration-line: underline;
    margin-bottom: 2px;
}
.products-item__company {
    color: #fb4d42;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}
.products-item__right {
    padding: 12px;
    border-radius: 4px;
    background: #ecf8ff;
    display: grid;
    place-items: center;
}
.products-item__price {
    color: #0a14b4;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.products-item__body {
    margin-bottom: 4px;
}
@media (max-width: 992px) {
    .products-item__body {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}
.products-item__option {
    border-radius: 4px;
    background: #ecf8ff;
    padding: 20px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #434455;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}
@media (max-width: 992px) {
    .products-item__option {
        flex-basis: 48%;
        min-width: 170px;
        flex-grow: 1;
    }
}
.products-item__option:not(:last-child) {
    margin-bottom: 4px;
}
.products-item__option span:first-child {
    color: #009af8;
}
.products-item__bottom {
    margin-top: auto;
}
.products-item__btn {
    cursor: pointer;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 20px 0 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    border-radius: 4px;
    background: linear-gradient(90deg, #1f2ade, #262fc6);
    transition: all 2s;
}
.products-item__btn:hover {
    opacity: 0.7;
}
/*****************************************************/
.faq {
    padding-top: 64px;
}

.faq__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq__toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    position: relative;
    border-radius: 4px;
    background: #9c9eb9;
    padding: 20px 28px;
    transition: all 0.2s;
}
.faq__toggle:hover {
    background: #61626d;
}
.faq__toggle.active {
    background: linear-gradient(90deg, #1f2ade, #262fc6);
}
.faq__toggle.active .faq__icon:before {
    display: none;
}
.faq__toggle.active .faq__icon:after {
    background-color: #fb4d42;
}
.faq__question {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.faq__icon {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .faq__icon{
        flex: 0 0 auto;
        width: 30px;
        height: 30px;
    }
}
.faq__icon:after,
.faq__icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 2px;
    height: 14px;
    background-color: #00df82;
}
.faq__icon:after {
    rotate: 90deg;
}
.faq__submenu {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s linear;
    border-radius: 0 0 4px 4px;
}
.faq__answer {
    color: #4b4d7e;
    font-weight: 400;
    line-height: 26px;
    margin: 0 28px;
}
.faq__answer:not(:last-child) {
    margin-bottom: 10px;
}
.faq__answer:first-child {
    margin-top: 30px;
}
.faq__answer:last-child {
    margin-bottom: 26px;
}
ul.faq__answer {
  list-style: disc;
  padding-left: 30px;
}
ul.faq__answer li {
    list-style: disc;
}
/*****************************************************/
.about {
    padding-top: 32px;
}

.about__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.about__title {
    margin-bottom: 24px;
}
.about__text {
    color: #4b4d7e;
    line-height: 26px;
}
.about__text:not(:last-child) {
    margin-bottom: 10px;
}
.footer_sourcing-disclaimer {
  font-size: 12px;
  color: #fff;
  margin-top: 12px;
  line-height: 1.5;
}
.footer_sourcing-disclaimer .footer__copy {
    display: inline-block;
    margin-top: 16px;
}