@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
    --main-color: #A1D8EE;
    --link-color: #00A0E9;
    --condense-font: "Oswald";
}


body {
    background-color: #000;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.dp-font-condensed {
    font-family: 'Oswald', sans-serif;
}

.dp-font-serif {
    font-family: serif;
}

#dp-header {
    background-color: rgb(25, 25, 25);
}

.dp-brand {
    width: 30%;
}

@media screen and (width >= 992px){
    .dp-brand {
        width: 200px;
    }
}

.dp-logo {
    width: 100%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28161, 216, 238, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dp-nav-link {
    color: var(--main-color);
    font-family: var(--condense-font), sans-serif;
    font-weight: 500;
    letter-spacing: .2rem;
}

.dp-nav-link:hover {
    color: var(--link-color);
}

@media screen and (width >= 992px) {
    .dp-nav {
        flex: 0 1 auto;
        justify-content: space-between;
    }
}

@media screen and (width >= 992px) {
    .dp-navbar-nav {
        column-gap: 3rem;
    }
}

#dp-slider {
    height: 45vh;
}

@media screen and (width >= 992px) {
    #dp-slider {
        height: 65vh;
    }
}

.vegas-content {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

@media screen and (width >= 992px) {
    .vegas-content {
        margin-left: 750px;
    }
}

.dp-heading-e {
    font-family: var(--condense-font), serif;
    font-weight: 500;
}

.dp-heading-j {
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media screen and (width >= 992px) {
    .dp-heading-j {
        font-size: 3rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media screen and (width >= 992px) {
    .dp-lead {
        /*font-size: 1.5rem;*/
    }
}

.dp-btn-outline {
    background-color: transparent;
    border: 1px solid var(--link-color);
    border-radius: 3px;
    color: var(--link-color);
    padding: 8px 12px;
    text-decoration: none;
}

.dp-btn-outline:hover {
    background-color: var(--link-color);
    color: #fff;
}

.dp-price {
    color: rgb(255, 110, 12);
}

.dp-monitor-price {
    word-break: keep-all;
    flex: 0 1 50%;
}

.dp-img-block {
    padding-top: 3rem;
}

.dp-faq_q,
.dp-faq_a {
    display: flex;
    align-items: baseline;
}

.dp-faq_q::before,
.dp-faq_a::before {
    font-family: var(--condense-font), sans-serif;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.dp-faq_q::before {
    content: "Q";
    color: rgb(212, 67, 67);
}

.dp-faq_a::before {
    content: "A";
    color: rgb(67, 101, 212);
}

.dp-text-red {
    color: rgb(202, 14, 19);
}

.accordion-button:not(.collapsed) {
    background-color: var(--main-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.dp-form {
    color: #666;
}

.dp-form-submit {
    font-size: 1.5rem;
}

.dp-cta {
    border: 1px solid #fff;
    margin-bottom: 0;
    padding: 3rem .5rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.dp-cta-btn {
    background-color: transparent;
    border: 1px solid var(--link-color);
    text-decoration: none;
    color: var(--link-color);
    padding: 6px 18px;
    border-radius: 50rem;
    display: inline-block;
}

@media screen and (width >= 992px) {
    .dp-cta-btn {
        margin-left: 2rem;
    }
}

.dp-cta-btn:hover {
    background-color: var(--link-color);
    color: #fff;
}

.gmap {
    height: 25vmax;
    overflow: hidden;
    /*padding-bottom: 56.25%;*/
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.dp-footer-nav {
    list-style: none;
    padding-left: 0;
}

.dp-footer-nav-item:not(:last-child) {
    margin-bottom: .75rem;
}

.dp-footer-nav-link {
    text-decoration: none;
    color: #fff;
}

.dp-footer-nav-link:hover {
    color: var(--link-color);
}

.dp-pagetop {
    text-decoration: none;
    text-align: center;
    position: fixed;
    line-height: 1;
    right: 1rem;
    bottom: 70px;
    opacity: 0;
}

.dp-pagetop.is-visible {
    opacity: .5;
    transition: opacity .5s ease-in-out;
}

.dp-pagetop > a {
    color: #fff;
    text-decoration: none;
}

