body {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #030303;
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    color: #ffffff;
}

h3 {
    margin-top: .75em;
    margin-bottom: .75em;
}

.tile-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
    background-image:  linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(to right, #ffffff 1px, transparent 1px);
    background-size: 50px 50px;
}

.background-linear-gradient {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0%) 50%, #000000 100%);
}

.grid-nav-container {
    display: grid;
    box-sizing: border-box;
    width: 1776px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows:  minmax(8px, auto);;
    row-gap: 8px;
    column-gap: 16px;
    padding-left: 32px;
    padding-right: 32px;
}

.grid-item-nav {
    grid-column: span 13;
    grid-row-start: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .menu path {
        fill: #ffffff;
    }
}

.nav-links {
    width: 500px;
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.gallery-dropdown, .faq-dropdown {
    padding: 30px;
}

.video-dropdown {
    padding: 15px;
}

.download-btn {
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
}

.download-btn:hover {
    cursor: pointer;
}

.grid-logo-headline, .grid-hero, .grid-alternatives, .grid-features, .grid-spontaneous, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
    display: grid;
    box-sizing: border-box;
    width: 1440px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(8px, auto);
    row-gap: 8px;
    column-gap: 16px;
    padding-left: 32px;
    padding-right: 32px;
    margin-bottom: 60px;
}

.logo-w-tags {
    width: 100%;
    margin: 60px 0px;
}

.grid-footer {
    display: grid;
    box-sizing: border-box;
    width: 1440px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(8px, auto);
    row-gap: 8px;
    column-gap: 16px;
    padding-left: 32px;
    padding-right: 32px;
}

