/*
Theme Name: MojMeni
Theme URI: - mojmeni.online
Author: Digitality
Author URI: https://www.digitality.com
Version: 1.0

* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
/*********** FONTS ***********/
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter-v13-cyrillic_cyrillic-ext_latin_latin-ext-300.woff2') format('woff2'); 
}
@font-face {
  font-display: swap; 
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v13-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v13-cyrillic_cyrillic-ext_latin_latin-ext-500.woff2') format('woff2'); 
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v13-cyrillic_cyrillic-ext_latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v13-cyrillic_cyrillic-ext_latin_latin-ext-700.woff2') format('woff2'); 
}
/***********************************************
                    ROOT
***********************************************/
:root {
    --primary-font: 'Inter', sans-serif;
    --primary-color: #0658F5;
    --primary-color-opacity: #0658F51A;
    --secondary-color: #0658F5;
    --secondary-color: color-mix(in srgb, var(--primary-color) 40%, black);
    --hover-color: #0658F5;
    --hover-color: color-mix(in srgb, var(--primary-color) 80%, black);
    --grey: #D4D4D4;
    --grey-text: #8f8e8e;
  }
/***********************************************
                    BODY, HTML
***********************************************/
body {
    font-family: var(--primary-font);
}
/***********************************************
                PRE-D CLASSES
***********************************************/

