@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Varela+Round&family=Bree+Serif&display=swap');

* {
    margin: 0;
    padding: 0;
    border: none;
}

body {
    font-family: 'Varela Round', sans-serif;
    font-size: 110%;
}

body p {
    font-size: 110%;
}

h1, h2 {
    font-family: 'Bree Serif', sans-serif;
    letter-spacing: 2px;
    font-size: 250%;
}

hr {
    margin: 20px 0;
}

.section-heading {
    text-align: left;
    margin-left: 10%;
    margin-bottom: 50px;
    clear: both;
}

/* logo and navigation bar */
header {
    height: 75px;
    width: 100%;
    background-color: #112378;
    position: fixed;
    top: 0;
    z-index: 2;
}

#logo {
    font-family: 'Lilita One';
    font-size: 250%;
    color: #fffff0;
    float: left;
    margin-left: 5%;
    line-height: 75px;
}

#nav-bar {
    font-size: 150%;
    float: right;
    line-height: 75px;
    margin-right: 5%;
}

#nav-bar li {
    display: inline;
    list-style-type: none;
    margin-right: 50px;
}

#nav-bar a {
    text-decoration: none;
    font-weight: bolder;
    color: #fffff0;
}

#nav-bar-signup-btn {
    border: solid #fffff0;
    border-radius: 25px;
    padding: 10px;
}

/* hero images*/
#hero-outer {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden;
    margin-top: 75px;
}

#hero-text {
    height: 300px;
    width: 400px;
    float: left;
    margin-left: 10%;
    position: absolute;
    top: 30%;
    transform: translateY(-30%);
}

#hero-text a {
    text-decoration: none;
    font-size: 110%;
}

#hero-btn {
    width: 200px;
    height: auto;
    color: #fffff0;
    text-align: center;
    font-weight: bolder;
    border: solid #112378;
    border-radius: 25px;
    background-color: #112378;
    padding: 10px;
}

#hero-image {
    height: 600px;
    width: 50%;
    background: url('../images/hero-image.jpg') no-repeat center center;
    background-size: contain;
    overflow: hidden;
    float: right;
    margin-right: 10%;
    position: absolute;
    top: 30%;
    transform: translate(85%, -30%);
}

/* feature section */
#feature-outer {
    width: 100%;
    height: auto;
}

.feature-left {
    width: 40%;
    height: 50%;
    float: left;
    clear: left;
    margin-left: 10%;
}

.feature-right {
    width: 40%;
    height: 50%;
    float: right;
    clear: right;
    margin-right: 10%;
}

#feature-outer img {
    max-width: 80%;
}

.feature-left-heading,
.feature-right-heading {
    max-width: 80%;
    margin-left: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.feature-left h2, 
.feature-right h2 {
    font-size: 200%;
}

/* comments section */
#slideshow {
    position: relative;
    width: 100%;
    height: auto;
    clear: both;
}

/*
#slideshow::-webkit-scrollbar {
    display: none;
}
*/

#slideshow_viewport {
    list-style: none;
    height: 600px;
    margin: 0 auto;
    width: 70%;
    display: flex;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

#slideshow_viewport:hover {
    overflow-y: auto;
}

.slideshow_slide {
    list-style: none;
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: fit-content;
}

.slideshow_slide:nth-child(even) {
    background-color: #99f;
}

#slideshow_navigation {
    width: 70%;
    margin: 0 auto;
    text-align: center;
}

#slideshow_navigation-list,
.slideshow_navigation-item {
    display: inline-block;
    margin: 0 auto;
}

.slideshow_navigation-button {
    position: relative;
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #333;
    background-clip: content-box;
    border: 0.25rem solid transparent;
    border-radius: 50%;
    font-size: 0;
    transition: transform 0.1s;
}

.slideshow_container {
    width: 250px;
    height: 250px;
    padding: 50px;
    border-style: solid;
    border-color: #ccc;
    border-width: 1px;
    border-radius: 50%;
    margin: 10px auto;
}

#container-1 {
    background: url('../images/christian.png') no-repeat center center;
    height: 100%;
    background-size: cover;
    border-radius: 50%;
}

#container-2 {
    background: url('../images/erika.png') no-repeat center center;
    height: 100%;
    background-size: cover;
    border-radius: 50%;
}

#container-3 {
    background: url('../images/paul.png') no-repeat center center;
    height: 100%;
    background-size: cover;
    border-radius: 50%;
}

#container-4 {
    background: url('../images/lucia.png') no-repeat center center;
    height: 100%;
    background-size: cover;
    border-radius: 50%;
}

.slideshow_paragraph {
    width: 60%;
    margin: 0 auto;
}

.slideshow::before,
.slideshow::after,
.slideshow_prev,
.slideshow_next {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  background-color: #333;
}