.grid-logo-headline-container {
    grid-column: span 13;
    grid-row-start: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-hero-container, .grid-alternatives-container, .grid-features-container {
    grid-column: 2 / span 10;
    grid-row-start: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-about-container, .grid-faqs-container, .grid-privacy-container, .grid-terms-container {
    grid-column: 2 / span 10;
    grid-row-start: 2;
    display: flex;
    flex-direction: column;
}

.grid-footer-container {
    grid-column: span 13;
    grid-row-start: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-container-top {
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: space-between;
}

.footer-container-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.signature {
    margin-top: 15px;
    
    a {
        text-decoration: underline #48FF00;
    }
}

.email-signature {
    text-decoration: underline #ff7700;
}

.grid-spontaneous {
    margin-top: 60px;
    border-radius: 30px;
    background: linear-gradient(115.591deg, rgba(0, 0, 0, 0%) 0%, rgba(255, 102, 0, 50%) 100%), linear-gradient(rgba(38, 38, 38, 58%), rgba(38, 38, 38, 58%));
}

.grid-spontaneous-container {
    grid-column: 2 / span 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: clip;
}

.spontaneous-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    width: 100%;
    height: 952px;
    .spontaneous-img {
        width: 60%;
        img {
            width: 100%;
        }
    }

    .spontaneous-desc {
        width: 35%;
    }

    .spontaneous-desc-two {
        color: #807F7C;
    }
}

.grid-hero-container, .grid-alternatives-container {
    position: relative;
}

.grid-features-container {
    margin-top: 60px;
}

.purple-linear-gradient {
    position: absolute;
    z-index: -3;
    top: -400px;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0%) 50%, #000000 100%), linear-gradient(180deg, rgba(0, 0, 0, 0%) 0%, rgba(255, 0, 229, 50%) 50%, rgba(0, 0, 0, 0%) 100%);
}

.gold-linear-gradient {
    position: absolute;
    z-index: -3;
    top: 70px;
    width: 100vw;
    height: 100%;
    background: linear-gradient(-144.852deg, rgba(0, 0, 0, 0%) 0%, rgba(102, 82, 0, 40%) 60%);
}

.headline {
    font-weight: bolder;
    font-size: 72px;
    text-align: center;
    margin-bottom: 66px;
}

.alternatives-headline {
    font-size: 48px;
}

.features-headline {
    font-size: 48px;
    text-align: center;
}

.features-desc {
    text-align: center;
}

.alternative-one, .alternative-two, .alternative-three {
    margin-top: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    .alternative-img {
        width: 50%;
    }

    .alternative-desc {
        font-size: 20px;
        width: 40%;
    }
}

.tools-row-one, .tools-row-three {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
    img {
        width: calc(50% - 58px);
    }

    .control-dms {
        height: fit-content;
    }
}

.tools-row-two {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 60px;
}

.gather-party {
    width: calc(50% - 58px);
}

.tools-row-two-column {
    display: flex;
    flex-direction: column;
    width: calc(50% - 58px);
    .earn-money {
        margin-bottom: 56px;
    }
    img {
        width: 100%;
    }
}

.logo-container {
    display: block;
    height: 114px;
    width: 216px;
    margin-bottom: 15px;
    img {
        width: 100%;
    }
}

.download-looknforgroup-play-store {
    margin-right: 60px;
}

.download-looknforgroup-store-btns {
    margin-top: 30px;
    display: flex;
}

.hero-img {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    left: -25%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background-color: #051923;
    min-width: 150px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.dropdown-content a {
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    display: block;
    background-color: #030303;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: all;
}

.quick-links {
    text-align: end;
    vertical-align: baseline;
    display: flex;
    flex-direction: column;
    a {
        margin-top: 16px;
    }
}

.bullet-title {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    background-color: rgba(98, 98, 98, 0.25);
    i {
        font-size: 8px;
    }
}

.fa-chevron-down {
    margin-left: 8px;
    color: #ffffff;
}

.fa-circle {
    margin-right: 10px;
    color: #48FF00;
}

.menu, .sidenav {
    display: none;
}

.about_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
	margin-bottom: 3.5em;
}

.previous {
	color: #fff;
	margin-top: 1.5em;
}

.about_title {
	font-family: 'Montserrat';
	font-size: 36px;
	color: #fff;
	margin-top: 4em;
	margin-bottom: 1em;
	font-weight: bold;
}

.about_section_paragraphs {
	font-family: 'Montserrat';
	font-size: 18px;
	color: #fff;
	line-height: 1.8;
}

.faq_question {
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.8;
}

.faq_answer {
	font-family: 'Montserrat';
	font-size: 16px;
	color: #a4a4a4;
	line-height: 1.8;
}

.faq_answer_heading {
	font-family: 'Montserrat';
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
}

.faq_bullets {
	font-family: 'Montserrat';
	font-size: 16px;
	color: #a4a4a4;
	line-height: 1.8;
	margin-left: 3em;
}

.faq_title {
	font-family: 'Montserrat';
	font-size: 36px;
	color: #a4a4a4;
	margin-top: 4em;
	margin-bottom: 1em;
	font-weight: bold;
}

.privacy_policy_title {
	font-family: 'Montserrat';
	font-size: 36px;
	color: #a4a4a4;
	margin-top: 4em;
	margin-bottom: 1em;
	font-weight: bold;
}

.privacy_policy_sub_title {
	font-family: 'Montserrat';
	font-size: 36px;
	color: #a4a4a4;
	margin-top: 1em;
	margin-bottom: 1em;
	font-weight: bold;
}

.privacy_policy_sub_headers {
	font-family: 'Montserrat';
	font-size: 32px;
	color: #a4a4a4;
	margin-bottom: 1em;
	font-weight: bold;
}

.privacy_policy_sub_sub_headers {
	font-family: 'Montserrat';
	font-size: 28px;
	color: #a4a4a4;
	margin-bottom: 1em;
	font-weight: bold;
}

.terms_of_service_title {
	font-family: 'Montserrat';
	font-size: 36px;
	color: #a4a4a4;
	margin-top: 4em;
	margin-bottom: 1em;
	font-weight: bold;
}

.terms_of_service_sub_title {
	font-family: 'Montserrat';
	font-size: 28px;
	color: #a4a4a4;
	margin-top: 1em;
	margin-bottom: 1em;
	font-weight: bold;
}

.terms_of_service_header {
	font-family: 'Montserrat';
	font-size: 18px;
	color: #a4a4a4;
	margin-top: 2em;
	margin-bottom: 2em;
	font-weight: bold;
}

ul {
	list-style: none; /* Remove default bullets */
}

ul li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: #a4a4a4; /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.logo-w-tags-430 {
    display: none;
}