.um-form-field {
    background-color: var(--grey);
    border: 1px solid var(--grey);
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    line-height: 1;
    font-weight: 500;
}
.form-control {

    border: 1px solid var(--grey);
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    line-height: 1;
    font-weight: 500;
}
.um-form-field:focus {
    background-color: var(--grey);
    border: 1px solid var(--grey-text);
    box-shadow: none;
}
.form-control:focus {
    border: 1px solid var(--grey-text);
    box-shadow: none;
}
.um-field-label {
    margin: 0 !important;
}
.um-field {
    margin-top: 10px; 
}
.um-field-label label{
    line-height: 1 !important;
    color: var(--grey-text)!important;
    font-size: 12px!important;
    text-transform: uppercase!important;
    margin-bottom: 4px!important;
    font-weight: 300 !important;
}
.btn,
.um-button {
    font-size: 16px;
    line-height: 1;
    border-radius: 10px;
    padding: 15px 24px;
    border: none;
}
.btn-sm {
    font-size: 14px;
    padding: 12px 24px;
}
.btn-link {
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color) !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    width: 35px;
    height: 35px;
    padding: 2px !important;
    text-decoration: none;
}
.btn-link:hover {
    background-color: var(--primary-color) !important;
}
.btn-primary,
.um-button {
    background-color: var(--primary-color) !important;
    color: #FFFFFF;
}
.fea-submit-button,
.acf-button {
    background-color: var(--primary-color) !important;
    color: #FFFFFF !important;
    border: none;
    text-decoration: none;
    border-radius: 10px;
}
.acf-basic-uploader .acf-button {
    padding: 5px 10px !important;
}
.btn-primary:hover,
.fea-submit-button:hover,
.um-button:hover,
.btn-primary:focus,
.um-button:focus,
.btn-primary:active,
.um-button:active,
.btn-primary.active {
    background-color: var(--hover-color) !important;
    color: #FFFFFF !important;
}
.btn-secondary {
    background-color: #000;
    color: #FFFFFF;
}
.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #000;
}
.reg-btn {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--bs-body-color);
    text-decoration: none;
    transition: all .3s;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
   
}
.reg-btn:hover {
    color: var(--hover-color);
}
.top-right-radius {

    margin-top: -80px;
    position: relative;
}
.top-right-radius::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: #FFF;
    border-top-right-radius: 200px;
}
h2 {
    font-size: 42px;
    margin-bottom: 4px;
    line-height: 1;
    font-weight: 500;
}
.um-page-login p,
.um-page-register p {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--grey-text);
}
.um-field-error {
    background-color: #C74A4A;
    border: 1px solid var(--grey);
    color: #FFF;
    padding: 12px 24px;
    border-radius: 10px;
    line-height: 1;
    position: relative;
    font-weight: 300;
    font-size: 14px;
}
.um-field-error::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: -3px;
    left: 10px;
    background-color: #C74A4A;
    transform: rotate(45deg);
}
.gtranslate_wrapper {
    top: 10px;
    right: 15px;
    position: absolute;
    z-index: 150;
}
.gtranslate_wrapper .gt_switcher-popup {
    border-radius: 50%;
    overflow: hidden;
    display: block;
    width: 30px;
    height: 30px;
}
.gtranslate_wrapper .gt_switcher-popup  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.main-icons {
    position: relative;
    z-index: 50;
    min-height: 82px;
    padding-left: 130px;
    padding-top: 10px;
}
.gtranslate_wrapper .gt_switcher-popup span {
    display: none;
}
.container-mob {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.container-home {
    width: 100%;
    max-width: unset;
    margin: 0 auto;
}
.profile-header {
    height: 35svh;
}
.lokal-name {
	position: absolute;
    bottom: 70px;
    left:  155px;
    font-size: 21px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.1;
}
.lokal-name span {
	font-weight: 400;
	font-size: 15px;
	margin-top: 3px;
}
.overlay::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.9402135854341737) 100%);
}
.header-logout {
    top: 10px;
	right: 10px;
    z-index: 100;
}
.header-nazad {
    top: 10px;
	left: 10px;
    z-index: 100;
}
.profile-cover {
    height: 100%;
    z-index: 20;
}
.profile-cover picture {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.profile-cover img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.um {
    margin-left: auto;
    margin-right: auto;
    padding: 0 35px;
}
.acf-table > tbody > tr > th, .acf-table > tbody > tr > td, .acf-table > thead > tr > th, .acf-table > thead > tr > td {
    background: var(--main-beige) !important;
}
.acf-table  {
    border: none !important;
}
.profile-img {
    left: 0;
    right: 0;
    bottom:  15px;
    text-align: start;
    z-index: 50;
}
.profile-img a {
    display: block;
    width: fit-content;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
}
.profile-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}
.main-links-box .main-icons {
    z-index: 50;
}
.main-links-box a:first-child {
    margin-left: 0;
}
.main-links-box a:last-child {
    margin-right: 0;
}
.lang-switcher {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.recenzija-wrapper {
    padding: 0;
}
.stretched-link::after {
    display: none;
}
.JOvy1A {
    height: 60px;
    display: flex;
    align-items: center;
}
.recenz-text {
    font-size: 10px;
    text-transform: uppercase;
    transform: translateY(-5px);
    font-weight: 500;
    letter-spacing: -1px;
}
.HlRz5e img {
    width: 80px !important;
}
.accordion h3 {
    margin-bottom: 0;
    padding-left: 25px;
    font-weight: 600;
    letter-spacing: -1.5px;
}
.accordions {
    padding-top: 15px;
}
.accordion-item {
    margin-bottom: 15px;
    border: none !important;
}
.accordion-button {
    background-color: var(--primary-color);
    border: 0;
    color: #FFFFFF;
    border-bottom: 1px solid var(--blue);
    padding: 14px 20px 14px 35px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    width: 90%;
    border-radius: 0 10px 10px 0 !important;
}
.accordion-button::after {
    background-image: url(img/angle-down.svg);
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(55deg) brightness(104%) contrast(100%);
}
.accordion-button.collapsed {
    border-bottom: 0;
}
.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--blue);
    color: #FFFFFF;
}
.accordion-button:not(.collapsed)::after {
    background-image: url(img/angle-down.svg);
}
.accordion-icon {
    width: 30px;
    margin-right: 7px;
    font-size: 18px;
	text-align: center;
}
.accordion-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.accordion-icon i,
.artikal-ikonica i
{
	font-size: 25px;
}

