/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/***********************************************************************************************************************************************/
/********************A wizard is never late, Frodo Baggins. Nor is he early. He arrives precisely when he means*********************************/
/***********************************************************************************************************************************************/


/*******************************************************************************************************************/
/*				  													                                       GENERIC*/
/******************************************************************************************************************/

body {
    background-image: url('/wp-content/uploads/2026/01/home-section1-bg.jpg');
    overflow-x: hidden;
}

.inside-article {
    background-color: transparent !important;
}

/****************************************************************************/
/*				  								                      COLORS*/
/****************************************************************************/

:root {
    --white: #ffffff;
    --black: #000000;
}


/*******************************************************************************************************************/
/*				  													                                        HEADER*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                     GENERIC*/
/****************************************************************************/

.site-header {
    display: none;
}

/*******************************************************************************************************************/
/*				  													                                          HOME*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                   SECTION 1*/
/****************************************************************************/

.home-section1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.home-section1 .inner-container h2 {
    color: var(--white);
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.home-section1 .inner-container h3 {
    color: var(--white);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.home-section1 .inner-container .grid-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 150px;
}

.home-section1 .inner-container .grid-wrapper>div {
    position: relative;
    width: calc(50% - 50px);
}

.home-section1 .inner-container .grid-wrapper>div:first-child:after {
    border-left: 1px solid var(--white);
    content: '';
    display: block;
    position: absolute;
    right: -50px;
    top: 0;
    height: 200px;
}

.home-section1 .inner-container .grid-wrapper>div h4 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.home-section1 .inner-container .grid-wrapper>div h4:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    content: '';
    display: block;
    margin-top: 10px;
    width: 100%;
}

.home-section1 .inner-container .grid-wrapper>div p,
.home-section1 .inner-container .grid-wrapper>div ul li,
.home-section1 .inner-container .grid-wrapper>div ol li {
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/************************************************************/
/*RESPONSIVE*/
/************************************************************/
@media(max-width: 1680px) {}

@media(max-width: 1440px) {}

@media(max-width: 1366px) {}

@media(max-width: 1280px) {}

@media(max-width: 1024px) {
    .home-section1 .inner-container {
        max-width: 900px;
    }
}

@media(max-width: 912px) {
    .home-section1 .inner-container {
        max-width: 800px;
    }
}

@media(max-width: 820px) {
    .home-section1 .inner-container {
        max-width: 700px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 480px) {
    .home-section1 {
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
    }

    .home-section1 .inner-container {
        max-width: 350px;
    }

    .home-section1 .inner-container h2 {
        font-size: 36px;
    }

    .home-section1 .inner-container .grid-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .home-section1 .inner-container .grid-wrapper>div {
        width: calc(100% - 0px);
    }

    .home-section1 .inner-container .grid-wrapper>div:first-child:after {
        display: none;
    }
}

@media(max-width: 394px) and (min-width: 360px) {
    .home-section1 .inner-container {
        max-width: 300px;
    }
}

/*******************************************************************************************************************/
/*				  													                                        FOOTER*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                     GENERIC*/
/****************************************************************************/

/****************************************************************************/
/*				  								                   COPYRIGHT*/
/****************************************************************************/

.site-info {
    background-color: transparent
}

.copyright-bar {
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.copyright-bar a {
    display: flex;
    align-items: center;
}

@media(max-width: 912px) {
    .copyright-bar {
        flex-direction: column;
    }
}