@font-face {
    font-family: Untitled Sans;
    src: url('/static/fonts/UntitledSans-Regular.otf') format("opentype");;
}
@font-face {
    font-family: Untitled Serif;
    src: url('/static/fonts/UntitledSerif-Regular.otf') format("opentype");;
}
@font-face {
    font-family: Untitled Serif;
    font-weight: bold;
    src: url('/static/fonts/UntitledSerif-Bold.otf') format("opentype");;
}

@font-face {
    font-family: Untitled Serif;
    font-weight: 400;
    src: url('/static/fonts/UntitledSerif-Medium.otf') format("opentype");;
}

@font-face {
    font-family: Untitled Serif;
    font-weight: 300;
    src: url('/static/fonts/UntitledSerif-Light.otf') format("opentype");;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
     }
}

a {
    color: #4A5C76 !important;
}

a:hover, a:focus {
    color: #5dbdf0 !important;
}

/* Note: apart from our custom styling, there are boot*/
.homepage-video-vimeo-video {
    min-width: 400px;
    min-height: 375px;
}

.homepage-video-card {
    padding: 1.3em 3.3em;
    animation: fadeInAnimation ease-in 1.2s
}

.homepage-video-card-title {
    border-left: 3.5px solid #4A5C76;
    padding-left: 0.75em;
    color: #4A5C76;
}

.homepage-video-card-description {
    color: #4A5C76;
    animation: fadeInAnimation ease-in 1.3s
}

.video p.description {
    height: 150px;
}

.button-section {
    margin-top: 3em;
}

.button-section-margin-bottom {
    margin-bottom: 13em;
}

.case-studies-section {
    margin: 3em;
}

.case-studies-text {
    text-align: center;
    color: #4A5C76;
}
.case-studies-button-link {
    text-decoration: none;
}
.case-studies-button {
    margin-top: 2em;
    text-decoration: none;
    display: flex;
    margin: auto;
    padding: 10px 22px;
    background-color: #4A5C76;
    color: white;
    border-radius: 30px;
    font-family: 'Untitled Sans';
    font-style: 300;
    font-weight: 500;
    font-size: 1.25em;
    line-height: 127%;
    letter-spacing: -0.005em;
    border: none;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.case-studies-button:hover, .case-studies-button:focus {
    transform: translateY(-8px);
    transition: .3s ease-out;
}


.case-studies-button-icon {
    transform: rotate(-45deg);
    margin-left: 0.3em;
    align-self: center;
}

.page-not-found {
    padding: 3em 0;
    min-height: 50vh;
}

@media only screen and (min-width: 960px) {
    /* styles for browsers larger than 960px; */
}
@media only screen and (min-width: 1440px) {
    /* styles for browsers larger than 1440px; */
}
@media only screen and (min-width: 2000px) {
    /* for sumo sized (mac) screens */
}
@media only screen and (max-device-width: 480px) {
   /* styles for mobile browsers smaller than 480px; (iPhone) */
   body {
        zoom: 0.7;
        -ms-zoom: 0.7;
    }

    .homepage-video-vimeo-video {
        min-width: 400px;
        min-height: 285px;
    }

    .homepage-video-card {
        padding: 0.3em 3.3em;
    }
}
@media only screen and (device-width: 768px) {
   /* default iPad screens */
   body {
    zoom: 0.85;
    -ms-zoom: 0.85;
    }
    .container-fluid {
        overflow: hidden;
    }   
}
/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
  body {
    zoom: 0.85;
    -ms-zoom: 0.85;
  }
  .container-fluid {
    overflow: hidden;
}   
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
  /* For landscape layouts only */
}