/* General */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Verdana', 'Sans-serif';
    /* color: rgb(34, 34, 34); */
    color: rgb(248, 248, 248);
    background-color: black;
}

h1, h2, h3 {
    text-align: center;
    padding-top: 50px;
}

p {
    /* text-align: justify; */
    line-height: 200%;
}

a {
    color: inherit; 
    text-decoration: inherit; 
}

h1 {
    font-size: 50px;
    font-weight: 600;
}

h2 {
    font-size: 25px;
    font-weight: 600;
}

h3 {
    color: #02637b;
    font-size: 25px;
    font-weight: 600;
    text-align: left;
}

img {
    vertical-align: middle;
}

ul {
    text-align: left;
    line-height: 200%; 
    list-style: none;
}
ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #02637b; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 2em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

.brandColor {
    color: rgb(22, 142, 206);
    /* color: rgb(34, 34, 34); */
    /* color: rgb(248, 248, 248); */

}

p.normal {
    /* text-align: justify; */
    line-height: 100%;
}

.text {
    font-size: 12px;
    font-weight: 100;
    color: rgb(34, 34, 34);
}

/* Parralax */
.pictureBreak1, .pictureBreak2, .pictureBreak3, .pictureBreak4 {
    position: relative;
    opacity: 0.55;
    background-attachment: fixed; 
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

.home {
    position: relative;
    min-height: 100%;
}
.home::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/wheels.jpg");
    filter: grayscale(100%);
    background-position: 40% top;
    opacity: .8;
    background-attachment: fixed; 
    background-repeat: no-repeat;
    background-size: cover;
}
.homeContent {
    position: relative;
    opacity: 1;
}

.whatWeDo {
    background-color: rgb(43, 42, 42);
    text-align: center;
    padding: 20px;
}
.accredit {
    background-color: rgb(43, 42, 42);
    text-align: center;
    padding: 20px;
}
.servicingsales {
    background-color: rgb(43, 42, 42);
    text-align: left;
    padding: 20px;
}
.socialMedia {
    background-color: rgb(43, 42, 42);
    text-align: left;
    padding: 20px;
}
.contact {
    background-color: rgb(43, 42, 42);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.getInTouch {  
    border: 1px solid rgb(248, 248, 248);
    border-radius: 10px;
    padding: 20px;  
    max-width: 400px;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background-color: rgb(43, 43, 43);
    color:rgb(22, 142, 206);
}

.map {
}

.pictureBreak1 {
    background-image: url("images/bikeoranges.jpg");
}

.pictureBreak2 {
    background-image: url("images/bikepurples.jpg");
}

.pictureBreak3 {
    background-image: url("images/bikesunsets.jpg");
}

.pictureBreak4 {
    background-image: url("images/rearhubs.jpg");
}

/* Look */
.homePadFadeIn {
    padding-right: 20px;
}

.noTopMargin {
    margin-top: 0px;
}

.smallMargin {
    margin: 10px;
}

.medium {
    font-size: 25px;
    font-weight: 400;
    display: block;
}
.big {
    font-size: 40px;
    font-weight: 600;
}
.biggest {
    font-size: 80px;
    font-weight: 1200;
    color:rgb(12, 72, 104);
    text-shadow: 4px 4px 5px black;
}
.paddingMedium {
    padding: 20px 0px 20px 0px;
}
.paddingSmall {
    padding: 10px 0px 10px 0px;
}
.clearerBackground {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    padding: 0px;
    border-radius: 5px;
    /* border: 1px solid rgb(248, 248, 248); */
}
.shadow {
    text-shadow: 2px 2px 5px rgb(34, 34, 34);
}
.outline {
    color: rgb(34, 34, 34);
    text-shadow: -1px 0 rgb(34, 34, 34), 0 1px rgb(34, 34, 34), 1px 0 rgb(34, 34, 34), 0 -1px rgb(34, 34, 34);
}

.button {
    width: 120px;
    border: 2px solid white;
    border-radius: 5px 5px 5px 5px;
    cursor: pointer;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px) invert(100%);
    -webkit-backdrop-filter: blur(10px) invert(100%);
    align-self: flex-start;
}
    
  /* On hover, add a black background color with a little bit see-through */