@media only screen and (min-width: 375px) and (max-width: 660px) {
    .about_section_paragraphs {
        font-size: 16px;
    }

    .footer-container-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .quick-links {
        margin-top: 60px;
        text-align: center;
    }

    .footer-container-bottom {
        text-align: center;
    }

    .bullet-title {
        font-size: 12px;
    }

    .download-looknforgroup-play-store {
        margin-right: 10px;
        img {
            width: 152px;
        }
    }

    .download-looknforgroup-app-store {
        img {
            width: 135px;
        }
    }

    .headline {
        font-size: 28px;
        margin-bottom: 33px;
    }

    .nav-links {
        display: none !important;
    }

    .menu {
        display: block;
    }

    /* The side navigation menu */
    .sidenav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        right: 0;
        background-color: #ffffff;
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        li {
            list-style: none;
        }
    }
    
    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        margin-bottom: 32px;
        text-decoration: none;
        font-size: 16px;
        color: black;
        display: block;
        transition: 0.3s;
    }
    
    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    .purple-linear-gradient {
        top: -130px;
    }

    .logo-w-tags {
        display: none !important;
        margin: 0px;
    }

    .logo-w-tags-430 {
        width: 100%;
        display: block !important;
        margin: 30px 0px;
    }

    .grid-features-container, .grid-alternatives-container, .grid-hero-container, .grid-privacy-container, .grid-terms-container, .grid-about-container, .grid-faqs-container {
        grid-column: span 13;
    }
    .grid-nav-container, .grid-footer, .grid-logo-headline, .grid-hero, .grid-alternatives, .grid-features, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
        width: 100%;
    }

    .grid-spontaneous {
        width: calc(100% - 64px);
        .spontaneous-row {
            margin: 60px 0px;
            width: 100%;
            flex-direction: column;
            height: auto !important;
        }
    }

    .grid-spontaneous-container {
        grid-column: span 13;
    }

    .spontaneous-desc, .spontaneous-img {
        width: 100% !important;
    }

    .spontaneous-desc {
        margin-top: 60px;
        font-size: 20px;
    }

    .features-headline, .alternatives-headline {
        text-align: center;
        font-size: 20px;
    }

    .alternative-one, .alternative-three {
        margin-top: 88px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .alternative-two {
        margin-top: 88px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .alternative-one, .alternative-two, .alternative-three {
        .alternative-img, .alternative-desc {
            width: 100%;
        }

        .alternative-desc {
            margin-top: 60px;
            text-align: center;
            font-size: 16px;
        }
    }

    .tools-row-one, .tools-row-two, .tools-row-two-column, .tools-row-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        margin-top: 60px;

        img {
            width: 100% !important;
        }

        .browse-posts, .control-dms {
            margin-bottom: 60px;
        }
    }
}

