
html {
    background: url(../img/bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-size: 100%;
    background-position-y: top;
}

body {
    /*background-image: url(bg.jpg);*/
    /*  background-size: cover;
      background-position: center;
      margin: auto;
      background-repeat: no-repeat;
      background-position-y: top;*/
    font-family: 'Catamaran', sans-serif;
}

strong {
    font-weight: 700;
}

h1 {
    font-weight: 700;
    color: #7b2ab9;
    font-size: 28px;
    padding-bottom: 25px;
}

h2 {
    font-size: 24px;
    font-weight: 700;
    color: #555555;
    line-height: 1.5;
}

/*.backgroundPhoto img {

  position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    overflow: auto;
}*/

p {
    font-size: 18px;
    font-weight: 400;
    color: #2e2e2e;
    line-height: 1.3;
}

.all-buttons {
    margin: 25px 0 20px 0;
    background-color: #9ad27d;
    border-radius: 50px;
    padding: 10px 35px;
    font-size: 18px;
    color: #7b2ab9;
    font-family: inherit;
    font-weight: 700;
    border-width: 0px;
}

.mobButton {
    display: none;
}

button:hover {
    background-color: #7b2ab9;
    -webkit-transition: 0.5s; /* Safari */
    transition: 0.5s;
    color: #ffffff;
}

button:focus {
    outline-color: #7b2ab9;
}

.menuBar {
    width: 100%;
    height: auto;
    padding: 10px;
    background-color: #9ad27d;
}

.menuBar a {
    text-decoration: none;
}

.menuBar a:hover {
    color: #7b2ab9;
    transition: 0.5s;
}

.socialIcons {
    float: right;
    font-size: 25px;
    position: relative;
    bottom: 4px;
}

/*.socialIcons img {

      width: 50px;
    position: relative;
    bottom: 2px;
}*/

.innerMenu {
    max-width: 1000px;
    margin: 0 auto !important;
}

.innerMenu a {
    padding: 5px 10px 5px 0;
    color: white;
}


.contentStrap {
    width: 100%;
    background-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255, 0.9);
    position: absolute;
    top: 55%;
    padding: 40px 0 40px 0;
}

.innerContent {
    max-width: 1000px;
    margin: 0 auto !important;
    padding: 0 20px 0 20px;
}

.innerContent a {
    font-weight: 700;
}

.innerContent a:hover {
    color: #9ad27d;
    transition: 0.5s;
}

.logos {
    float: right;
    position: relative;
    top: 25px;
}

.logos img {
    padding: 5px;
    width: 100px;
}

@media screen and (max-width: 1024px) {
    html {
        background: url(../img/bgmob.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position-y: top;
    }

    .contentStrap {
        width: 100%;
        background-color: rgb(255, 255, 255, 0.8);
        position: absolute;
        top: 45%;
        padding: 40px 0 40px 0;
    }
}

@media screen and (max-width: 455px) {
    html {
        background: url(../img/bgsmall.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        background-position-y: top;
    }

    .contentStrap {
        width: 100%;
        background-color: rgb(255, 255, 255, 0.8);
        position: absolute;
        top: 30%;
        padding: 40px 0 40px 0;
    }

    .logos {
        float: none;
        text-align: center;
    }

    .all-buttons {
        margin: 25px 0 20px 0;
        background-color: #9ad27d;
        border-radius: 50px;
        padding: 10px 35px;
        font-size: 15px;
        color: #7b2ab9;
        font-family: inherit;
        font-weight: 700;
        border-width: 0px;
        width: 100%
    }

    .mobButton {
        display: inline-block;
    }

    .largeButton {
        display: none;
    }
}

