@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/
.locked {
    /*Play with this overflow because it makes a big difference when viewing carousel on mobile protrait vs landscape.*/
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.avenir-normal {
    font-family: "Avenir";
}

.avenir-next {
    font-family: "Avenir Next"
}

.avenir-heavy {
    font-family: "Avenir-Heavy";
}
@font-face {
    font-family: 'Avenir';
    src: url(/assets/AvenirLTStd-Roman-79c4a6763cd37a08c07c061494eb890d6703197796f124ed66842cc73dedb5ed.otf);
}

@media (any-pointer: coarse) {
    /* MOBILE */
    .bs-header {
        display: none;
    }

    .top-bs-footer:not(.global-footer) {
        display: none !important;
    }

    .bs-footer-section:not(.global-footer-section) {
        bottom: -30px !important;
    }

}

/* NON MOBILE */
@media (any-pointer: fine) {
    .mobile-slideout {
        display: none !important;
    }

    .mobile-header {
        display: none !important;
    }

}

html {
    scroll-behavior: smooth !important;
}

.terms-p {
    font-family: "Source Sans Pro";
    font-size: 10px;
    color: #0D214B;
    opacity: 0.7;
}

.social-icon {
    min-width: 22px;
    min-height: 22px;
    transition: transform 200ms;
}

.social-icon:hover {
    transform: scale(1.5);
}

.down-arrow-svg {
    animation: MoveUpDown 800ms linear infinite;
    position: absolute;
    margin-left: -36px;
    transition: all 200ms;
}

.rotated-arrow {
    transform: rotate(-180deg);
}

.svg-path {
    animation: ChangeColor 800ms linear infinite;
    fill: white;
    -webkit-filter: drop-shadow(0px 3px 6px black);
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom: 60px;
    }
    50% {
        bottom: 50px;
    }
}

@keyframes ChangeColor {
    0%, 100% {
        fill-opacity: 0.5;
    }
    50% {
        fill-opacity: 1;
    }
}

/*.bs-content::before {*/
/*    content: "";*/
/*    background-size: cover;*/
/*    position: absolute;*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*    top: 0px;*/
/*    right: 0px;*/
/*    bottom: 0px;*/
/*    left: 0px;*/
/*    opacity: 0.8;*/
/*}*/

.bs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bs-header {
    /*position: absolute;*/
    top: 0;
    width: 100%;
    /*padding-top: 30px;*/
    /*padding-left: 60px;*/
    /*padding-right: 60px;*/
}

.bs-body-section {
    position: absolute;
    width: 100%;
}

.bs-footer-section {
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.home-page-footer-section {
    position: absolute;
}

.bs-footer.top-bs-footer:hover {
    opacity: 1;
    max-height: 1000px;
}

.bs-footer {
    border-top: 2px solid #BEBAA7;
    border-bottom: 2px solid #BEBAA7;
    width: 100%;
    background-color: white;
    display: flex;
    overflow: hidden;
}

.bs-footer.top-bs-footer {
    opacity: 0;
    max-height: 30px;
    transition: all 200ms;
}

.bs-footer-link {
    color: #0D214B;
    opacity: 0.8;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Source Sans Pro";
    font-weight: 600;
}

.bs-footer-link:hover {
    color: #0D214B;
    opacity: 1;
    text-decoration: underline;
}

.bs-home-page-logo-mobile {
    height: 90px;
    -webkit-filter: drop-shadow(0px 10px 15px #00000080);
    filter: drop-shadow(0px 10px 15px #222);
    opacity: 1;
    z-index: 2;
}

.hamburger-bar-icon-mobile {
    /*position: absolute;*/
    /*top: 0;*/
    display: block;
    width: 45px;
    z-index: 2;
}

.hamburger-bar-container {
    position: relative;
    z-index: 40;
}

.bs-header-mobile {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: row-reverse;
    z-index: 11;
}

.bs-home-page-logo {
    height: 100px;
    -webkit-filter: drop-shadow(0px 10px 15px #00000080);
    filter: drop-shadow(0px 10px 15px #222);
    opacity: 1;
}

.mobile-header {
    /*position: absolute;*/
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 18px;
    padding-right: 18px;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.mobile-slideout {
    padding-left: 8px;
    padding-right: 8px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 100%;

    transition: all 200ms;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 12;
    padding-top: 90px;
}

.patty-content-mobile {
    overflow: scroll;
    height: calc(100vh - 90px);
}

.mobile-slideout-in {
    margin-left: 0;
}

.mobile-header img {
    z-index: 13;
}

.hamburger-bar-icon {
    position: absolute;
    top: 0;
    display: block;
    width: 65px;
    z-index: 2;
}

#burger-bar-icon-hover {
    width: 65px;
}

#burger-bar-icon-hover {
    opacity: 0;
}

#hamburger-bar-container:hover > #hamburger > #burger-bar-icon-default {
    opacity: 0;
}

#hamburger-bar-container:hover > #hamburger > #burger-bar-icon-hover {
    opacity: 100;
}

#hamburger:hover + #hamburger-patty {
    max-height: 800px;
    top: -20px;
    padding-bottom: 130px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

#hamburger-patty:hover {
    max-height: 800px;
    top: -20px;
    padding-bottom: 130px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

#hamburger-patty {
    left: -20px;
    position: absolute;
    max-height: 0px;
    width: 350px;
    overflow: hidden;
    transition: all 200ms;
    top: 50%;

    z-index: 1;
}

.patty-content {
    padding-top: 80px;
    padding-left: 20px;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

.burger-item {
    /*padding-top:28px;*/
    /*padding-bottom:28px;*/
}

.burger-item .top-item {
    font-size: 20px;
    font-family: "Source Sans Pro";
    font-weight: 400;
    text-shadow: 4px 6px 10px rgba(0, 0, 0, 0.5);
    color: #0D214B;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 200ms;
    padding-top: 18px;
    padding-bottom: 18px;
}

.burger-item:hover .top-item {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
}

.burger-item .inner-item {
    font-size: 16px;
    font-family: "Source Sans Pro";
    font-weight: 200;
    text-shadow: 4px 6px 10px rgba(0, 0, 0, 0.5);
    color: #0D214B;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 200ms;
    padding-top: 8px;
    padding-bottom: 8px;
}

.burger-item .inner-item:hover {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
}

.burger-item-list {
    max-height: 0;
    overflow: hidden;
    transition: all 200ms;
}

.burger-item .top-item:hover + .burger-item-list {
    max-height: 300px;
}

.burger-item-list:hover {
    max-height: 300px;

}

.home-video {
    position: absolute;
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.8;
    top: 0;
    z-index: -1;
}

/*    Tiles section */
.home-tile-parent {
    padding: 50px;
}

.home-tile {
    display: inline-block;
    position: relative;
    width: 100%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    transition: transform 200ms;
}

.home-tile:hover {
    transform: scale(1.06);
}

.home-tile:hover .tile-content .tile-content-container {
    background-color: #0D214B;
}

.home-decoy {
    margin-top: 100%;
}

#down-arrow-click-link {
    cursor: pointer;
}

.tile-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.first-in-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-in-container h1 {
    font-size: 60px;
    font-family: Avenir;
    color: #0D214B;
    line-height: 60px;
    margin-bottom: 30px;
    text-shadow: 4px 6px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 30px;
}

.tile-content-container {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.45);
    display: flex;
    justify-content: center;
}

