/*Inter and Cal Sans fonts*/
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* variables */
:root {
    --whiteColor: #fff;
    --lightOrangeColor: #ff8a00;
    --mainBlackColor: #222831;
    --fontCalSans: 'Cal Sans', sans-serif;
}

/* HEADER */
.header .forceCommunityThemeNav .mainNavItem a,
.header .forceCommunityThemeNav .mainNavItem button {
    font-size: 14px;
}

.header .comm-user-profile-menu > button {
    display: none;
}

body .siteforceThemeLayoutStarter > .body {
    min-height: calc(100vh - 602px);
}

@media screen and (min-width: 768px) {
    .header .forceCommunityThemeNav .mainNavItem {
        padding-left: 30px;
    }
}

/* Banner */
.home-page-banner {
    padding: 40px 0;
}

.ls-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 64px;
}

.banner-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.banner-content img.banner-content__image {
    width: 100px;
    object-fit: cover;
    margin-bottom: 20px;
}

.banner-content .banner-content__title {
    font: 42px/48px var(--fontCalSans);
    margin-bottom: 30px;
}

.banner-content .banner-content__description {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
}

.banner-content ul.banner-content__description {
    max-width: 590px;
    margin: 0 auto;
    text-align: left;
}

.banner-content .banner-content__btn {
    display: inline-block;
    color: var(--whiteColor);
    background: var(--mainBlackColor);
    padding: 10px 20px;
    font-size: 16px;
    line-height: 28px;
    margin-top: 30px;
    box-shadow: 0 .25rem .125rem #ffffff1a inset, 0 .25rem .75rem #0000001a;
    position: relative;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all .15s ease-in-out;
}

.banner-content .banner-content__btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2px;
    border-radius: inherit;
    background: linear-gradient(180deg, #fff3, #40404033);
    mask: linear-gradient(var(--whiteColor) 0 0) content-box, linear-gradient(var(--whiteColor) 0 0);
    mask-composite: exclude;
}

.banner-content .banner-content__btn:hover {
    text-decoration: none;
    background-color: #323840;
    color: var(--whiteColor);
}

@media screen and (max-width: 767px) {
    .banner-content .banner-content__title {
        font-size: 24px;
        line-height: 30px;
    }

    .banner-content .banner-content__description {
        font-size: 16px;
    }

    .banner-content .banner-content__btn {
        padding: 5px 14px;
    }

    .home-page-banner {
        padding: 20px 0;
    }
}

/*Tiles*/
.lansweeper-tiles {
    padding: 40px 0;
}

.lansweeper-tiles-container .lansweeper-tiles__title {
    font: 42px/48px var(--fontCalSans);
    padding-bottom: 8px;
}

.lansweeper-tiles-container .lansweeper-tiles__subtitle {
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
}

.lansweeper-tiles-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.lansweeper-tiles-container .lansweeper-tile-item {
    padding: 10px;
    display: block;
    transition: all .3s ease-in-out;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    height: 100%;
    transition: all .3s ease-in-out;
}

.lansweeper-tiles-container .lansweeper-tile-item:hover {
    box-shadow: 0 0 15px 0 #CFCFCF;
}

.lansweeper-tile-item .lansweeper-tile-item__inner {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    background-color: var(--whiteColor);
    transition: all .3s ease-in-out;
    height: 100%;
    box-shadow: 0 4px 12px #0000000d;
    border: 1px solid #ebf0fa;
}

.lansweeper-tile-item .tile-item-icon {
    width: 90px;
    margin-left: -11px;
}

.lansweeper-tile-item .tile-item-title {
    font-size: 24px;
    line-height: 30px;
    padding: 16px 0 9px;
}

.lansweeper-tile-item .tile-item-subtitle {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 30px;
    color: #6F6F70;
}

.lansweeper-tile-item a.tile-item-btn {
    font: 400 14px/18px var(--fontCalSans);
    display: inline-block;
    padding: 2px 8px;
    background: #f9fafc;
    color: var(--mainBlackColor);
    border-radius: 8px;
    margin-top: auto;
    width: fit-content;
    transition: all .15s ease-in-out;
}

