/*
 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 {
    overflow-x: hidden;
}

/****************************************************************************/
/*  COLORS*/
/****************************************************************************/

:root {
    --white: #ffffff;
    --black: #000000;
    --color1: #9DA4E9;
}

/*******************************************************************************************************************/
/*  HEADER*/
/******************************************************************************************************************/

/****************************************************************************/
/*  GENERIC*/
/****************************************************************************/


/*******************************************************************************************************************/
/*  HOME*/
/******************************************************************************************************************/

/****************************************************************************/
/*  SECTION 2*/
/****************************************************************************/

.home-section2 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-section2 .inner-container .grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.home-section2 .inner-container .grid-wrapper>div {
    width: calc(50% - 50px);
}

.home-section2 .inner-container .grid-wrapper>div .prefix {
    color: var(--color1);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.home-section2 .inner-container .grid-wrapper>div h2 {
    color: var(--black);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-section2 .inner-container .grid-wrapper>div h3 {
    color: var(--black);
    font-size: 22px;
    font-weight: 400;
}

.home-section2 .inner-container .grid-wrapper>div .gb-button {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color .4s ease-in-out;
    -webkit-transition: background-color .4s ease-in-out;
    -moz-transition: background-color .4s ease-in-out;
    -ms-transition: background-color .4s ease-in-out;
    -o-transition: background-color .4s ease-in-out;
}

.home-section2 .inner-container .grid-wrapper>div .gb-button:hover {
    background-color: var(--color1);
}


/****************************************************************************/
/*  SECTION 3*/
/****************************************************************************/

.home-section3 {
    background-color: var(--color1);
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-section3 .inner-container .prefix {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.home-section3 .inner-container h2 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}

/****************************************************************************/
/*  SECTION 4*/
/****************************************************************************/

.home-section4 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-section4 .inner-container .grid-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.home-section4 .inner-container .grid-wrapper>div {
    width: calc(50% - 50px);
}

.home-section4 .inner-container .grid-wrapper>div .prefix {
    color: var(--color1);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.home-section4 .inner-container .grid-wrapper>div h2 {
    color: var(--black);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}


/*******************************************************************************************************************/
/*  FOOTER*/
/******************************************************************************************************************/

/****************************************************************************/
/*  GENERIC*/
/****************************************************************************/

.site-footer .footer-widgets {
    background-color: var(--color1);
}

.site-footer .footer-widgets h2 {
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
}

.site-footer .footer-widgets h2:after {
    border-bottom: 1px solid var(--white);
    content: '';
    display: block;
    margin-top: 10px;
    width: 100%;
}

/****************************************************************************/
/*  COLUMNS*/
/****************************************************************************/

.site-footer .foot-col3 .wp-block-social-links li svg {
    font-size: 30px;
}

.site-footer .foot-col3 .wp-block-social-links li svg path {
    fill: var(--white);
}

/****************************************************************************/
/*  COPYRIGHT*/
/****************************************************************************/

.site-info {
    background-color: var(--color1);
}

.site-info .inside-site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
    }
}