.button:hover {
    background-color: rgba(0,0,0,0.8);
}

.logo {
    background-image: url("images/logoLarge.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100px;
    height: 60px;
    background-color: whitesmoke; 
    border: 1px black solid;
    border-radius: 6px;
}


/* Layout */

.gridColumns {
    display: grid;
    justify-content: center;
    justify-items: start;
    align-content: start;
    grid-template-columns: repeat(auto-fit, minmax(100px, 400px));
    grid-gap: 10px;
}

.gridRows {
    display: grid;
    grid-template-rows: auto;
    grid-gap: 10px;
    align-items: center;
}

.flexHome {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flexColumns {
    display: flex;
    flex-direction: column;
}

.flexRows {
    display: flex;
    flex-direction: row;
}

.imgBig {
    display: block;
}

.imgSmall {
    display: none;
}

.homePageAnim1 {
    position:relative;
    left: -10px;
    -webkit-animation: moveRightFadeIn 2s ease-in-out 0.5s 1;
    -webkit-animation-fill-mode: both;
    animation: moveRightFadeIn 2s ease-in-out 0.5s 1;
    animation-fill-mode: both;
}
.homePageAnim2 {
    position:relative;
    left: -10px;
    -webkit-animation: moveRightFadeIn 2s ease-in-out 1.5s 1;
    -webkit-animation-fill-mode: both;
    animation: moveRightFadeIn 2s ease-in-out 1.5s 1;
    animation-fill-mode: both;
}
.homePageAnim3 {
    position:relative;
    left: -10px;
    -webkit-animation: moveRightFadeIn 2s ease-in-out 2.5s 1;
    -webkit-animation-fill-mode: both;
    animation: moveRightFadeIn 2s ease-in-out 2.5s 1;
    animation-fill-mode: both;
}
.homePageAnim4 {
    -webkit-animation: fadeIn 1s ease-in-out 0s 1;
    -webkit-animation-fill-mode: both;
    animation: fadeIn 1s ease-in-out 0s 1;
    animation-fill-mode: both;
}
.homePageAnim5 {
    -webkit-animation: fadeIn 0.5s ease-in-out 5s 1;
    -webkit-animation-fill-mode: both;
    animation: fadeIn 0.5s ease-in-out 5s 1;
    animation-fill-mode: both;
}
@keyframes moveRightFadeIn {
    from {transform: translateX(0px); opacity: .0;}
    to {transform: translateX(20px); opacity: 1;}
}
@keyframes fadeIn {
    from {opacity: .0;}
    to {opacity: 1;}
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.iframeSize {
    width: 90%;
    height: 400px;
    margin: 0 auto;
    display: block;
}

.centerToggle {
    justify-content: flex-start;
    justify-items: left;
    text-align: left;
}

@media only screen and (max-width: 599px) {

    .centerToggle {
        justify-content: center;
        justify-items: center;
        text-align: center;
    }
    .button {
        align-self: center;
    }

    .logo {
        background-image: url("images/logoSmall.png");
        top: 5px;
        left: 5px;
        width: 40px;
        height: 40px;
        }
    .big {
        font-size: 30px;
        font-weight: 600;
    }
    .biggest {
        font-size: 40px;
        font-weight: 800;
    }
    .medium {
        font-size: 20px;
        font-weight: 400;
        display: block;
    }
    h1, h2, h3 {
        padding-top: 30px;
    }
    
    h2 {
        font-size: 25px;
        font-weight: 600;
    }
    h3 {
        font-size: 25px;
        font-weight: 600;
    }
    .paddingMedium {
        padding: 10px 0px 10px 0px;
    }
    .paddingSmall {
        padding: 5px 0px 5px 0px;
    }                    
        
    .imgBig {
        display: none;
    }
    .imgSmall {
        display: block;
    }
    .flexHome {
        flex-direction: column-reverse;
    }
    .getInTouch {  
        max-width: 250px;
    }
                    
}
