@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');

/*Font CSS required - font-family: 'Roboto', monospace; & font-family: 'Poppins', sans-serif;*/
/*MAIN SITE*/
/*Website defaults changed*/
* {
    font-size: 10px;
    font-family: 'Roboto', monospace;
}

/*Heading and Paragraph font sizes*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.5rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.5rem;    
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    font-size: 1.6rem;
}

.small-text {
    font-size: 1.3rem;
    color: black;
    text-align: center;
}

li {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: .5rem;
}

/*BUTTONS*/
.btn {
    /*influenced by Bootstrap*/
    background-color: #f2e86d;
    border: 2px solid #1446a0;
    border-radius: 2rem;
    color: #1446a0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    margin-top: .5rem;
}

.btn-reset {
    background-color: #1446a0;
    border: 2px solid #f2e86d;
    border-radius: 2rem;
    color: #f2e86d;
    margin-bottom: 1rem;
    text-align: center;
}

.btn-submit {
    background-color: #f2e86d;
    border: 2px solid #1446a0;
    border-radius: 2rem;
    color: #1446a0;
    margin-bottom: 1rem;
    text-align: center;
}

/*SPECIAL INFORMATION*/
.special-information {
    background-color: aqua;
    margin: 0;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0;
}

/* NAVIGATION */
.navbar-toggler-icon {
    /* From Bootstrap*/
    display: inline-block;
    width: 5em;
    height: 5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat;
}

.nav-centre {
    text-align: center;
    vertical-align: middle;
}

.happy-hands {
    height: 4rem;
    width: 6rem;
    font-size: 6rem;
    margin-top: 0;
    text-align: center;
}

nav img {
    font-size: 6rem;
}

.nav-link {
    font-size: 2rem;
}

.nav-item {
    margin-right: .25rem;
    margin-left: .25rem;
}

/*HEADING SECTION*/
/*hero-image section CSS for image and strapline*/

.hero-image {
    background: url(../images/logos-images/happy-hands.jpg) no-repeat center center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.40)),
        url(../images/logos-images/happy-hands.jpg);
    /*background-image influenced by css-tricks.com*/
    background-size: cover;
    height: 36rem;
    width: 100%;
    position: relative;
}

.strapline {
    color: #f2e86d;
    text-align: center;
    position: absolute;
    border: 1rem;
    height: 36rem;
    width: 100%;
}

.strapline h1 {
    padding-top: 6rem;
    font-size: 5rem;
    height: 12rem;
}

.strapline h2 {
    padding-top: 10rem;
    font-size: 3rem;
    height: 12rem;
}

/*BODY SECTION*/
/*subheading images and content*/
.container {
    background-color: #CCFBFE;
    padding-right: 10px;
    padding-left: 10px;
    border: 1px solid #f2e86d;
    position: relative;
}

.subheading-image {
    width: 100%;
    margin-bottom: 1rem;
}

.subheading-text {
    text-align: center;
    vertical-align: middle;
    font-weight: 800;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.highlight-box {
    background-color: #f2e86d;
    border: 2px solid #1446a0;
}

.review-highlight-box {
    background-color: #f2e86d;
    border: 2px solid #1446a0;
    padding: 1rem;
    margin: 1rem;
}

.link-text {
    color: black;
    text-align: center;
}

/* VIDEOS */
.video {
    /* Credit - https://stackoverflow.com/a/54924505 */
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yellow {
    color: #f2e86d;
    text-align: center;
    vertical-align: middle;
}

/*FOOTER*/

.container .footer-background {
    background-color: rgba(0, 78, 255, 0.5)
}

.float {
    float: right;
    line-height: 0;
}

i {
    vertical-align: middle;
    padding-top: 1rem;
}

.copyright {
    padding-top: .5rem;
    font-size: 1.6rem;
}

.contact-text {
    font-size: 1.6rem;
    color: #f2e86d;
    text-align: center;
}