.accordion-icon svg path {
    fill: #1a463d;
}
#accordionLokali .accordion-body {
	padding-left: 5px;
}
.accordion-body {
    width: 90%;
    padding-left: 35px;
    padding-right: 5px;
    background-color: var(--main-beige);
    border: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--blue);
}
.accordion-body .product:first-child {
    padding-top: 0;
}
.accordion-body .product:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.product {
    padding: 5px 0;
    border-bottom: 1px solid var(--grey);
}
.product-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}
.product-name span {
	font-size: 14px;
    font-weight: 400;
}
.product-price {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}
.product-price span {
	font-size: 17px;
    font-weight: 600;
}
.product-type-title {
    font-size: 15px;
    padding: 5px;
    margin-top: 10px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-radius: 10px;
}
.accordion-body .product-type-title:first-child {
    margin-top: 0;
}
.corner-border-only span{
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    z-index: 5 !important;
}
.corner-border-only {
	position: relative;
	display: inline-block;
	width: auto;
	padding: 4px !important;
	border: 1px solid var(--blue) !important;
	background: #b9ceea5c !important;
	width: 100%;
	text-align: center;
}



input {
    border: 1px solid var(--main-beige);
    border-bottom: 1px solid var(--secondary-green);
    background-color: var(--main-beige);
    transition: all 0.3s ease-in-out;
    padding: 5px;
    width: 100%;
}
input:focus-visible {
    border: 1px solid var(--secondary-green);
    outline: 0;
}
.acf-table {
    width: 100%;
    border-top: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    border-spacing: 5px !important;
    border-collapse: separate; 
    background-color: var(--primary-color-opacity) !important;
    border-radius: 10px !important;
}

.acf-repeater .acf-row-handle.order {
    background-color: var(--secondary-color) !important;
    border-radius: 5px;
    border: none !important;
}
.acf-row-number {
    color: #FFFFFF;
}
.acf-repeater .acf-row-handle.remove {
    border: none;
}
.acf-row {
    padding: 10px;
    border: none !important;
 

}
.acf-field {
    padding: 5px 5px !important;
    
}
.acf-button {
    padding: 15px !important;
}
.acf-icon {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: #FFFFFF !important;
}
.acf-icon:hover {
    border: 1px solid var(--primary-color) !important;
}
.acf-button-group label {
    background-color: #FFFFFF !important;
    border:1px solid var(--secondary-color) !important;
    color: var(--secondary-color) ;
}
.acf-button-group label.selected {
    background-color: var(--secondary-color) !important;
}

.select2-results__options {
	display: flex;
	flex-wrap: wrap;
}
.select2-results__options > strong {
	display: none !important;
}
.select2-results__options li {
    font-size: 30px;
	padding: 6px !important;
}

.select2-selection.fa-select2 .acf-selection {
	font-size: 0;
}
.select2-selection.fa-select2 .acf-selection i {
    font-size: 16px;
    visibility: visible;
}

.acf-field input[type="text"], .acf-field input[type="password"], .acf-field input[type="date"], .acf-field input[type="datetime"], .acf-field input[type="datetime-local"], .acf-field input[type="email"], .acf-field input[type="month"], .acf-field input[type="number"], .acf-field input[type="search"], .acf-field input[type="tel"], .acf-field input[type="time"], .acf-field input[type="url"], .acf-field input[type="week"], .acf-field textarea, .acf-field select {
	font-size: 17px !important;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    background-color: #FFFFFF;
}
.acf-row {
    margin-top: 10px;
    margin-bottom: 10px;
}
.acf-row .acf-fields {
    background-color: var(--primary-color-opacity);
    padding: 20px 5px;
    
    border: 0 !important;
    border-bottom: 2px dotted var(--secondary-color) !important;
}
.acf-row:nth-last-child(2) .acf-fields {
    border-bottom: 0 !important;
}

