#home-page {

    #home-nav-link {
        color: var(--gold) !important;
    };

    #latest-homepage-hero {
        max-width: 100%;
        background-image: url(../assets/images/hero-home.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.35);
        background-blend-mode: darken;
        color: var(--white);

        .flex_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            text-align: center;

            .homepage_hero_heading {
                font-family: "Michroma";
                font-weight: 700;
                text-shadow: 0 2px 6px var(--black);
            };

            .homepage_hero_paragraph {
                font-weight: 100;
                padding-bottom: 20px;
                text-shadow: 0 2px 6px var(--black);
            };

            button:hover {
                background-color: var(--blue);       
            };

        };

    };

    #latest-who-we-are {
        max-width: 100%;
        background-color: #f4f4f4;

        .heading {
            color: var(--blue);
        };

        .flex_container {
            display: flex;
            max-width: 1200px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0 auto;
        };

        .grid_container {
            display: grid;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;

            .text_content {
                .blue_last_paragraph {
                    font-weight: 700;
                    font-size: 21px;
                    color: var(--dark-blue);
                    line-height: 25px;
                }
            }

        };
    };

    #latest-services {
        max-width: 100%;
        background-color: #dcdcdc;

        .flex_container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;

            .heading {
                color: var(--blue);
            }
        };

        .grid_container {
            display: grid;
            max-width: 1200px;
            margin: 0 auto;
            justify-items: center;

            .grid_item {

                .text_content {
                    background-color: var(--white);
                    padding: 28px;

                    .subheading {
                        font-family: 'Roboto';
                        font-size: 22px;
                    }
                }

                .image_container {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                };

                .image_container_one {
                    background-color: #003E91;
                };

                .image_container_two {
                    background-color: #0A438F;
                };

                .image_container_three {
                    background-color: #064193;
                };

                .image_container_four {
                    background-color: #00408E;
                };
            }

        };
    };

    #latest-faqs:target {
        scroll-margin-top: 100px;
    };

    #latest-faqs {
        max-width: 100%;
        background-color: var(--dark-blue);

        display: flex;
        flex-direction: column;
        align-items: center;

            .heading {
                color: var(--white);
                text-align: center;
            };

    .faq-item {
        margin: 20px 0 20px 0;
    };
    
    .expand {
        border: solid var(--white);
        display: inline-block;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        margin-left: 4px;
    };

    .item-question {
        background-color: var(--dark-blue);
        color: var(--white);
        padding: 10px;
        line-height: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        cursor: pointer;
        gap: 8px;
    };

    .item-answer {
        background-color: #fffaea;
        padding: 20px;
        color: var(--black);
        display: none;
    };

    .show-answer {
        .item-answer {
            display: block;
        }

        .expand {
            transform: rotate(-135deg);
            -webkit-transform: rotate(-135deg);
        }
    };

    };

    #latest-contact {
        max-width: 100%;
        background-image: url(../assets/images/contact-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.69);
        background-blend-mode: darken;
        background-position: center;

        .flex_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            .heading {
                text-align: center;
                color: var(--white);
            }

            .paragraph {
                max-width: 820px;
                margin: 0 auto;
                color: var(--white);
            }

            .large_bold {
                font-weight: 700;
                font-size: 21px;
                line-height: 25px;
            }
        }

    };

    #latest-members {

        background-color: var(--white);

        .heading {
            text-align: center;
        };

    };

    #latest-request-collection {
        max-width: 100%;
        background-color: #fff;

        .heading {
            color: var(--blue);
        };

        .flex_container {
            display: flex;
            max-width: 1200px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0 auto;
        };

        .grid_container {
            display: grid;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;

            .text_content {
                .blue_last_paragraph {
                    font-weight: 700;
                    font-size: 21px;
                    color: var(--dark-blue);
                    line-height: 25px;
                }
            }

        };
    };

    #latest-register {
        max-width: 100%;
        background-image: url(../assets/images/register-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-color: rgba(0, 0, 0, 0.75);
        background-blend-mode: darken;
        background-position: center;

        .flex_container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;

            .heading {
                text-align: center;
                color: var(--white);
            }

            .paragraph {
                max-width: 820px;
                margin: 0 auto;
                color: var(--white);
            }

            .large_bold {
                font-weight: 700;
                font-size: 21px;
                line-height: 25px;
            }
        }

    };


@media screen and (min-width: 320px) {

    #latest-homepage-hero {

        .flex_container {

            .homepage_hero_heading {
                font-size: 26px;
                padding-bottom: 25px;
            };

            .homepage_hero_paragraph {
                font-size: 19px;
            };

            button {
                font-size: 15px;
            };

        };

    };

    #latest-who-we-are {

            .grid_container {
                grid-template-columns: 1fr;
                gap: 25px;

                .text_content {
                    .paragraph {
                        text-align: left;
                    }
                }

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };

    #latest-request-collection {

            .grid_container {
                grid-template-columns: 1fr;
                gap: 25px;

                .text_content {
                    .paragraph {
                        text-align: left;
                    }
                }

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };

    #latest-faqs {
        .heading {
            padding-bottom: 15px;
        }

        .faq-item {
            max-width: 100%;

            .item-question {
                font-size: 14px;
            };

            .item-answer {
                font-size: 14px;
            };

            .expand {
                border-width: 0 3px 3px 0;
                padding: 5px;
            };
        };
    };

     #latest-services {

        .grid_container {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;

            .grid_item {

                .text_content {
                    background-color: var(--white);
                    width: 240px;
                    padding: 28px;
                    height: 370px;

                    .subheading {
                        font-size: 22px;
                    }
                }

                .image_container {
                    width: 240px;
                    height: 150px;

                    .image_normal {
                        height: 80px;
                    }
                };

            }

        };

    };

    #latest-contact {

        .flex_container {
            .paragraph {
                text-align: center;
            }
        };
    };

    #latest-register {

        .flex_container {
            .paragraph {
                text-align: center;
            }
        };
    };

    #latest-youtube {

        .flex_container {
            .youtube_container {
                iframe {
                    width: 100%;
                    height: auto;
                }
            }
        }
    };

};