.lansweeper-tile-item a.tile-item-btn:hover {
    text-decoration: none;
    background: #ebf0fa;
    color: var(--mainBlackColor);
}

.lansweeper-tile-item a.tile-item-btn img {
    width: 18px;
    transition: all .15s ease-in-out;
}

.lansweeper-tile-item a.tile-item-btn:hover img {
    transform: translateX(3px);
}

@media screen and (max-width: 767px) {
    .lansweeper-tiles-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .lansweeper-tiles-container .lansweeper-tiles__title {
        font-size: 24px;
        line-height: 30px;
    }

    .lansweeper-tiles-container .lansweeper-tiles__subtitle {
        font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .lansweeper-tiles-block {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.lansweeper-footer {
    background-color: var(--mainBlackColor);
    color: var(--whiteColor);
    padding: 64px 0 34px;
    margin-top: 30px;
}

.ui-widget .lansweeper-footer a {
    font-size: 16px;
    line-height: 1.65;
    color: var(--whiteColor);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ui-widget .lansweeper-footer li:before {
    display: none;
}

.ui-widget .lansweeper-footer a:hover,
.ui-widget .lansweeper-footer a:focus {
    color: var(--lightOrangeColor);
    text-decoration: none;
}

.ui-widget .lansweeper-footer .footer__top {
    max-width: 1280px;
    margin: 0 auto 56px;
    padding: 0 64px;
	flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.ui-widget .lansweeper-footer .footer__column {
    flex: 0 0 240px;
    min-width: 220px;
}

.ui-widget .lansweeper-footer .footer__title {
    font: 400 16px/1.65 var(--fontCalSans), sans-serif;
    margin-bottom: 18px;
    padding-bottom: 16px;
    position: relative;
}

.ui-widget .lansweeper-footer .footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 220px;
    background: linear-gradient(
        to right,
        var(--lightOrangeColor),
        rgba(255, 138, 0, 0)
    );
}

.ui-widget .lansweeper-footer .footer__list,
.ui-widget .lansweeper-footer .footer__legal,
.ui-widget .lansweeper-footer .footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ui-widget .lansweeper-footer .footer__list li {
    margin: 12px 0;
    padding: 0;
}

.ui-widget .lansweeper-footer .footer__cta {
    display: inline-block;
    margin: 6px 0 22px;
    padding: 12px 20px;
    border-radius: 6px;
    border: 2px solid var(--whiteColor);
    background: transparent;
    font-weight: 700;
    color: var(--whiteColor);
    transition: background 0.2s ease;
}

.ui-widget .lansweeper-footer .footer__cta:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--whiteColor);
}

.ui-widget .lansweeper-footer .footer__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 17px;
}

.ui-widget .lansweeper-footer .footer__social li {
    padding: 0;
}

.ui-widget .lansweeper-footer .footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.ui-widget .lansweeper-footer .footer__social a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ui-widget .lansweeper-footer .footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.ui-widget .lansweeper-footer .footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.ui-widget .lansweeper-footer .footer__legal a:hover {
    color: var(--whiteColor);
    text-decoration: underline;
}

.ui-widget .lansweeper-footer .footer__copyright {
    font-size: 16px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .ui-widget .lansweeper-footer .footer__top {
        flex-wrap: wrap;
        gap: 40px;
    }

    .ui-widget .lansweeper-footer .footer__column {
        flex: 1 1 260px;
    }
}

@media (max-width: 700px) {
    .lansweeper-footer {
        padding: 48px 0 28px;
    }

    .ui-widget .lansweeper-footer .footer__top,
    .ui-widget .lansweeper-footer .footer__bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ui-widget .lansweeper-footer .footer__column {
        flex: 1 1 100%;
    }

    .ui-widget .lansweeper-footer .footer__bottom {
        flex-direction: column;
        gap: 20px;
    }

    .ui-widget .lansweeper-footer .footer__legal {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}