body {
    font-weight: 400;
    background: #fffbf4;
    font-family: var(--secondary-font);
    font-weight: 400;
}
button,
input,
select,
textarea {
    font-family: var(--secondary-font);
    font-weight: 400;
}
:root {
    --primary-font: "Cormorant", serif;
    --secondary-font: "Mulish", sans-serif;
}
.txt-lil {
    font-size: 0.9rem;
}
.txt-mid {
    font-size: 1rem;
}
.txt-mid2 {
    font-size: 1.25rem;
}
.txt-big {
    font-size: 1.5rem;
}
.txt-mid3 {
    font-size: 1.25rem;
    font-weight: 600;
}
.section-title {
    font-size: 2.5rem;
    font-family: var(--primary-font);
    font-weight: 700;
}
.section-title.big {
    font-size: 3rem;
}

section {
    margin-bottom: 3.75rem;
}

.btn {
    position: relative;
    display: flex;
    height: 3.125rem;
    padding: 0.875rem 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 6.25rem;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
}
.btn.gradient {
    background: linear-gradient(94deg, #eb6c39 -20.18%, #f0a83c 120.03%);
    color: #fff;
    transition: all 0.35s ease-in;
}
.btn.blue {
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    color: #fff;
    transition: all 0.35s ease-in;
}
.btn.gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #eb6c39;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.btn.blue::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.btn.rw-modal__submit::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #eb6c39;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.btn span {
    position: relative;
    z-index: 1;
}
.btn.gradient:hover::before {
    opacity: 1;
}
.btn.blue:hover::before {
    opacity: 1;
}
.btn.rw-modal__submit:hover::before {
    opacity: 1;
}
.btn.gradient:hover span {
    color: #000000;
}
.btn.blue:hover span {
    color: #04022a;
}
.btn.rw-modal__submit:hover span {
    color: #ffffff;
}
.btn.box {
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
}
.btn.yellow {
    background-color: #ffa434;
}
.btn.wh {
    color: white;
}
.btn.gray {
    background-color: #bebebe;
}
.btn.yellow:hover {
    background-color: #eb6c39;
    color: #fff;
}
.btn.gray:hover {
    background-color: #ffffff;
}
.head-btn {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.btn.lil-width {
    width: 16.25rem;
}
.btn.mid-width {
    width: 21.25rem;
}
.btn.big-width {
    width: 26.25rem;
}

header {
    border-radius: 0 0 1.875rem 1.875rem;
    background: #fffbf4;
    box-shadow: 0 4px 143.9px 0 rgba(0, 0, 0, 0.25);
    padding: 0.875rem 0rem;
}

.head-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-logo {
    width: 11.71988rem;
    height: 3.25rem;
    object-fit: cover;
}

.head-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.head-nav a {
    color: #0a2135;
    font-size: 0.9rem;
    position: relative;
    text-decoration: none;
    padding-bottom: 0.1rem;
    transition: all 0.35s ease-in;
}
.head-nav a:hover, .head-nav a.active {
    color: #eb6c39;
}
.head-nav a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 0.125rem;
    background: #eb6c39;
    transition: width 0.35s ease-in;
    border-radius: 1rem;
}

.head-nav a:hover::after, .head-nav a.active:after {
    width: 100%;
}

.header-lang {
    position: relative;
    display: inline-block;
}

.header-lang__trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.header-lang__arrow {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 0.125rem solid #000;
    border-bottom: 0.125rem solid #000;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

/* Dropdown */
.header-lang__dropdown {
    position: absolute;
    top: 2rem;
    right: 0;
    left: 0;
    width: max-content;
    min-width: unset;
    background: #ffffff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.header-lang.is-open .header-lang__dropdown {
    max-height: 10rem;
}

.header-lang.is-open .header-lang__arrow {
    transform: rotate(-135deg);
}

.header-lang__option {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    transition: 0.2s;
}

.header-lang__option:hover {
    background: #f3f3f3;
}
.head-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.hero-text {
    font-size: 1.25rem;
    font-weight: 500;
}
.hero-section {
    /*background-image: url("/img/hero-back.jpg");*/
    height: 36.75rem;
    color: #fff;
    padding: 2rem 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.hero-btns {
    display: flex;
    gap: 0.625rem;
}
.hero-btns .btn {
    border: 1px solid #fff;
}

.btn.btn-insta {
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    height: unset;
    gap: 1rem;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2.299999952316284px);
    display: inline-flex;
    font-weight: 400;
}
.hero-box {
    display: flex;
    width: 52.8125rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.75rem;
}
.hero-bottom {
    display: flex;
    justify-content: flex-end;
}
.insta-hero {
    border-radius: 1.875rem;
    background: #fff;
    display: flex;
    width: 2.875rem;
    height: 2.875rem;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
    color: #eb6c39;
    font-size: 1.8rem;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.seminar-card-link {
    color: white;
}

.seminar-card {
    position: relative;
    height: 24rem;
    border-radius: 1.25rem;
    overflow: hidden;
    /*background:*/
    /*    linear-gradient(*/
    /*        180deg,*/
    /*        rgba(0, 0, 0, 0.5) 21.16%,*/
    /*        rgba(0, 0, 0, 0) 50.5%*/
    /*    ),*/
    /*    url("/img/girl-books.jpg") lightgray 0.38px -38.341px / 100%*/
    /*        158.126% no-repeat;*/
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease-in;
}
.ab_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s;
}
.seminar-card:hover .ab_img{
    transform: scale(1.05);
}
.seminar-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 21.16%, rgba(0, 0, 0, 0.00) 50.5%);
    transition: all 0.35s ease-in;
}