@media screen and (min-width: 425px) {

    #latest-homepage-hero {

        .flex_container {

            .homepage_hero_heading {
                font-size: 32px;
            };

        };

    };

    #latest-services {

        .grid_container {
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 40px;

            .grid_item {

                .text_content {
                    background-color: var(--white);
                    width: 290px;
                    padding: 28px;
                    height: 330px;

                    .subheading {
                        font-size: 22px;
                    }
                }

                .image_container {
                    width: 290px;
                    height: 150px;

                    .image_normal {
                        height: 100px;
                    }
                };

            }

        };

    };

};

@media screen and (min-width: 767px) {

    #latest-homepage-hero {

        .flex_container {

            .homepage_hero_heading {
                font-size: 34px;
                padding-bottom: 35px;
            };

            .homepage_hero_paragraph {
                font-size: 20px;
            };

            button {
                font-size: 16px;
            };

        };

    };

    #latest-who-we-are {

            .grid_container {
                grid-template-columns: 720px;
                gap: 25px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };

    #latest-request-collection {

            .grid_container {
                grid-template-columns: 720px;
                gap: 25px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };


    #latest-faqs {

        .faq-item {
            .item-question {
                font-size: 16px;
            };

            .item-answer {
                font-size: 15px;
            };

        };
    }

};

@media screen and (min-width: 850px) {
    #latest-homepage-hero {
        .flex_container {
             .homepage_hero_heading {
                font-size: 38px;
                max-width: 700px;
            };
        };

    };

};

@media screen and (min-width: 958px) {
     #latest-homepage-hero {
        .flex_container {
            .homepage_hero_paragraph {
                max-width: 600px
            };
        };

    };
}

@media screen and (min-width: 1024px) {

     #latest-homepage-hero {
        height: 400px;
    };

    #latest-members {

        .heading {
            padding-bottom: 60px;
            line-height: 20px;
        };

    };

    #latest-who-we-are {

        .flex_container {
            .heading {
                line-height: 20px;
            }
        };

            .grid_container {
                grid-template-columns: 50% 450px;
                gap: 50px;

                .text_content {
                    .paragraph {
                        text-align: justify;
                    }
                }

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                        margin-top: 2px;
                    }
                };
            };
        
    };

    #latest-services {
        .flex_container {
            .heading {
                line-height: 20px;
            }
        }
    }

    #latest-request-collection {

            .grid_container {
                grid-template-columns: 50% 450px;
                gap: 50px;

                .text_content {
                    .paragraph {
                        text-align: justify;
                    }

                    .button_container {
                        text-align: left;
                    }
                }

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                        margin-top: 2px;
                    }
                };
            };
        
    };

    #latest-faqs {

        .heading {
            padding-bottom: 35px;
            line-height: 20px;
        }
        
        .faq-item {
            width: 900px;

            .item-question {
                font-size: 18px;
            };

            .item-answer {
                font-size: 16px;
            };

            .expand {
                border-width: 0 5px 5px 0;
                padding: 6px;
            };
        };
    }

     #latest-request-collection {
        .flex_container {
            .heading {
                line-height: 20px;
            };
        };
    };

    #latest-register {
        .flex_container {

            .heading {
                line-height: 20px;
            };

            .paragraph {
                text-align: justify;
            }
        };
    };

    #latest-contact {
        .flex_container {
            .heading {
                line-height: 20px;
            };

            .paragraph {
                text-align: justify;
            }
        };
    };

};

@media screen and (min-width: 1200px) {

    #latest-who-we-are {

            .grid_container {
                grid-template-columns: 50% 45%;
                gap: 60px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
    };

    #latest-faqs {
        padding-bottom: 45px;
    }

    #latest-request-collection {

            .grid_container {
                grid-template-columns: 50% 45%;
                gap: 60px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };

};

@media screen and (min-width: 1275px) {
    #latest-who-we-are {

            .grid_container {
                grid-template-columns: 50% 45%;
                gap: 60px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };

    @media screen and (min-width: 1300px) {

    #latest-homepage-hero {
        .flex_container {
            padding-top: 20px;

            .homepage_hero_heading {
                max-width: 100%;
            };
        };

    };
}

    #latest-request-collection {

            .grid_container {
                grid-template-columns: 50% 45%;
                gap: 60px;

                .image_container {
                    max-width: 100%;
                    .image_normal {
                        max-width: 100%;
                    }
                };
            };
        
    };
}

@media screen and (min-width: 1320px) {

    #latest-services {

        .grid_container {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;

            .grid_item {

                .text_content {
                    background-color: var(--white);
                    width: 280px;
                    padding: 28px;
                    height: 320px;

                    .subheading {
                        font-family: 'Roboto';
                        font-size: 22px;
                    }
                }

                .image_container {
                    width: 280px;
                    height: 150px;

                    .image_normal {
                        height: 120px;
                    }
                };

            }

        };

    };

};

@media screen and (min-width: 1600px) {

    #latest-homepage-hero {

        height: 460px;

        .flex_container {
            padding-top: 50px;

            .homepage_hero_heading {
                font-size: 44px;
            };

            .homepage_hero_paragraph {
                font-size: 22px;
                max-width: 650px;
            };

            button {
                font-size: 18px;
            };

        };

    };

};

};