.tile-content-container h1 {
    line-height: 60px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 60px;
    font-family: Avenir;
    letter-spacing: 16px;
    color: white;
    text-shadow: 3px 3px #0D214B;
    transition: all 200ms;
}


@media (max-width: 1023px) and (min-width: 0px) {
    .footer-title {
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

@media (max-width: 5000px) and (min-width: 2201px) {
    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 64px;
        padding-top: 70px;
        padding-bottom: 70px;
        font-size: 64px;
        letter-spacing: 20px;
    }
}

@media (max-width: 2200px) and (min-width: 2051px) {
    .tile-content-container h1 {
        line-height: 50px;
        font-size: 50px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 54px;
        padding-top: 60px;
        padding-bottom: 60px;
        font-size: 54px;
        letter-spacing: 18px;
    }
}

@media (max-width: 2050px) and (min-width: 1901px) {
    .tile-content-container h1 {
        line-height: 40px;
        font-size: 40px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 42px;
        padding-top: 54px;
        padding-bottom: 54px;
        font-size: 42px;
        letter-spacing: 18px;
    }

    .first-in-container h1 {
        font-size: 54px;
        line-height: 54px;
        letter-spacing: 30px;
    }
}

@media (max-width: 1900px) and (min-width: 1751px) {
    .tile-content-container h1 {
        line-height: 36px;
        font-size: 36px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 38px;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 38px;
        letter-spacing: 17px;
    }

    .first-in-container h1 {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: 28px;
    }
}

@media (max-width: 1750px) and (min-width: 1601px) {
    .tile-content-container h1 {
        line-height: 32px;
        font-size: 32px;
        letter-spacing: 14px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 34px;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 34px;
        letter-spacing: 15px;
    }

    .first-in-container h1 {
        font-size: 46px;
        line-height: 46px;
        letter-spacing: 26px;
    }
}

@media (max-width: 1600px) and (min-width: 1451px) {
    .tile-content-container h1 {
        line-height: 30px;
        font-size: 30px;
        letter-spacing: 12px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 32px;
        padding-top: 45px;
        padding-bottom: 45px;
        font-size: 32px;
        letter-spacing: 13px;
    }

    .first-in-container h1 {
        font-size: 42px;
        line-height: 42px;
        letter-spacing: 22px;
    }
}

@media (max-width: 1450px) and (min-width: 1301px) {
    .tile-content-container h1 {
        line-height: 26px;
        font-size: 26px;
        letter-spacing: 10px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 28px;
        padding-top: 40px;
        padding-bottom: 40px;
        font-size: 28px;
        letter-spacing: 11px;
    }

    .first-in-container h1 {
        font-size: 38px;
        line-height: 38px;
        letter-spacing: 18px;
    }
}

@media (max-width: 1300px) and (min-width: 1051px) {
    .tile-content-container h1 {
        line-height: 19px;
        font-size: 19px;
        letter-spacing: 8px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 21px;
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 21px;
        letter-spacing: 9px;
    }

    .first-in-container h1 {
        font-size: 34px;
        line-height: 34px;
        letter-spacing: 14px;
    }
}

@media (max-width: 1050px) and (min-width: 901px) {
    .tile-content-container h1 {
        line-height: 16px;
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 16px;
        letter-spacing: 6px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 17px;
        padding-top: 24px;
        padding-bottom: 24px;
        font-size: 17px;
        letter-spacing: 7px;
    }

    .first-in-container h1 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 28px;
        letter-spacing: 12px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    .tile-content-container h1 {
        line-height: 13px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 13px;
        letter-spacing: 4px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 14px;
        padding-top: 15px;
        padding-bottom: 14px;
        font-size: 14px;
        letter-spacing: 5px;
    }

    .first-in-container h1 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 28px;
        letter-spacing: 10px;
    }
}