.seminar-card:hover {
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}

/*.seminar-card:hover::before {*/
/*    opacity: 0;*/
/*}*/

/*.seminar-card:hover::after {*/
/*    opacity: 1;*/
/*}*/

/*.seminar-card:hover .card-date {*/
/*    display: none;*/
/*}*/
/*.seminar-card:hover .seminar-card-text div {*/
/*    text-transform: uppercase;*/
/*    font-family: var(--primary-font);*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*}*/

.seminar-card-content {
    position: relative;
    z-index: 2;
    padding: 1.875rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seminar-card:hover .card-btn {
    background: #fff;
    color: #000000;
}
.seminar-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blue-back {
    padding: 2.5rem 0;
    border-radius: 2.5rem;
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    color: #fff;
}

.about-company-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-img {
    height: 27.4375rem;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
}

.about-row {
    margin-bottom: 2.5rem;
}

.company-info-card {
    display: flex;
    padding: 1rem;
    padding-bottom: 1.25rem;
    flex-direction: column;
    align-items: center;
    gap: 1.15rem;
    align-self: stretch;
    border-radius: 1.25rem;
    background: #fff;
    color: #212121;
    height: 100%;
    text-align: center;
    justify-content: center;
}
.company-info-card p {
    margin-bottom: 0;
}
.company-info-title,
.company-info-title span {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
    font-family: var(--primary-font);
    background: linear-gradient(90deg, #eb6c39 0%, #f0a53c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-card {
    display: flex;
    height: 9.5rem;
    padding: 1.15rem;
    justify-content: center;
    align-items: center;
    gap: 1.875rem;
    border-radius: 0.9375rem;
    background: #fff;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}
.trust-card img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
}
.trust-card-text {
    color: #222;
}
.trust-card-text div {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}
.trust-card-text p {
    margin-bottom: 0;
}

.catalog-item {
    overflow: hidden;
    transition: 0.3s ease;
}

.catalog-item__trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
    padding-right: 0.5rem;
}
.catalog-item__icon {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.catalog-item__icon img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
}

.catalog-item__title {
    font-size: 1.25rem;
}

.catalog-item__chevron {
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.catalog-item__expand {
    display: none;
    /*max-height: 0;*/
    /*overflow: hidden;*/
    /*transition: max-height 0.5s ease;*/
}

/*.catalog-item.is-open .catalog-item__expand {*/
/*    max-height: 33rem;*/
/*}*/

.js-catalog-trigger.is-open .catalog-item__chevron {
    transform: rotate(45deg);
}

.catalog-item .content{
    opacity: 0.8;
}
.catalog-item .content p {
    margin: 0.75rem 0;

}
.catalog-item .content ul{
    margin-left: 2rem;
}
.catalog-item .content ul li{
    margin-bottom: 5px;
}



.expert-btn {
    border-radius: 1.25rem;
    background-color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in;
}
.expert-btn:hover {
    background-color: #0c2a42;
    color: #fff;
}
.next-prev-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.experts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expert-card img {
    height: 19.375rem;
    border-radius: 1.25rem;
}
.expert-card-name {
    margin: 0.625rem 0;
}
.expert-card-name span {
    font-size: 2rem;
}
.expert-card p {
    margin-bottom: 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

.lil-blue-back {
    border-radius: 1.25rem;
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem 2.5rem;
    color: #fff;
}

.consul-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.consul-inputs2 {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 0.625rem;
}

.consul-inputs input {
    border-radius: 0.625rem;
    border: 1px solid #b0b0b0;
    background: #fff;
    display: flex;
    padding: 0.8125rem 1.25rem;
    align-items: center;
}

.consultation-img {
    height: 100%;
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.25);
}

.consul-policy {
    font-size: 0.875rem;
}
.consul-policy a {
    color: #fff;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-decoration: underline;
}
.consul-policy a:hover{
    text-decoration: none;
}
.comment-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.comment-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 6.25rem;
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
}
.comment-date {
    opacity: 0.6;
}
.comment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.comment-card {
    border-radius: 1.25rem;
    background: #fff;
    padding: 1.875rem;
    width: 100%;
}

.comments-list .slick-slide {
    padding: 0 10px;
}

.comments-list .slick-list {
    margin: 0 -10px;
}

.news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.news-card img {
    height: 19.375rem;
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
    margin-bottom: 1.25rem;
}
.news-card-title {
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--primary-font);
    font-size: 1.5rem;
}
.news-card-date {
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.con-what-icon {
    font-size: 1.5rem;
    margin-right: 0.625rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-card p {
    margin-bottom: 0;
    font-weight: 500;
    color: #2b2b2b;
}
.con-req {
    color: #212121;
    font-size: 1.25rem;
    font-weight: 600;
}
.con-link-insta {
    font-size: 2.25rem;
    font-weight: 900;
    fill: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
}

.contacts-map {
    border-radius: 1.25rem;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.contacts-map iframe{
    width: 100%!important;
    height: 100%!important;
}
footer {
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    padding: 2.5rem 0;
    color: #fff;
}
.footer-logo {
    width: 12.4rem;
    height: 3.47594rem;
    margin-bottom: 2.5rem;
}

.footer-btn {
    color: #0c2a42;
    font-weight: 600;
    background-color: #fffbf4;
    padding: 1rem 2rem;
    align-self: stretch;
    width: 13.75rem;
}
.contact-card a:hover{
    color: #ffa434;
}
.footer-btn:hover {
    background-color: #ffa434;
    color: #fff;
}
.foot-link-insta {
    color: #fff;
    font-size: 2.25rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: space-between;
}
.footer-nav {
    gap: 1.25rem;
}
.footer-nav a {
    color: #fff;
}
.footer-nav a:hover, .footer-nav a.active{
    color: #eb6c39;
}
.result{
    text-align: center;
    font-size: 0.875rem;
}
.footer-right {
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: linear-gradient(90deg, #eb6c39 0%, #f0a53c 100%);
    width: 40rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.breadcrumps {
    padding-top: 9rem;
    margin-bottom: 1.65rem;
}
.breadcrumps ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}
.breadcrumps ul li,
.breadcrumps ul a {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.621);
}
.breadcrumps ul a:hover {
    color: black;
}

.about-left-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-left-text p {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #212121;
}

.about-right-img {
    height: 100%;
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
}

.about-blue-back1 {
    height: 20.1875rem;
    border-radius: 1.25rem;
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
    padding: 0 2.25rem;
    color: #fff;
}

.about-mission-img {
    height: 21.375rem;
    border-radius: 1.25rem 1.25rem 0 0;
    object-fit: cover;
    position: absolute;
    bottom: 0;
}
.about-script {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: cover;
}

.about-mission-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}
.about-mission-text p {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.about-certefication-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about-certefication-text p {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.about-doc-text {
    font-style: italic;
}
.about-blue-back2 {
    padding: 2rem 3rem;
    border-radius: 1.25rem;
    color: #fff;
    background: linear-gradient(104deg, #04022a -7.37%, #125285 109.24%);
}

.about-certefication-list {
    padding-left: 1.1rem;
}

.about-cert-img {
    width: 19.375rem;
    height: 27.3125rem;
    object-fit: cover;
}
.about-cer-box {
    display: flex;
    justify-content: end;
}

.seminar-filter {
}
/* FIELD */
.seminar-filter__field {
    /* margin-bottom: 1.5rem; */
}

.seminar-filter__input {
    width: 100%;
    height: 3.25rem;
    padding: 0 1.25rem;
    border-radius: 1rem;
    border: none;
    background: #ffffff;
    font-size: 1rem;
    outline: none;
}

/* LABEL */
.seminar-filter__label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

/* DIVIDER */
.seminar-filter__divider {
    height: 0.03125rem;
    background: rgba(0, 0, 0, 0.2);
    margin: 0.5rem 0;
}

/* DROPDOWN */
.seminar-filter__dropdown {
    position: relative;
    margin-bottom: 0.5rem;
}

.seminar-filter__dropdown-trigger {
    width: 100%;
    height: 3.25rem;
    padding: 0 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1rem;
    text-align: start;
}

/* Arrow */
.seminar-filter__arrow {
    width: 0.5rem;
    height: 0.5rem;
    border-right: 0.125rem solid #333;
    border-bottom: 0.125rem solid #333;
    transform: rotate(45deg);
    transition: 0.3s ease;
}

/* Dropdown Menu */
.seminar-filter__dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
    border-radius: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
}

/* Open state */
.seminar-filter__dropdown.is-open .seminar-filter__dropdown-menu {
    max-height: 31rem;
}

.seminar-filter__dropdown.is-open .seminar-filter__arrow {
    transform: rotate(-135deg);
}

/* Options */
.seminar-filter__option {
    padding: 1rem;
    border-bottom: 0.0625rem solid #eee;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.2s;
}

.seminar-filter__option:last-child {
    border-bottom: none;
}

.seminar-filter__option:hover {
    background: #f3f3f3;
}

.seminar-filter__field--date {
    position: relative;
}

.seminar-filter__calendar-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    font-size: 1.2rem;
    pointer-events: none;
}

.filter-search {
    position: relative;
    width: 100%;
}

/* INPUT */
.filter-search__input {
    width: 100%;
    height: 3.5rem;
    padding: 0 1.25rem 0 2.9rem;
    border-radius: 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
}

.filter-search__icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #777;
    pointer-events: none;
}

.btn.white {
    background-color: #fff;
    color: #000000;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease-in;
}
.btn.white:hover {
    background-color: black;
    color: #fff;
}
.seminar-filter__buttons {
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
    gap: 0.625rem;
}

.seminar-card-search .seminar-card-content {
    padding: 1.25rem;
}

/*.seminar-card:hover .seminar-search-text div {*/
/*    text-transform: uppercase;*/
/*    font-family: var(--primary-font);*/
/*    font-size: 1.6rem;*/
/*    font-weight: 700;*/
/*}*/

.pagination {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.pagination__item {
    position: relative;
    font-size: 1.3rem;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 0 0.3rem;
    padding-bottom: 0.1rem;
    transition: 0.3s ease;
}

.pagination__item:hover {
    /* color: #EB6C39; */
}

.pagination__item.is-active {
    background: linear-gradient(90deg, #eb6c39 0%, #f0a53c 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pagination__item.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    background: #eb6c39;
    border-radius: 1rem;
}
.pagination__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 0.125rem;
    background: #eb6c39;
    transition: 0.4s ease-in;
}

.pagination__item:hover::after {
    width: 100%;
}

.pagination__item.is-active::after {
    width: 100%;
}

/* BURGER */
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: #f4a23b;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 1rem;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    background: #f5f3ef;
    padding: 2rem;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    transition: 0.4s ease;
}

.mobile-menu.is-open {
    bottom: 0;
}

.mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.mobile-menu__phone {
    width: 100%;
    text-align: center;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(0.25rem);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 90;
}
.mobile-overlay.is-active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu {
    z-index: 100;
}
.body-lock {
    overflow: hidden;
}

.about-value-card {
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
    height: 15.8125rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
.about-value-card img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
}

.container-sec {
    width: 54rem;
    margin: 0 auto;
}

.news-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 0 2.5rem;
}
.news-card-header p {
    color: #535862;
}

.content-txt div {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.content-txt {
    color: #1e1e1e;
}
.content-txt ul {
    padding-left: 1.25rem;
    margin-bottom: 2.15rem;
}
.content-txt img {
    width: 100%;
    border-radius: 1.25rem;
    margin-bottom: 2.15rem;
    height: 26.4rem;
}

.face-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.face-contacts span, .face-contacts a  {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-card-info div,
.contact-card-info p {
    margin-bottom: 0;
}
.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

/* WRAPPER */
.rw-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    
    align-items: center;
    justify-content: center;    
}

.rw-modal.is-active {
    display: flex;
}

/* OVERLAY */
.rw-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(0.3rem);
}

/* CONTENT */
.rw-modal__content {
    position: relative;
    width: 53.75rem;
    padding: 1.875rem 2.5rem;
    border-radius: 1.25rem;
    background: #fff;
    animation: modalFade 0.3s ease;
}

/* CLOSE */
.rw-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* TITLE */
.rw-modal__title {
    font-family: serif;
    font-size: 2.2rem;
    letter-spacing: 0.05rem;
    margin-bottom: 1.5rem;
}

/* STARS */
.rw-modal__stars {
    font-size: 1.8rem;
    color: #cfcfcf;
    margin-bottom: 1.5rem;
}

.rw-modal__stars span {
    cursor: pointer;
    transition: 0.2s;
}

.rw-modal__stars span:hover {
    color: #f0a83c;
}

/* FORM */
.rw-modal__form input,
.rw-modal__form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.2rem;
    border-radius: 0.8rem;
    border: 1px solid #ddd;
    background: #ffffff;
    font-size: 1rem;
    outline: none;
}

.rw-modal__form textarea {
    min-height: 8rem;
    resize: none;
}

/* ANIMATION */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