.slideshow::before,
.slideshow_prev {
    top: 50%;
    left: 1rem;
    background: url('../images/angle-left-solid.svg') no-repeat center center;
}

.slideshow::after,
.slideshow_next {
    top: 50%;
    right: 1rem;
    background: url('../images/angle-right-solid.svg') no-repeat center center;
}

/* video */
#video_outer {
    width: 100%;
    height: auto;
    text-align: center;
}

#iframe {
    border-radius: 20px;
    width: 900px;
    height: 506px;
}

/* footer */
footer {
    height: 245px;
    background-color: #112378;
    margin-top: 75px;
}

#logo_footer {
    font-family: 'Lilita One';
    font-size: 250%;
    color: #FFFFF0;
    text-align: center;
    line-height: 75px;
}

footer a {
    text-decoration: none;
    font-size: 110%;
}

#footer-btn {
    width: 100px;
    height: auto;
    color: #112378;
    text-align: center;
    font-weight: bolder;
    border: solid #FFFFF0;
    border-radius: 25px;
    background-color: #FFFFF0;
    margin: 0 auto;
    padding: 10px;
}

.social-networks {
    text-align: center;
}

.social-networks li {
    display: inline;
}

.social-networks i {
    font-size: 160%;
    margin: 0 auto;
    padding: 40px;
    color: #FFFFF0;
}

/* For larger to medium screens size from 1350px wide and down */
@media screen and (max-width: 1350px) {
    #hero-text {
        margin-left: 5%;
    }

    #hero-image {
        margin-right: 5%;
    }
}

@media screen and (max-width: 1200px) {
    body p {
        font-size: 100%;
    }
    
    h1, h2 {
        font-size: 200%;
    }

    #logo {
        font-size: 200%;
    }

    #nav-bar {
        font-size: 100%;
        float: right;
        line-height: 75px;
        margin-right: 5%;
    }

    #hero-outer {
        height: 500px;
    }

    #hero-text {
        top: 35%;
    }

    #hero-image {
        top: 20%;
        margin-right: 5%;
    }

    #hero-text a {
        font-size: 100%;
    }

    .feature-left h2,
    .feature-right h2 {
        font-size: 150%;
    }

    #iframe {
        width: 630px;
        height: 354px;
    }

    #logo_footer {
        font-size: 200%;
    }
    
    footer a {
        font-size: 110%;
    }
}

@media screen and (max-width: 950px) {
    .section-heading {
        text-align: center;
        margin-left: 0;
        width: 90%;
    }

    #nav-bar {
        width: 100%;
        clear: left;
        float: left;
        line-height: 75px;
        padding-left: 5%;
        background-color: #fffff0;
    }

    #nav-bar a {
        color: #112378;
    }

    #nav-bar-signup-btn {
        border: solid #112378;
    }

    #hero-outer {
        height: 800px;
    }
    
    #hero-text {
        top: 20%;
        left: 50%;
        transform: translate(-50%, -20%);
        clear: left;
        z-index: 1;
    }

    #hero-image {
        width: 600px;
        top: 300px;
        left: 50%;
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width: 850px) {
    #iframe {
        width: 504px;
        height: 304px;
    }
}

@media screen and (max-width: 550px) {
    header a {
        text-decoration: none;
    }

    #logo {
        float: none;
        text-align: center;
        margin-left: 0;
    }

    #nav-bar {
        font-size: 100%;
        float: none;
        text-align: center;
        line-height: 50px;
        padding-left: 0;
    }
    
    #nav-bar li {
        display: inline;
        list-style-type: none;
        margin-right: 10px;
    }

    #nav-bar-signup-btn {
        border: none;
    }

    #hero-outer {
        height: 800px;
    }
    
    #hero-text {
        width: 80%;
    }

    #hero-image {
        width: 100%;
    }

    .feature-left {
        width: 80%;
        height: 50%;
        float: none;
        margin: 0 auto;
        text-align: center;
    }
    
    .feature-right {
        width: 80%;
        height: 50%;
        float: none;
        margin: 0 auto;
        text-align: center;
    }

    #iframe {
        width: 300px;
        height: 168px;
    }

    .slideshow_container {
        width: 125px;
        height: 125px;
    }

    .slideshow_paragraph {
        width: 100%;
    }

    .slideshow::before, .slideshow_prev {
        top: 45%;
        left: -0.8rem;
        transform: translateY(-110%);
    }

    .slideshow::after, .slideshow_next {
        top: 45%;
        right: -0.8rem;
        transform: translateY(-110%);
    }

    footer {
        height: 200px;
    }

    footer a {
        font-size: 100%;
    }

    .social-networks i {
        font-size: 120%;
        padding: 20px;
    }
}