@media (max-width: 767px) and (min-width: 701px) {
    .tile-content-container h1 {
        line-height: 48px;
        font-size: 48px;
        letter-spacing: 12px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 54px;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 54px;
        letter-spacing: 14px;
    }

    .first-in-container h1 {
        font-size: 38px;
        line-height: 38px;
        letter-spacing: 14px;
    }
}

@media (max-width: 700px) and (min-width: 601px) {
    .tile-content-container h1 {
        line-height: 40px;
        font-size: 40px;
        letter-spacing: 10px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 42px;
        padding-top: 50px;
        padding-bottom: 50px;
        font-size: 42px;
        letter-spacing: 12px;
    }

    .first-in-container h1 {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 10px;
    }
}

@media (max-width: 600px) and (min-width: 401px) {
    .tile-content-container h1 {
        line-height: 28px;
        padding-top: 24px;
        padding-bottom: 24px;
        font-size: 28px;
        letter-spacing: 6px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 32px;
        padding-top: 35px;
        padding-bottom: 35px;
        font-size: 32px;
        letter-spacing: 7px;
    }

    .first-in-container h1 {
        font-size: 26px;
        line-height: 26px;
        margin-bottom: 30px;
        letter-spacing: 8px;
    }
}

@media (max-width: 400px) and (min-width: 281px) {
    .tile-content-container h1 {
        line-height: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
        font-size: 18px;
        letter-spacing: 3px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 19px;
        padding-top: 25px;
        padding-bottom: 25px;
        font-size: 19px;
        letter-spacing: 4px;
    }

    .first-in-container h1 {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 24px;
        letter-spacing: 4px;
    }
}

@media (max-width: 280px) and (min-width: 200px) {
    .tile-content-container h1 {
        line-height: 12px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .home-tile:hover .tile-content .tile-content-container h1 {
        line-height: 13px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 13px;
        letter-spacing: 2px;
    }

    .first-in-container h1 {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 18px;
        letter-spacing: 4px;
    }
}
.title {
    color: rgb(29 78 216);
    font-size: 26px;
    font-weight: 600;
    line-height: 26px;
}

/* Apply this to <input> elements so that when you click on it it won't change color or border color */
.no-focus:focus {
    box-shadow: none !important;
    border-color: initial;
}

/* Apply this to placeholders that need more space */
.wide-placeholder::placeholder {
    letter-spacing: 4px;
    font-size: 18px;
}

.wide-placeholder:-ms-input-placeholder {
    letter-spacing: 4px;
    font-size: 18px;
}

.wide-placeholder::-ms-input-placeholder {
    letter-spacing: 4px;
    font-size: 18px;
}

@media (max-width: 639px) and (min-width: 331px) {
    .wide-placeholder::placeholder {
        letter-spacing: 2px;
        font-size: 14px;
    }

    .wide-placeholder:-ms-input-placeholder {
        letter-spacing: 2px;
        font-size: 14px;
    }

    .wide-placeholder::-ms-input-placeholder {
        letter-spacing: 2px;
        font-size: 14px;
    }
}

@media (max-width: 330px) and (min-width: 0px) {
    .wide-placeholder::placeholder {
        letter-spacing: 0;
        font-size: 12px;
    }

    .wide-placeholder:-ms-input-placeholder {
        letter-spacing: 0;
        font-size: 12px;
    }

    .wide-placeholder::-ms-input-placeholder {
        letter-spacing: 0;
        font-size: 12px;
    }
}

/* Squared radio button */

.square-radio {
    border-radius: 5px;
    width: 20px;
    height: 20px;
}

.square-radio:checked,
.square-radio:active {
    background-color: #1A3265 !important;
    border-color: #1A3265 !important;
}

.theme-shadow {
    box-shadow: 0 3px 6px rgb(0 0 0 / 40%);
}

.global-text-shadow {
    -webkit-filter: drop-shadow(0px 10px 15px #00000080);
    filter: drop-shadow(0px 10px 15px #222);
}

.avenir-normal {
    font-family: "Avenir";
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
