body {
    background-image: url(img/nybg.webp);
    background-position: bottom left;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Roboto Condensed', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: 'Oswald', "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.7rem;
    font-family: 'Oswald', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    text-transform: uppercase;
}

.nav-link {
    text-transform: uppercase;
    font-family: 'Roboto Condensed', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 20px;
    color: #D6DDE9;
}

.sh1 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.sh2 {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
}

.sh3 {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19) !important;
}

.sh4 {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21) !important;
}

.sh5 {
    box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22) !important;
}

/* XL Desktops */
@media only screen and (min-width : 1200px) {
}

/* LG Desktops */
@media only screen and (max-width : 1200px) {
}

/* MD Tablets */
@media only screen and (max-width : 992px) {
}

/* XS Landscape phones Phones */
@media only screen and (max-width : 768px) {
    .takbg h2 {
        font-size: 24px;
    }
}

/* XS Portrait Phones */
@media only screen and (max-width : 544px) {
}

.bg-primary {
    background-color: #206391 !important;
}

.text-primary {
    color: #206391 !important;
}

.con-pad {
    background: rgba(255,255,255,0.75);
}

.top-col {
    margin-bottom: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.bottom-col {
    margin-top: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.top-col p,
.bottom-col p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.text-block {
    padding: 20px;
}

.text-block h2 {
    font-size: 26px;
}

footer {
    background-color: #206391 !important;
    padding-top: 20px;
    padding-bottom: 10px;
    color: #fff !important;
    text-align: center;
    margin-top: 75px;
}

footer h4 {
    font-size: 20px;
    font-family: 'Roboto Condensed', "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.btn-primary {
    color: #D6DDE9;
    background-color: #206391;
    border-color: #206391;
}

.btn-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #fff;
}

.sh2-hover:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    border: 1px solid transparent;
    padding: 10px 15px;
    font-size: 18px;
    line-height: 1;
    border-radius: 7px;
    font-family: 'Oswald', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    text-transform: uppercase;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* *********************************
          Transitions
  ********************************** */
.animate-reveal {
    opacity: 0;
    -webkit-animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
    -moz-animation: reveal 1s ease-in 1 normal forwards;
    -o-animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
    animation: reveal 1s cubic-bezier(0, 1, 0.5, 1) 1 normal forwards;
}

.animate-first {
    -webkit-animation-delay: 0;
    -moz-animation-delay: 0;
    -o-animation-delay: 0;
    animation-delay: 0;
}

.animate-second {
    -webkit-animation-delay: 500ms;
    -moz-animation-delay: 500ms;
    -o-animation-delay: 500ms;
    animation-delay: 500ms;
}

.animate-third {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes reveal{
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes reveal{
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes reveal{
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes reveal{
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.active {
    color: #fff!important;
}

a:link,
a:visited,
a:hover {
    color: inherit;
}

.google {
    border: none;
    width: 100%;
    height: 1300px;
}

.takbg {
    width: 100%;
    min-height: 300px;
    background-image: url(img/papptak-goteborg.webp);
    background-size: cover;
    text-align: center;
    padding-top: 60px;
}

.takbg h2 {
    color: #fff;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
    padding-left: 20px;
    padding-right: 20px;
}

.text-muted {
    color: #D6DDE9 !important;
}