main {
    font-family: "Inter", sans-serif;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
    margin-bottom: 0;
}

main {
    margin-top: 90px;
}

button {
    font-family: "Inter", sans-serif;
}

.container {
    padding-left: 100px;
    padding-right: 100px;
    justify-content: center;
}

@media only screen and (max-width: 1024px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* GENERATOR SECTION */
.generator {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center;
}

.generator_container {
    max-width: 1176px;
    margin: 0 auto;
}

.generator_header {
    position: relative;
}

.generator_header_icon_1 {
    position: absolute;
    top: -30px;
    left: 3%;
    width: 30px;
    height: 50px;
}

.generator_header_icon_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 51px;
    height: 74px;
}

.generator_header_heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    padding-bottom: 10px;
}

.generator_header_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    padding-bottom: 20px;
    max-width: 950px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .generator_header_icon_1 {
        left: 0;
    }

    .generator_header_icon_2 {
        right: 0;
    }

    .generator_header_text {
        max-width: 800px;
    }
}

@media only screen and (max-width: 768px) {
    .generator_header_heading {
        font-size: 30px;
        line-height: 36px;
    }

    .generator_header_text {
        font-size: 16px;
        line-height: 19px;
        width: 80%;
        padding-bottom: 25px;
    }

    .generator_header_icon_1 {
        width: 20px;
        height: 34px;
    }

    .generator_header_icon_2 {
        width: 25px;
        height: 35px;
    }
}

@media only screen and (max-width: 480px) {
    .generator_header_text {
        width: 100%;
    }

    .generator_header_icon_2 {
        right: -10px;
    }
}

/* TOOLS SUBSECTION */
.tools {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    margin-top: 20px;
}

.tools_box {
    width: 48%;
    margin-bottom: 40px;
}

.tools_image {
    cursor: pointer;
}

.tools_image_desktop {
    width: 100%;
}

.tools_image_mobile {
    display: none;
}

.tools_text_1 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    margin-top: 7px;
    margin-bottom: 7px;
}

.tools_text_2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
}

.tools_button {
    text-transform: unset;
    padding: 10px 24px;
    background-color: #008577;
}

.tools_button:hover {
    background-color: #00695C; 
}

@media only screen and (max-width: 768px) {    
    .tools_box {
        width: 100%;
        margin-bottom: 40px;
    }

    .tools_image_desktop {
        display: none;
    }

    .tools_image_mobile {
        display: block;
        width: 100%;
    }
}

/* ACCESSIBLE SECTIONS */
.accessible {
    padding-top: 20px;
    padding-bottom: 70px;
}

.accessible_container {
    max-width: 1176px;
    margin: 0 auto;
}

.accessible_image_container_mobile {
    display: none;
    visibility: hidden;
    justify-content: center;
    align-items: center;
}

.accessible_header {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 480px;
}

.accessible_header_heading {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    text-align: left;
    padding-left: 40px;
}

.accessible_header_icon-1 {
    position: absolute;
    top: -10px;
    left: 0;
}

.accessible_header_icon-2 {
    position: absolute;
    bottom: -10px;
    right: 0;
}

.accessible_body {
    display: flex;
    justify-content: space-between;
}

