.navbar {
    --bs-navbar-color: #fff;
    --bs-navbar-toggler-border-color: #fff;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb%28255, 255, 255%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.custom-inputs .form-control {
    --bs-body-bg: #F0F5F7;
    --bs-border-radius: 8px;
    --bs-border-width: 0;
}

html, body {
    font-family: "Jost", sans-serif;
    height: 100%;
}

header {
    background: url("/img/bg-header.jpg") no-repeat;
    background-size: cover;
}

header.bg-big {
    background: url("/img/bg-header-big.jpg") no-repeat;
    background-size: cover;
}

main {
    flex: 1 0 auto;
}

.fw-regular {
    font-weight: 300;
}

.link {
    color: #2CC3C6;
}

.header-container {
    max-width: 1920px;
}

.nav-masthead .nav-link {
    color: #fff;
    font-weight: 300;
}

@media (max-width: 767px) {
    .nav-masthead .nav-link {
        color: #000;
        font-weight: 300;
    }
}

.nav-masthead .nav-link.fw-semibold {
    font-weight: 500 !important;
}

@media (min-width: 768px) {
    .nav-masthead .nav-link + .nav-link {
        margin-left: 1.5rem;
    }
}
.nav-masthead .active {
    color: #56E4E6;
}

.navbar-toggler {
    --bs-navbar-toggler-padding-y: .46rem;
}

