/*
 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: #25327e;
    --color3: #f3f3f3;
}

/*******************************************************************************************************************/
/*				  													                                        HEADER*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                     TOP BAR*/
/****************************************************************************/

.top-bar {
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.top-bar .inside-top-bar {
    gap: 20px;
    padding: 10px 0px;
}

.top-bar-align-right .widget:first-child {
    margin-left: 0px;
}

.top-bar-align-right .widget:nth-child(2n) {
    order: unset;
    /* margin-left: auto; */
}

.top-bar-align-right .widget:last-child {
    margin-left: auto;
}

.top-bar h6 {
    color: var(--black);
    font-size: 16px;
    margin-bottom: 0px;
}

.top-bar h6 a {
    color: var(--black);
    text-decoration: none;
    transition: color .4s ease-in-out;
    -webkit-transition: color .4s ease-in-out;
    -moz-transition: color .4s ease-in-out;
    -ms-transition: color .4s ease-in-out;
    -o-transition: color .4s ease-in-out;
}

.top-bar h6 a:hover {
    color: var(--color1);
}

.top-bar .wp-block-social-links {
    margin-bottom: 0px;
}

.top-bar .wp-block-social-links li {
    background-color: var(--color3);
}

.top-bar .wp-block-social-links li svg path {
    fill: var(--color1);
}

.top-bar .wp-block-social-links li .wp-block-social-link-label {
    color: var(--color1);
}

/************************************************************/
/*RESPONSIVE*/
/************************************************************/
@media(max-width: 1680px) {}

@media(max-width: 1440px) {}

@media(max-width: 1366px) {}

@media(max-width: 1280px) {}

@media(max-width: 1024px) {
    .top-bar .inside-top-bar {
        max-width: 900px;
    }
}

@media(max-width: 912px) {
    .top-bar .inside-top-bar {
        max-width: 800px;
    }
}

@media(max-width: 820px) {
    .top-bar .inside-top-bar {
        max-width: 700px;
    }
}

@media(max-width: 768px) {}

@media(max-width: 480px) {
    .top-bar {
        display: none;
    }
}

@media(max-width: 394px) and (min-width: 360px) {}

/****************************************************************************/
/*				  								                     GENERIC*/
/****************************************************************************/

.site-header .inside-header {
    padding: 20px 0px;
}

.site-header .inside-header .site-logo {
    margin-left: auto;
    margin-right: auto;
}

/****************************************************************************/
/*				  							   NAVIGATION AREA | LOGO | MENU*/
/****************************************************************************/

.before-logo-elements {
    text-decoration: none;
}

.before-logo-elements h4 {
    background-color: var(--color1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    padding: 10px 20px;
    margin-bottom: 0px;
    text-align: center;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.before-logo-elements h4:hover {
    background-color: var(--color3);
    color: var(--color1);
}

.after-logo-elements {
    text-decoration: none;
}

.after-logo-elements h4 {
    color: var(--color1);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
}

.after-logo-elements p {
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
}

.main-navigation {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.2);
}

.main-navigation .inside-navigation {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 1300px;
}

#primary-menu {
    margin-left: auto;
    margin-right: auto;
}

/*******************************************************************************************************************/
/*				  													                                          HOME*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                   SECTION 1*/
/****************************************************************************/

.home-section1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.home-section1 .inner-container {
    width: 100%;
}

.home-section1 .inner-container h2 {
    color: var(--color1);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-section1 .inner-container h3 {
    color: var(--black);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.home-section1 .inner-container p {
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    max-width: 550px
}

.home-section1 .inner-container .gb-button {
    background-color: var(--color1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.home-section1 .inner-container .gb-button:hover {
    background-color: var(--color3);
    color: var(--color1);
}

/****************************************************************************/
/*				  								                   SECTION 2*/
/****************************************************************************/

.home-section2 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-section2 .inner-container .wp-block-gallery {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0px !important;
}

.home-section2 .inner-container .wp-block-gallery>figure {
    width: calc(16.666% - 0px) !important;
}

/* .home-section2 .inner-container .wp-block-gallery img {
    height: 111px !important;
    width: 284px !important;
} */

/*******************************************************************************************************************/
/*				  													                                       CONTACT*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                   SECTION 1*/
/****************************************************************************/

/*******************************************************************************************************************/
/*				  													                                        FOOTER*/
/******************************************************************************************************************/

/****************************************************************************/
/*				  								                     GENERIC*/
/****************************************************************************/

/****************************************************************************/
/*				  								                   COPYRIGHT*/
/****************************************************************************/

.site-info {
    background-color: var(--color2);
    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;
    }
}