/* Basic Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

p {
    line-height: 2;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    margin-bottom: 60px;
    background-color: #121212;
    color: #E0E0E0;
}

main {
    margin-top: 125px;
}

h2 {
    margin-bottom: 25px;
}

/* Fonts and text */

.headline {
    font-family: "League Spartan", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0px;
    text-align: center;
}

.sub-headline {
    font-family: "Quattrocento", serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.sub-headline-type-2 {
    text-align: center;
    line-height: 1.4;
}

body {
    font-family: "Quicksand", sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 1.125rem;
}

.card-headline {
    font-family: "Quattrocento", serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 28px;
    margin-bottom: 8px;
}

.grey-text {
    color: #6e6e73 !important;
}

.white-section {
    background-color: #fff;
    color: #1d1d1f;
}

.light-grey-section {
    background-color: #f5f5f7; /* light grey from apple site */
    color: #1d1d1f; /* shade of black from apple site */
}

/* Header and navigation */
#menu-button {
    height: 25px;
    margin-top: 10px;
    margin-right: 10px;
}

#header-logo {
    height: 15px;
    padding: 15px 10px;
    box-sizing: content-box;
}

header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: rgba(9, 9, 9, 0.8); /* same as #090909 with 0.8 opacity. This is how you can give only the background color opacity */
}

.nav-items {
    display: none;
}

#side-nav-div {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-color: #1D1D1D;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 15px;
}

#side-nav-div a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    display: block;
    transition: 0.3s;
}

#side-nav-div .closebtn {
    position: absolute;
    top: 5px;
    right: 17px;
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

/* Button styling */
.btn-base-style {
    margin: 0px;
    padding: 6px 15px;
    font-size: 14px;
    border: none;
    border-radius: 25px;
    background-color: #000;
    color: white;
    cursor: pointer;
}

.secondary-btn {
    background-color: transparent;
    border: solid 2px #000;
    color: #000;
}

.secondary-btn-white {
    background-color: transparent;
    border: solid 2px #fff;
    color: #fff;
}

.white-button {
    color: #000;
    background-color: white;
    font-weight: 500;
}

.transparent-button {
    background-color: transparent;
    color: #000;
}

.link-button-black {
    text-decoration: none;
    border: solid 2px #000;
    color: white;
}

.link-button-black:hover {
    color: white;
}

.link-button-white {
    text-decoration: none;
    background-color: white;
    color: black;
}

.link-button-white:hover {
    color: black;
}

.desktop-call-button {
    cursor: default !important;
}

.phone-number-link {
    text-decoration: none;
    color: inherit;
}

.phone-number-link:hover {
    color: inherit;
}

/* loader */
.loading-spinner-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid #000;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 13;
    /*display: none;*/
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Large devices (laptops/desktops, 1000px and up) */
@media only screen and (min-width: 1000px) {
    /* Header and navigation */
    #menu-button {
        display: none;
    }

    .nav-items {
        display: inline-flex;
        justify-content: flex-end;
        align-items: center;
        height: 45px;
        gap: 0px;
        padding: 0px;
        margin-bottom: -1px;
        position: fixed;
        top: 0px;
        right: 0px;
    }

    .nav-items a {
        text-decoration: none;
        color: #e0e0e0;
        font-size: 1.1rem;
        padding-left: 20px;
        padding-right: 20px;
    }

}