@media only screen and (min-width: 660px) and (max-width: 896px) {
    .download-looknforgroup-play-store {
        img {
            width: 192px;
        }
    }

    .download-looknforgroup-app-store {
        img {
            width: 171px;
        }
    }

    .headline {
        font-size: 44px;
        margin-bottom: 33px;
    }

    .nav-links {
        display: none !important;
    }

    .menu {
        display: block;
    }

    /* The side navigation menu */
    .sidenav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        right: 0;
        background-color: #ffffff;
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        li {
            list-style: none;
        }
    }
    
    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        margin-bottom: 32px;
        text-decoration: none;
        font-size: 16px;
        color: black;
        display: block;
        transition: 0.3s;
    }
    
    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    .purple-linear-gradient {
        top: -230px;
    }

    .logo-w-tags {
        display: none !important;
        margin: 0px;
    }

    .logo-w-tags-430 {
        width: 100%;
        display: block !important;
        margin: 60px 0px;
    }

    .grid-features-container, .grid-alternatives-container, .grid-hero-container {
        grid-column: span 13;
    }
    .grid-nav-container, .grid-footer, .grid-logo-headline, .grid-hero, .grid-alternatives, .grid-features, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
        width: 100%;
    }

    .grid-spontaneous {
        width: calc(100% - 64px);
        .spontaneous-row {
            margin: 60px 0px;
            width: 100%;
            flex-direction: column;
            height: auto !important;
        }
    }

    .spontaneous-desc, .spontaneous-img {
        width: 100% !important;
    }

    .spontaneous-desc {
        margin-top: 60px;
        font-size: 24px;
    }

    .features-headline, .alternatives-headline {
        font-size: 38px;
    }

    .alternative-one, .alternative-three {
        margin-top: 88px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .alternative-two {
        margin-top: 88px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .alternative-one, .alternative-two, .alternative-three {
        .alternative-img, .alternative-desc {
            width: 80%;
        }

        .alternative-desc {
            margin-top: 60px;
            text-align: center;
        }
    }

    .tools-row-one, .tools-row-two, .tools-row-two-column, .tools-row-three {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100% !important;
        margin-top: 60px;

        img {
            width: 80% !important;
        }

        .browse-posts, .control-dms {
            margin-bottom: 60px;
        }
    }
}

@media only screen and (min-width: 896px) and (max-width: 1024px) {
    .headline {
        font-size: 54px;
    }

    .nav-links {
        display: none !important;
    }

    .menu {
        display: block;
    }

    /* The side navigation menu */
    .sidenav {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 0; /* Stay at the top */
        right: 0;
        background-color: rgba(4, 32, 47);
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        li {
            list-style: none;
        }
    }
    
    /* The navigation menu links */
    .sidenav a {
        padding: 8px 8px 8px 32px;
        margin-bottom: 32px;
        text-decoration: none;
        font-size: 16px;
        color: rgba(254, 250, 224, 0.9);
        display: block;
        transition: 0.3s;
    }
    
    /* When you mouse over the navigation links, change their color */
    .sidenav a:hover {
        color: #f1f1f1;
    }
    
    /* Position and style the close button (top right corner) */
    .sidenav .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }

    .purple-linear-gradient {
        top: -300px;
    }

    .logo-w-tags {
        display: none !important;
        margin: 0px;
    }

    .logo-w-tags-430 {
        width: 100%;
        display: block !important;
        margin: 60px 0px;
    }

    .grid-features-container, .grid-alternatives-container, .grid-hero-container {
        grid-column: span 13;
    }
    .grid-nav-container, .grid-footer, .grid-logo-headline, .grid-hero, .grid-alternatives, .grid-about, .grid-features, .grid-faqs, .grid-privacy, .grid-terms {
        width: 896px;
    }

    .grid-spontaneous {
        width: 832px;
        .spontaneous-row {
            font-size: 20px;
            height: 600px;
        }
    }

    .tools-row-one, .tools-row-three {
        img {
            width: calc(50% - 18px);
        }
    }

    .tools-row-two-column, .gather-party {
        width: calc(50% - 18px);
    }

    .features-headline, .alternatives-headline {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1247px) {
    .headline {
        font-size: 54px;
    }

    .purple-linear-gradient {
        top: -300px;
    }

    .logo-w-tags {
        display: none !important;
        margin: 0px;
    }

    .logo-w-tags-430 {
        width: 100%;
        display: block !important;
        margin: 60px 0px;
    }

    .grid-features-container, .grid-alternatives-container, .grid-hero-container {
        grid-column: span 13;
    }
    .grid-nav-container, .grid-footer, .grid-logo-headline, .grid-hero, .grid-alternatives, .grid-features, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
        width: 1024px;
    }

    .grid-spontaneous {
        width: 960px;
        .spontaneous-row {
            font-size: 22px;
            height: 700px;
        }
    }

    .tools-row-one, .tools-row-three {
        img {
            width: calc(50% - 18px);
        }
    }

    .tools-row-two-column, .gather-party {
        width: calc(50% - 18px);
    }

    .features-headline, .alternatives-headline {
        font-size: 38px;
    }
}

@media only screen and (min-width: 1247px) and (max-width: 1440px) {
    .logo-w-tags {
        display: block !important;
    }

    .grid-nav-container, .grid-footer, .grid-logo-headline, .grid-hero, .grid-alternatives, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
        width: 1248px;
    }

    .grid-spontaneous {
        width: 1184px;
        .spontaneous-row {
            font-size: 28px;
        }
    }
}


@media only screen and (min-width: 1440px) and (max-width: 1940px) {
    .grid-nav-container, .grid-footer, .grid-about, .grid-faqs, .grid-privacy, .grid-terms {
        width: 1440px;
    }

    .grid-spontaneous {
        width: 1376px;
    }
}