.accessible_image_container_desktop {
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accessible_image {
    width: 280px;
    height: 245px;
}

.accessible_image-1 {
    width: 280px;
    height: 280px;
}

.accessible_content {
    width: calc(100% - 320px);
}

.accessible_content_text_1 {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
}

.accessible_content_text_2 {
    font-size: 18px;
    line-height: 22px;
    padding: 20px 0;
}

.accessible_content_text_3 {
    /* font-weight: 700; */
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
    .accessible_header_icon-1 {
        left: -20px;
    }

    .accessible_header_icon-2 {
        right: -15px;
    }

    .accessible_button {
        padding: 10px 32px;
        font-size: 17px;
    }

    .accessible_header_heading {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .accessible_image_container_mobile {
        display: flex;
        visibility: visible;
    }

    .accessible_image_container_desktop,
    .accessible_header_icon-1,
    .accessible_header_icon-2 {
        display: none;
        visibility: hidden;
    }

    .accessible_content {
        width: 100%;
        text-align: center;
    }

    .accessible_header {
        margin-left: auto;
        margin-right: auto;
    }

    .accessible_header_heading {
        font-size: 22px;
        line-height: 27px;
        padding-left: unset;
        text-align: center;
    }

    .accessible_content_text_1 {
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }

    .accessible_content_text_2 {
        padding: 15px 0;
    }

    .accessible_content_text_2,
    .accessible_content_text_3 {
        font-size: 14px;
        line-height: 17px;
        width: 90%;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .accessible_button {
        padding: 9px 26px;
        font-size: 15px;
    }

    .accessible_content_text_1,
    .accessible_content_text_2,
    .accessible_content_text_3 {
        width: 100%;
    }

    .accessible_image {
        width: 240px;
        height: 200px;
    }

    .accessible_image-1 {
        width: 240px;
        height: 240px;
    }
}

/* VISUAL SECTIONS */
.visual {
    background: #f4f4f4;
    padding-top: 70px;
    padding-bottom: 70px;
}

.visual_container {
    display: flex;
    max-width: 1176px;
    margin: 0 auto;
    justify-content: space-between;
}

.visual_content {
    width: calc(60% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual_text-1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    padding-bottom: 20px;
}

.visual_text-2 {
    font-size: 18px;
    line-height: 22px;
}

.visual_text-3 {
    font-weight: 700;
    padding-top: 20px;
}

.visual_list {
    margin-left: 20px;
}

.visual_list_item {
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 10px;
}

.visual_image_container {
    width: calc(40% - 20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual_image {
    width: 100%;
}

.visual_button_container {
    padding-top: 20px;
}

@media only screen and (max-width: 768px) {
    .visual_text-1 {
        font-size: 22px;
        line-height: 27px;
        text-align: center;
    }

    .visual_text-2 {
        font-size: 14px;
        line-height: 17px;
        text-align: center;
    }

    .visual {
        padding-left: 80px;
        padding-right: 80px;
    }

    .visual_container {
        flex-direction: column-reverse;
    }

    .visual_image_container {
        width: 100%;
        max-width: 270px;
        margin: 0 auto;
    }

    .visual_content {
        width: 100%;
        padding-top: 30px;
    }

    .visual_button_container {
        text-align: center;
    }

    .visual_list_item {
        font-size: 14px;
        line-height: 17px;
    }
}

@media only screen and (max-width: 680px) {
    .visual {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* TEXT SECTION */
.text {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #EBF1FD;
}

.text_container {
    max-width: 1176px;
    margin: 0 auto;
}

.text_paragraph {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.text_author {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-top: 20px;
}

@media only screen and (max-width: 768px) {
    .text {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .text_paragraph, .text_author {
        font-size: 20px;
        line-height: 28px;
    }

    .text_author {
        font-weight: 400;
    }
}



/* FACT SECTION */
.fact {
    padding-top: 70px;
    padding-bottom: 70px;
}

.fact_container {
    max-width: 1176px;
    margin: 0 auto;
}

.fact_header {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    padding-bottom: 30px;
}

.fact_body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fact_content {
    text-align: center;
    width: calc((100% / 3) - 30px);
    padding: 0 15px;
}

.fact_image-1 {
    width: 120px;
    height: 123px;
}

.fact_image-2 {
    width: 120px;
    height: 102px;
    margin-top: 21px;
}

.fact_image-3 {
    width: 120px;
    height: 106px;
    margin-top: 17px;
}

.fact_text-1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    padding: 15px 0;
}

.fact_text-2 {
    font-size: 16px;
    line-height: 19px;
}

.fact_button_container {
    text-align: center;
    margin-top: 35px;
}

@media only screen and (max-width: 1024px) {
    .fact_content {
        width: calc(100% / 3);
        padding: 0;
    }

    .fact_text-2 {
        padding: 0 5px;
    }
}

@media only screen and (max-width: 768px) {
    .fact_header {
        font-size: 22px;
        line-height: 27px;
    }

    .fact_text-1,
    .fact_text-2 {
        font-size: 14px;
        line-height: 17px;
    }

    .fact_content {
        width: 50%;
        padding-top: 30px;
    }

    .fact_text-2 {
        padding: 0 15px;
    }

    .fact_body {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .fact_content {
        width: 100%;
    }
}

/* GENERATOR INFO SECTION */
.generator_info {
    background: #f4f4f4;;
    padding-top: 70px;
    padding-bottom: 70px;
}

.generator_info_container {
    max-width: 1176px;
    margin: 0 auto;
    text-align: center;
}

.generator_info_header_container {
    position: relative;
    margin-bottom: 30px;
}

.generator_info_header_icon_1 {
    position: absolute;
    height: 25px;
    width: 25px;
    top: -20px;
    left: 0;
}

.generator_info_header_icon_2 {
    position: absolute;
    height: 25px;
    width: 25px;
    bottom: -20px;
    right: 0;
}

.generator_info_header_text {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
}

.generator_info_text_1 {
    font-size: 18px;
    line-height: 28px;
    max-width: 850px;
    margin: 0 auto;
}

.generator_info_text_2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding: 30px 0 20px;
}

.generator_info_features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 70px 0;
}

.generator_info_features_box {
    width: 31%;
}

.generator_info_features_image {
    height: 225px;
    width: 225px;
}

.generator_info_features_image-1 {
    height: 225px;
    width: 253px;
}

.generator_info_features_text_1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    padding: 10px 0;
}

.generator_info_features_text_2 {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
}

.generator_info_footer {
    position: relative;
}

.generator_info_footer_icon_1 {
    position: absolute;
    top: 0;
    left: 0;
}

.generator_info_footer_icon_2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.generator_info_footer_text {
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    width: 80%;
    max-width: 770px;
    margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
    .generator_info_text_1 {
        width: 95%;
    }
}

@media only screen and (max-width: 768px) {
    .generator_info_header_text {
        font-size: 22px;
        line-height: 27px;
    }

    .generator_info_text_1 {
        font-size: 16px;
        line-height: 19px;
    }

    .generator_info_text_2 {
        font-size: 14px;
        line-height: 17px;
    }

    .generator_info_features_text_1 {
        font-weight: 600;
        font-size: 14px;
        line-height: 20px;
    }

    .generator_info_features_text_2 {
        font-size: 14px;
        line-height: 17px;
    }

    .generator_info_footer_text {
        font-size: 14px;
        line-height: 17px;
        width: 90%;
    }

    .generator_info_features_image {
        height: 120px;
        width: 120px;
    }

    .generator_info_features_image-1 {
        height: 110px;
        width: 120px;
    }

    .generator_info_features_box {
        width: 50%;
        padding: 0 10px 30px;
    }

    .generator_info_header_icon_2,
    .generator_info_footer_icon_1,
    .generator_info_footer_icon_2 {
        visibility: hidden;
        display: none;
    }

    .generator_info_features {
        padding-bottom: 40px;
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {
    .generator_info_features_box {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .generator_info_text_1 {
        width: 100%;
    }
}

/* FAQ SECTION */
.faq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 10px;
}

.faq div {
    max-width: 1376px;
}

.faq_header {
    font-weight: bold;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    padding-bottom: 30px;
}

.faq_content {
    display: flex;
    flex-direction: column;
    padding-left: 100px;
    padding-right: 100px;
    width: 100%;
}

.faq_content_box {
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid #cecece;
    padding-top: 10px;
    padding-bottom: 10px;
}

.faq_content_header {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
}

.faq_content_header_text {
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    color: #2b2b35;
    padding-right: 25px;
}

.faq_content_header_icon {
    width: max-content;
    height: max-content;
    cursor: pointer;
    background: transparent;
    border: none;
}

.faq_content_body {
    display: none;
    visibility: hidden;
}

.faq_content_body_active {
    display: block;
    visibility: visible;
}

.faq_content_body_text {
    font-size: 18px;
    line-height: 22px;
    color: #2b2b35;
    padding-bottom: 20px;
    padding-right: 23px;
}

.faq_button {
    text-align: center;
    padding-top: 40px;
}

.faq_content_body_list_group {
    padding-left: 40px;
    padding-bottom: 15px;
}

.faq_content_body_list {
    font-size: 18px;
    line-height: 22px;
    color: #2b2b35;
    padding-bottom: 15px;
}

@media only screen and (max-width: 1024px) {
    .faq_content {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .faq {
        padding-left: 40px;
        padding-right: 40px;
    }

    .faq_header {
        font-size: 22px;
        line-height: 27px;
    }

    .faq_content_header_text {
        font-size: 18px;
        line-height: 22px;
    }

    .faq_content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .faq_content_body_text {
        font-size: 14px;
        line-height: 17px;
    }
}

/* FEATURED SECTION */

.featured_template {
    padding: 20px 0;
    max-width: 1256px;
    margin: 0 auto;
}

.featured_template_header {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    padding-bottom: 40px;
    text-align: center;
}

.featured_template_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-height: 340px;
    margin-left: 40px;
    margin-right: 40px;
}

.featured_template_link {
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    text-decoration: none;
    color: #2b2b35;
    margin: 4px 0;
    padding-right: 15px;
    width: 195px;
}

.featured_template_breaker {
    display: none;
    visibility: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section_11_breaker_desktop {
    margin-top: 25px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1024px) {
    .featured_template_list {
        max-height: 440px;
    }

    .featured_template_link {
        width: 180px;
    }
}

@media only screen and (max-width: 768px) {
    .featured_template {
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
        margin-top: 30px;
    }

    .featured_template_header {
        font-size: 22px;
        line-height: 27px;
        margin-left: 40px;
        margin-right: 40px;
        padding-bottom: 0;
    }

    .featured_template_list {
        max-height: unset;
        height: 440px;
        overflow-y: auto;
        flex-direction: row;
    }

    .featured_template_link {
        width: 50%;
    }

    .featured_template_breaker {
        display: block;
        visibility: visible;
        border: 0.5px solid #e0e0e0;
    }
}

@media only screen and (max-width: 480px) {
    .featured_template_link {
        width: 100%;
    }
}