.button {
    border-radius: 8px;
    padding: .75rem 1.8rem;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.button.transparent {
    border: 1px solid #fff;
}

.button.green {
    background-color: #2CC3C6;
    border: none;
}

.button.white {
    background-color: #fff;
    border: none;
    color: #000;
}

.button-sign-in-up {
    font-weight: 300;
}

.sign-in-up-title {
    font-size: 30px;
    font-weight: 500;
}

.cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-wrapper a {
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.cart-wrapper a svg {
    margin: 0;
}

.cart-wrapper a:hover svg {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.cart-count {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    right: 90px;
}

.cart-count span {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    line-height: 18px;
    position: absolute;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    color: #fff;
    display: block;
    background-color: #2CC3C6;
    font-size: 10px;
    text-align: center;
}

.cart-amount {
    margin-left: 20px;
}

.cart-amount .cart-text {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-size: 11px;
}

.cart-amount div:nth-child(2) {
    font-size: 14px;
    color: #56E4E6;
}

.header-home-wrapper {
    margin-top: 75px;
    margin-bottom: 110px;
    margin-right: 120px;
}

.page-title {
    font-size: 32px;
    color: #fff;
    font-weight: 400;
}

.breadcrumbs,
.breadcrumbs a {
    color: #56E4E6;
    font-size: 15px;
    font-weight: 300;
    margin-top: 5px;
    text-decoration: none;
}

.login-background {
    background-color: #F4F8FA;
}

.content-wrapper {
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ECEDF2;
    -webkit-box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
    box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
}

form .form-control:not([type=file]):not(textarea),
form .form-select {
    height: 50px;
}

form .form-control:focus {
    box-shadow: 0 0 0 1px #2CC3C6;
    background-color: #fff;
}

form .form-label {
    font-size: 15px;
    font-weight: 300;
}

.link-secondary {
    color: #202124 !important;
}

form.sign-in-up-form .button.green {
    padding: .8rem 4.6rem;
    font-size: 16px;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    border-radius: 6px;
    background-color: #dce1e3;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
    left: 9px;
    top: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

footer {
    background-color: #0A3158;
}

footer .call-us-link {
    text-decoration: none;
    color: #DEEBFF;
    font-size: 18px;
}

footer .email-us-link {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

footer .join-us-text {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

footer .email-input-wrapper {
    position: relative;
}

footer .email-input-wrapper .button {
    padding: .6rem .7rem .7rem;
    position: absolute;
    top: 9px;
    right: 10px;
}

footer .email-input {
    height: 60px !important;
    padding-right: 60px;
}

footer .copyright-row {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

footer .copyright-row a {
    color: #fff;
}

.footer-heading {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.footer-nav {
    list-style-type: none;
    color: #fff;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
}

.footer-nav .with-dash {
    margin-left: -20px;
}

.footer-nav .with-dash a {
    color: #2CC3C6;
}

.footer-nav .with-dash::before {
    content: "—";
    color: #2CC3C6;
}

.toggle-password {
    position: absolute;
    top: 50px;
    right: 22px;
    cursor: pointer;
}

.my-account-menu .nav-link.active {
    text-decoration: underline;
}

.search-section-1 {
    background: #edf4f7;
}

.search-section-2 {
    background: #F4F8FA;
}

.search-wrapper {
    background: #F4F8FA;
}

.search-wrapper .title {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.search-wrapper .form-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #202124;
}

.search-wrapper .form-select,
.search-wrapper .input-group-text {
    --bs-border-radius: 6px;
    --bs-border-color: #ECEDF2;
}

.search-wrapper .form-select {
    border-left: none;
}

.search-wrapper .input-group-text {
    --bs-tertiary-bg: #fff;
    border-right: none;
}

.search-wrapper .form-select,
.search-wrapper .form-control {
    height: 50px;
}

.search-wrapper .form-select {
    color: #696969;
    font-size: 15px;
    font-weight: 400;
}

.search-wrapper .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #696969;
    opacity: 1;
    font-size: 15px;
}

.search-wrapper .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #696969;
    font-size: 15px;
}

.search-wrapper .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #696969;
    font-size: 15px;
}

.search-wrapper .form-control:focus,
.search-wrapper .form-select:focus {
    border-color: #ECEDF2;
    box-shadow: none;
}

.search-wrapper .form-select {
    color: #696969;
    font-size: 15px;
    font-weight: 400;
}

.search-results .resume-row {
    border-radius: 8px;
    border: 1px solid #ECEDF2;
}

.search-results .college-title {
    color: #202124;
    font-size: 20px;
    font-weight: 500;
}

.search-results .text {
    color: #696969;
    font-size: 14px;
}

.search-results .price,
.resume-card .price {
    font-size: 18px;
    font-weight: 500;
    color: #202124;
}

.add-to-cart,
.read-more {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
}

.paging {
    font-size: 14px;
    font-weight: 400;
}

.proPaging, .proPaging_sel {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #696969;
}

.proPaging {
    margin-left: 27px;
    margin-right: 27px;
}

.proPaging_sel {
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 50%;
    color: #fff;
    background: #2CC3C6;
    margin-left: 27px;
    margin-right: 27px;
}

.paging-info {
    font-size: 15px;
}

.paging-info span {
    color: #696969;
}

.text-cyan {
    color: #56E4E6;
}

.home-title {
    color: #fff;
    font-size: 46px;
    font-weight: 400;
}

.home-subtitle {
    color: #fff;
    font-size: 23px;
}

.home-search {
    background: #fff;
    -webkit-box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
    box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
    border-radius: 8px;
}

.home-search .form-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #202124;
}

.home-search .form-select,
.home-search .input-group-text,
.home-search .form-control {
    --bs-border-width: 0;
}

.home-search .form-select {
    border-left: none;
}

.home-search .input-group-text {
    --bs-tertiary-bg: #fff;
    border-right: none;
}

.home-search .form-select,
.home-search .form-control {
    height: 50px;
}

.home-search .form-control:focus,
.home-search .form-select:focus,
.home-search .form-control:focus {
    box-shadow: none;
}

.home-search .search-button {
    background: #F9AB00;
    border: none;
}

.home-search .form-select:first-of-type,
.home-search .form-select:nth-of-type(2) {
    border-right: 1px solid #ECEDF2;
}

.home-sub-search {
    font-size: 16px;
}

.hiw-title {
    font-size: 36px;
    font-weight: 400;
}

.hiw-item-title {
    font-size: 24px;
    font-weight: 400;
}

.hiw-item-description {
    font-size: 14px;
    font-weight: 300;
    color: #404046;
}

.trending {
    background-color: #F4F8FA;
}

.trending-title {
    font-size: 32px;
    font-weight: 500;
}

.trending-subtitle {
    color: #696969;
    font-size: 15px;
}

.trending .resume-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ECEDF2;
}

.trending .college-title {
    font-size: 18px;
    color: #202124;
    font-weight: 400;
}

.trending .resume-major {
    color: #696969;
    font-size: 14px;
    font-weight: 400;
}

.top-universities-title {
    font-size: 32px;
}

.top-universities img {
    border-radius: 8px;
}

.top-universities .link-browse-all {
    color: #1967D2;
    font-size: 14px;
    text-decoration: none;
}

.top-universities .img-link {
    color: #fff;
    text-decoration: none;
}

.top-universities .college-info {
    position: absolute;
    bottom: 22px;
}

.top-universities .college-info .college-title {
    font-size: 18px;
}

.top-universities .big-image .college-info {
    bottom: 25px;
}

.top-universities .big-image .college-info .college-title {
    font-size: 32px;
}

.top-universities .college-info .resumes-count,
.top-universities .college-info .avg-gpa {
    font-size: 14px;
}

.buyer-card,
.seller-card {
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.buyer-card h1,
.seller-card h1 {
    font-size: 28px;
    font-weight: 400;
}

.buyer-card .text,
.seller-card .text {
    font-size: 14px;
    line-height: 24px;
}

.buyer-card {
    background-color: #0A3158;
}

.buyer-card h1 {
    color: #fff;
}

.buyer-card .text {
    color: #fff;
}

.seller-card {
    background-color: #56E4E6;
}

.seller-card h1 {
    color: #202124;
}

.seller-card .text {
    color: #696969;
}

.testimonials {
    background-color: #F4F8FA;
}

.testimonials-title {
    font-size: 32px;
    color: #202124;
}

.testimonial {
    background-color: #fff;
    border: 1px solid #ECEDF2;
    border-radius: 8px;
    -webkit-box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
    box-shadow: 0 6px 15px 0 rgba(64,79,104,0.05);
    opacity: 0.7;
}

.testimonial.slick-center {
    opacity: 1;
}

.testimonial-title {
    font-size: 18px;
    color: #2CC3C6;
    font-weight: 400;
}

.testimonial-text {
    color: #696969;
    font-size: 16px;
    line-height: 26px;
}

.testimonial .quote-icon {
    position: absolute;
    top: 25px;
    right: 28px;
}

.testimonial .student-name {
    font-weight: 400;
    font-size: 18px;
    color: #202124;
}

.testimonial .student-status {
    font-size: 14px;
    color: #696969;
}

.testimonial .student-image {
    /*border-radius: 50%;*/
}

.slick-dots li.slick-active button:before {
    color: #2CC3C6;
}

.slick-dots li button:hover:before {
    color: #2CC3C6;
}

.slick-dots li button:before {
    font-size: 10px;
}

.mainnav--cart .drop {position: relative; display: inline-block; z-index:1111;}
.mainnav--cart .drop .pPanel {position: absolute; left: auto; width:auto; min-width: 120px; height:0; opacity:0; visibility: hidden; margin-left: -11px; right: 0}
.mainnav--cart .drop .inner {margin:4px; list-style:none; background: #f9f9f9; padding: 10px 0; margin-top:5px; position:relative; box-shadow: 0 0 5px rgba(0,0,0, 0.4); border-radius:2px;}
.mainnav--cart .drop .inner:after {content:"";top:-8px; position:absolute; left:9px; border: 5px solid transparent; border-bottom-width: 4px; border-bottom-color:#f5f5f5;}
.mainnav--cart:hover .drop .pPanel {opacity:1; height:auto; visibility: visible; z-index: 11;}
.mainnav--cart .drop li a {font-size: 10px; color: #222; padding:0 5px 0 10px; display: block; text-transform: uppercase; margin-top: 1px;}
.mainnav--cart .drop li.active a,
.mainnav--cart .drop li a:hover {background: rgba(80, 80, 80, 0.1);}
.mainnav--cart .drop li a span {float: right; opacity: .3; margin-top: 2px;}
.mainnav--cart .drop:hover .kl-cart-button .fas {opacity: 1;}
.mainnav--cart {margin-left: 15px;}
.mainnav--cart .drop .pPanel {-webkit-transition: all 0.2s ease-out; transition: all 0.2s ease-out; }

.cart-container > .widget_shopping_cart_content {display: block; font-size: 12px;}
.cart-container > .widget_shopping_cart_content .checkout {border-left: 1px solid #CCC; margin-left: 15px; padding-left: 15px; display: inline-block; color: #2CC3C6; font-size: 12px; text-transform: uppercase;}
.cart-container > .widget_shopping_cart_content .checkout:hover {color: #333;}
.cart-container > .widget_shopping_cart_content .checkout span {margin-top: 1px; opacity: 0.2;}

.cart-container {margin: 0 !important; background: #f9f9f9 !important; padding: 25px !important; min-width: 320px;}
.cart-container .cart_list {margin: 0 0 15px !important; list-style: none; border-bottom: 1px solid #ddd; padding: 0;}
.cart-container .cart_list a:hover {background-color: transparent !important;}
.cart-container .cart_list li {overflow: hidden; margin: 0 0 15px !important;}
.cart-container .cart_list li a:not(.remove), .cart-container .product-title {font-family: "Bebas Neue W01 Regular", Helvetica, 'Open Sans', sans-serif; text-transform: initial; font-size: 0.75rem; font-weight: bold; padding: 0 30px 0 0 !important; text-align: left; margin-bottom: 3px; }
.cart-container .cart_list .remove {float: right; font-size: 16px; color: #C3C3C3; padding: 0 !important; margin-top: 0;}
.cart-container .cart_list .remove:hover {color: #7F7F7F;}
/*.cart-container .cart_list .product-title:hover {color: #2CC3C6;}*/
.cart-container .cart_list .color-variations,
.cart-container .cart_list .quantity {display: block; text-align: left;}
.cart-container .cart_list li img {float: left !important; margin-right: 15px; margin-left: 0 !important; width: 75px !important }
.cart-container .cart_list li .variation,
.cart-container .cart_list li .variation p {margin: 0;}
.cart-container .cart_list li .variation {overflow: hidden !important; border: 0!important; padding: 0!important;}
.cart-container .cart_list li .variation-Color {display: inline-block; padding: 0 !important; margin: 0 !important; clear: none !important;}
.cart-container .cart_list li .variationr:before, .cart-container .cart_list li .variation:after {content: none;}
.cart-container .total .amount {float: right; font-weight: bold; font-size: 1rem; line-height: 1;}
.cart-container .total {border-bottom: 1px solid #ddd; padding: 0 0 15px; margin: 0 0 15px;}
.cart-container .buttons {overflow: hidden; margin: 0;}
.cart-container .buttons .button {width: 49%; display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: 400; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; text-transform: uppercase;}
.cart-container .buttons .button.wc-forward {background-color: #2CC3C6; color: #fff; text-shadow: none; font-weight: normal; padding: 9px 20px; line-height: 1.6; box-shadow: none; font-size: 14px; font-weight: 600; border-radius: 3px; -webkit-transition: background-color .2s ease-in-out; transition: background-color .2s ease-in-out; }
.cart-container .buttons .button.checkout {color: #242424; border-color: #242424; font-weight: normal; border-width: 2px; background: none; text-shadow: none; padding: 8px 20px; line-height: 1.6; box-shadow: none; font-size: 14px; border-style: solid; border-radius: 3px; -webkit-transition: all .1s ease-in-out; transition: all .1s ease-in-out; margin-left: 0; background-color: transparent !important;}

.noUi-horizontal {
    height: 9px;
}

.noUi-connect {
    background: #2CC3C6;
}

.noUi-handle {
    border-radius: 50%;
    box-shadow: none;
}

.noUi-horizontal .noUi-handle {
    width: 20px;
    height: 20px;
    right: -10px;
    top: -6px;
}

.noUi-handle:after, .noUi-handle:before {
    display: none;
}

.header-student .orbit {
    padding: 84px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
    position: relative;
    transform: translateZ(0); /* Trigger hardware acceleration */
}

.header-student .orbit .college {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-width: 100px;
    min-height: 100px;
    text-align: center;
    box-sizing: border-box;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    text-rendering: optimizeLegibility; /* Improves text rendering */
    -webkit-font-smoothing: antialiased; /* For webkit browsers */
    -moz-osx-font-smoothing: grayscale; /* For Firefox on macOS */
    text-decoration: none;
    background:radial-gradient(#FFFFFF, #E5F5FC);
}

.header-student .orbit .college .name {
    color: #0A3158;
}

.header-student .orbit .college .university-label {
    font-size: 12px;
    margin-top: -8px;
    color: #696969;
}

.header-student .orbit .college:hover {
    background:radial-gradient(#66E3E5, #0CC9CC);
}

.header-student .orbit .college:hover .name,
.header-student .orbit .college:hover .university-label {
    color: #fff;
}

.header-student .orbit .college:hover svg path {
    fill: #fff !important;
}

.outer-orbit .outer-college {
    animation: outer-circle-animation 60s linear infinite;
}

.inner-orbit {
    width: 50%; /* Adjust the size as needed */
    height: 50%; /* Adjust the size as needed */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    padding: 42px;
}

.header-student .inner-orbit .inner-college {
    animation: inner-circle-animation 120s linear infinite;
    padding: 10px;
    min-width: 75px;
    min-height: 75px;
}

@keyframes outer-circle-animation {
    0% {
        transform: rotate(var(--start-angle)) translate(280px) rotate(calc(-1 * var(--start-angle))) translateZ(0);
    }
    100% {
        transform: rotate(calc(360deg + var(--start-angle))) translate(280px) rotate(calc(-360deg - var(--start-angle))) translateZ(0);
    }
}

@keyframes inner-circle-animation {
    0% {
        transform: rotate(var(--start-angle)) translate(190px) rotate(calc(-1 * var(--start-angle))) translateZ(0);
    }
    100% {
        transform: rotate(calc(-360deg + var(--start-angle))) translate(190px) rotate(calc(360deg - var(--start-angle))) translateZ(0);
    }
}

.about-us-menu a {
    color: #404046;
    text-decoration: none;
    font-weight: 300;
    line-height: 50px;
}

.about-us-menu a:hover {
    color: #2CC3C6;
    text-decoration: underline;
}

.about-us-menu li.active {
    background-color: #F4F8FA;
    border-radius: 8px;
}

.about-us-menu li.active a {
    color: #2CC3C6;
}

.about-us-menu .bi-arrow-right {
    color: #2CC3C6;
}

.blog {  margin-top: 73px; margin-bottom: 102px;}
.blog__inner {  position: relative; margin-top: 20px; height: 100%;}
.blog-text {  max-width: 370px; position: absolute; bottom: 16px; background: #fff; padding: 0 20px 0 15px;}
.blog-text__info {  padding: 20px 0 15px 0;}
.blog-text__info span {  font-family: "Hind", sans-serif; font-weight: 400; font-size: 14px; color: #b1b1b1; text-transform: uppercase;}
.blog-img {  width: 100%;}
.blog-date {  margin-right: 18px;}
.blog-article {  font-family: "Barlow", sans-serif; font-weight: 500; font-size: 20px; color: #252525;}
.blog-read {  right: -34px; position: absolute; bottom: 4px;}
@media (max-width: 1400px) {
    .blog-text {    max-width: 290px; }
    .blog span {    font-size: 14px; }
    .blog h3 {    font-size: 16px; }
}
@media (max-width: 1400px) {
    .blog-text {    max-width: 250px; }
    .blog-text__info {    padding: 0px 0 5px 0; }
    .blog span {    font-size: 10px; }
    .blog h3 {    font-size: 14px; }
}
@media (max-width: 768px) {
    .blog-text {    max-width: initial; }
    .blog-text__info {    padding: initial; }
    .blog span {    font-size: initial; }
    .blog h3 {    font-size: initial; }
}
@media (max-width: 576px) {
    .blog-text {    max-width: 250px; }
    .blog-text__info {    padding: 10px 0 5px 0; }
}
@media (max-width: 385px) {
    .blog-text {    max-width: 200px; }
    .blog-text__info {    padding: 0px 0 5px 0; }
    .blog span {    font-size: 10px; }
    .blog h3 {    font-size: 14px; }
}
.start.blog-page-start {  background: url(../img/blog-page/bg.png);}
.blog-page .blog-search-btn {  width: 30%;}
.blog-page-padding-right {  padding-right: 45px;}
.blog-page-sidemenu-title {  font-family: "Bebas Neue", cursive; font-weight: 400; font-size: 24px; color: #252525; text-transform: uppercase; padding-top: 30px; border-top: 1px solid #E6E6E6;}
.blog-page .products-list__filter-button {  display: none; color: #252525; padding: 9px 25px; background: none; border: 1px solid #252525; margin-bottom: 33px;}
.blog-page .products-list__filter-button:hover {  background-color: inherit; border: 1px solid #252525;}
.blog-page .products-list__filter-input {  width: 70%;}
.blog-page-categories ul li {  padding-top: 16px;}
.blog-page-categories ul li a {  font-family: "Barlow", sans-serif; font-weight: 400; font-size: 18px; color: #252525; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding-right: 60px;}
.blog-page-tags {  padding-bottom: 24px;}
.blog-page-tags ul {  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 10px;}
.blog-page-tags ul li {  margin-bottom: 8px;}
.blog-page-tags ul li button {  font-family: "Barlow", sans-serif; font-weight: 400; font-size: 14px; color: #1A1A1A; border: none; background: #F2F2F2; border-radius: 6px; padding: 6px 16px;}
.blog-page-tags ul li button.active {  color: #FFFFFF; background: #2CC3C6; font-weight: 500;}
.blog-page-latest .slider-pagination {  width: 100%; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start;}
.blog-page-latest .swiper-blog-page-button-prev,
.blog-page-latest .swiper-blog-page-button-next {  color: #2CC3C6; font-size: 30px;}
.blog-page-latest .swiper-blog-page-button-prev::after,
.blog-page-latest .swiper-blog-page-button-next::after {  content: none;}
.blog-page-latest .swiper-blog-page-button-next {  margin-left: 24px;}
.blog-page-slide {  display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center;}
.blog-page-slide__text {  font-family: "Hind", sans-serif; font-weight: 500; font-size: 18px; color: #252525; margin-left: 11px;}
.blog-page-slide__date {  font-weight: 300; font-size: 14px; color: #B1B1B1;}
@media (max-width: 992px) {
    .blog-page .products-list__filter-button {    display: block; }
}