.fea-submit-button {
	padding: 20px;
	width: 100%;
	text-align: center;
	background: var(--secondary-green);
	color: var(--blue);
}
.acf-label {
    font-size: 18px;
}
table .acf-field .acf-label {
    margin-bottom: 0 !important;
    font-size: 16px;
}
.acf-row-number {
    display: flex;
    justify-content: center;
    align-items: center;
}
.acf-switch.-on {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}
.acf-switch .acf-switch-on {
    color: var(--secondary-color);
}
.acf-switch {
    background: #D7D7D7 !important;
}
.acf-switch  {
    background-color: var(--secondary-color);
}

.dashboard-wrap {
    max-width: 700px;
    margin-top: 30px;
}
.dashboard-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -1.5px;
}
.post-box {
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    color: #FFFFFF;
    background-color: var(--secondary-color);
}


ul.acf-radio-list li label, ul.acf-checkbox-list li label {
	display: flex !important;
	align-items: center;
}


/* #um-submit-btn, .um-alt {
    background: var(--blue) !important;
    color: var(--secondary-green) !important;
}
.um-alt {
    opacity: 0.5 !important;
}
.um-alt:hover {
    opacity: 1 !important;
}
#um-submit-btn:hover, .um-alt:hover {
    background: var(--secondary-green) !important;
    color:var(--blue)  !important;
} */


.pocetna-text {
    font-size: 18px;
    text-align: center;
    margin-top: 30px;
}
.pocetna-text a {
    color: var(--secondary-green);
    position: relative;
    text-decoration: none;
    font-weight: 700;
}
.pocetna-text a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-green);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}
.pocetna-text a:hover::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: bottom left;
}
.lokal-poruka {
	border-radius: 10px;
    background-color: var(--primary-color-opacity);
    padding: 15px 10px;
    line-height: 1.1;
    text-align: center;
    font-weight: 500;
}
.footer-link a {
	color: var(--grey-text);
    text-decoration: none;
}
.um-field-checkbox {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}
.um-field-checkbox-option {
	flex-shrink: 0;
    line-height: 0;
    font-size: 15px;
    color: var(--grey-text);
}
.um-field-checkbox input {
	width: 15px;
    margin-bottom: 1px;
}
.um-link-alt {
	margin-top: 20px;
	display: block;
    text-align: center;
    color: var(--bs-body-color);
    text-decoration: none;
}
.menu-scroll {
	max-width: 90%;
    margin-bottom: 20px;
}
.menu-scroll a {
	color: var(--bs-body-color);
    font-weight: 600;
}

