@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800;900&display=swap');
@import url("https://unpkg.com/aos@2.3.1/dist/aos.css");

body {
    font-family: "Inter",sans-serif;
}

.h1,
.display-4 {
    font-family: 'Poppins', sans-serif;
}

.bg-danger {
    background-color: #8c0a23 !important;
}

#cta {
    background-color: #8c0a23;
}

.text-red {
    color: #c6002b;
}

#cta h2 {
    color: #ffffff;
}

#cta p {
    color: #ffffff;
}

#video {
    background-color: #151515;
}

#video p {
    color: #ffffff;
}

#modal p {
    color: #ffffff;
}

.body-text p {
    color: #000000;
}

.border-thick:hover {
    box-shadow: inset 0 0 0 20px #ffffff;
    background: #000;
}

.border-thick,
a:hover {
    text-decoration: none;
}

.bg-gray {
    background-color: #e5e5e5;
}

.bottom-border {
    border-bottom: 5px solid white;
}

.tiles {
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiles-2 {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    margin: 0px 1px;
    display: inline-block;
    position: relative;

    /* opacity: 0.75; */
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
    opacity: 1;
}

.navbar-dark .navbar-nav .nav-link:before {
    transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: #ffffff;
}

.nav-link-ltr::before {
    width: 0%;
    bottom: 10px;
}

.nav-link-ltr:hover::before {
    width: 80%;
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    font-weight: 600;
    color: rgba(255, 255, 255);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
    margin-left: -190px;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
    margin-right: -190px;
}

/* relevant styles */
.img__wrap {
    position: relative;
    height: auto;
    width: auto;
}

.img__description_layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.6);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description_layer {
    visibility: visible;
    opacity: 1;
}

.img__description {
    transition: .2s;
    transform: translateY(1em);
}

.img__wrap:hover .img__description {
    transform: translateY(0);
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #e4e1e1;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000000;

    /* text-shadow: 0 1px 0 #fff; */
    opacity: none;
}

.close:hover {
    color: #f80000;
    text-decoration: none;
    text-shadow: 0 0px 0 #fff;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: none;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

a {
    color: #6c757d;
    text-decoration: none;
    background-color: transparent;
    font-weight: 500;
}

a:hover {
    color: #c6002b;
}

.news a {
    color: #000;
    text-decoration: none;
    background-color: transparent;
    font-weight: 500;
}

.news a:hover {
    color: #c6002b;
}

@media (max-width:575px) {
    .logo {
        max-width: 190px;
        margin-left: 10px;
    }

    h1.display-4 {
        font-size: 42px;
    }

    .carousel-control-prev {
        display: none;
    }

    .carousel-control-next {
        display: none;
    }

    .quotes h3 {
        font-size: 18px;
    }
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    margin: 0px 1px;
    display: inline-block;
    position: relative;

    /* opacity: 0.75; */
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #ffffff;
    opacity: 1;
}

.navbar-dark .navbar-nav .nav-link:before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    background-color: #c6002b;
}

.nav-link-ltr::before {
    width: 0%;
    bottom: 10px;
}

.nav-link-ltr:hover::before {
    width: 80%;
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
    font-weight: 600;
    color: rgba(255, 255, 255);
}

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

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 0.25rem;
}

.iheartred {
    background: #e52d27;

    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #b31217, #e52d27);

    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #b31217, #e52d27);

    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn-danger {
    color: #fff;
    background-color: #c6002b;
    border-color: #c6002b;
}

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

.btn-outline-danger {
    color: #c6002b;
    border-color: #c6002b;
}

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

.example {
    margin: 50px 100px;
    padding: 100px;
    border-bottom: 1px solid #eee;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
    margin-left: -190px;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f00' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
    margin-right: -190px;
}