.bg-transparent {
    background-color: transparent !important;
}
.bg-transparent:hover {
    background-color: transparent !important;
}
.hero {
    padding: 130px 0 0 0;
    background: linear-gradient(165deg, rgba(6,88,245,1) 0%, rgba(212,212,212,1) 100%);
}
.navbar {
    padding: 24px 0;
    transition: all .2s;
}
.navbar-brand img {
    height: 25px;
    width: auto;
}
.hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
} 
.hero-img-box {
    height: 300px;
    width: auto;
    max-width: 100%;
}
.hero-img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
}
.offcanvas.offcanvas-end {
    background: linear-gradient(165deg, rgba(6,88,245,1) 0%, rgba(212,212,212,1) 100%);
    min-width: 300px;
    width: fit-content;
}
.navbar-nav .nav-link {
    color: #FFFFFF;
    font-size: 18px;

    letter-spacing: 2px;
}
.navbar-nav .nav-link.active {
    color: #FFFFFF;
}
.navbar-nav .nav-item {
    margin: 2px 0;
}
.section-padding {
    padding: 50px 0;
}
.section-top-title {
    color: var(--primary-color);
}
.section-header {
    max-width: 700px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.about-icons {
    font-size: 64px;
    color: var(--primary-color);
}
.about-title {
    font-size: 24px;
    letter-spacing: -1px;
}
.about-text {
    color: var(--grey-text);
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.home-testimonial {
    border-radius: 30px;
}
.testimonial-img-box {
    height: auto;
    width: 100%;
}
.testimonial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}
.testimonial-text {
    font-size: 18px;
}
.features-img-box {
    width: 100%;
    height: auto;
}
.features-img-box  img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.featured-icon {
    width: 40px;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 38px;
    justify-content: center;
}
.featured-text-box h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
}
footer {
    padding-top: 50px;
}
.footer-list a {
    color: #000;
    text-decoration: none;
}
.footer-list i {
    font-size: 18px;
    color: var(--primary-color);
}
.footer-list h4 {
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 1;
    font-weight: 600;
}
.footer-logo img {
    height: 20px;
    width: auto;
}
.footer-block {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--grey)
}
.footer-text {
    color: var(--grey-text);
}
.ponuda-box {
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}
.ponuda-box-header {
    margin-top: -2px;
    background-color: var(--primary-color);
    padding: 15px;
    color: #FFFFFF;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}
.ponuda-box-header span {
    font-weight: 400;
}
.ponuda-box-text {
    padding: 20px;
}
.ponuda-box ul {
    list-style-type: none;
    padding: 0;
}
.ponuda-box ul li {
    padding-left: 18px;
    position: relative;
    font-weight: 500;
}
.ponuda-box ul li::after {
    left: 0;
    top: 5px;
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    background-image: url(img/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(41%) sepia(81%) saturate(7293%) hue-rotate(218deg) brightness(96%) contrast(103%);
}
.ponuda-box-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.ponuda-box-text h5 {
    font-size: 22px;
    font-weight: 600;
    
    margin-bottom: 15px;
}
.ponuda-box-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 1.1;
}
.paketi-block {
    max-width: 900px;
}
.join-section h4 {
    font-size: 18px;
}
.join-section h2 {
    font-size: 28px;
    font-weight: 600;
}
.users-box-img img {
    object-fit: contain;
    height: 35px;
    width: auto;
}
.users-box span {
    font-size: 14px;
    font-weight: 500;
}
.join-section .home-testimonial {
    max-width: 900px;
}
.wpcf7-form-control.btn-primary {
	width: fit-content;
}
footer .main-icons .btn-link {
	background-color: var(--primary-color);
}
footer .main-icons .btn-link:hover {
	background-color: var(--hover-color);
}
.hero .gtranslate_wrapper {
    bottom: 10px;
    top: auto;
    right: 10px;
}
.acf-selection,
.select2-results__option {
  display: flex;
  align-items: center;
}

.acf-selection,
.select2-results__option {
  text-indent: -9999px; /* Move the text out of view */
}

.acf-selection i,
.select2-results__option i {
  text-indent: 0; /* Ensure the icon is not affected */
}
.select2-results__options li {
	font-size: 16px;
}
@media (min-width: 992px) { 
    .hero {
        padding: 180px 0 0 0;
    }
    .hero-block {
        padding-bottom: 120px;
        max-width: 70%;
    }
    .hero h1 {
        font-size: 56px;
    } 
    .hero p {
        font-size: 20px;
    }
    .hero-img-box {
        height: 700px;
    }
    .offcanvas.offcanvas-end {
        background: unset;
        min-width: 300px;
        width: fit-content;
    }
    .navbar-nav .nav-link {
        color: #FFFFFF;
        font-size: 17px;
        padding: 8px 12px !important;
        letter-spacing: 1px;
    }
    .navbar-nav .nav-link:hover {
        color: #000;
    }
    .navbar-nav .nav-item {
        margin: 0 6px;
    }
    .section-padding {
        padding: 85px 0;
    }
    .about-title {
        font-size: 32px;
    }
    .section-header h2 {
        font-size: 40px;
    }
    .testimonial-text {
        font-size: 24px;
        font-weight: 600;
    }
    .featured-text-box h3 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.1;
    }
    .featured-icon {
        width: 60px;
        margin-right: 20px;
        font-size: 48px;
    }
    footer {
        padding-top: 85px;
    }
    .footer-list h4,
    .footer-list i {
        font-size: 22px;
    }
    .join-section h4 {
        font-size: 22px;
    }
    .join-section h2 {
        font-size: 32px;
    }
}