/* ===========
    General 
============== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

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

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===========
    Headings 
============== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* ===========
    Header
============== */

/* */

.page-header {
  background: none;
  padding: 20px;
  position: relative;
}

.page-header .quick-nav { 
  position: absolute;
  top: 0;
  right: 0; 
  width: 300px; 
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  .page-header .quick-nav {
    display: none;
  }
}

.page-header .quick-nav nav, 
.page-header .quick-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.page-header .quick-nav ul li a {
  padding: 7px;
  color: #1A4193;
  font-weight: bold;
  text-decoration: underline;  
}



.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.logo img { 
  width: 200px;
  height: 125px;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

@media screen and (max-width: 768px) {
  .navigation {
    display: none;
  }
  
}

/* Ensure the navigation items are inline */
.navigation nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navigation nav ul li:first-child {
  margin-left: 0;
}

.navigation nav ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.navigation nav ul li a img { 
  width: auto;
  height: 40px;
  margin-bottom: 5px;
}

/* ===========
    Footer
============== */

footer {
  position: relative;
  background: linear-gradient(90deg, rgba(45,49,118,1) 0%, rgba(72,144,203,1) 100%);
  color: #ffffff;
  margin-top: 50px; 
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.footer-nav ul li {
  margin-left: 20px;
}

.footer-nav ul li:first-child {
  margin-left: 0;
}

.footer-nav ul li a {
  color: #ffffff;
  text-decoration: none;
}

.back-to-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.back-to-top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 220px;
}
.back-to-top-button img {
  width: 100%;
  height: auto;
}

/* ===========
    Section
============== */

section {
  padding: 24px 0px;
}

@media screen and (min-width: 768px) {
  section {
    padding: 34px 20px;
  }
}

@media screen and (min-width: 1200px) {
  section {
    padding: 36px 60px;
  }
}

/* ===========
    Button 
============== */

.btn-primary {
  background-color: var(--color-red);
  border-color: var(--color-red);
  color: #ffffff !important;
  border-radius: 0;
  padding: 8px 30px;
  transition: all 0.75s;
}

.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-outline-dark {
  color: #000000 !important;
  border: solid 1px #d5d5d5;
  background-color: #ffffff;
  border-radius: 0;
  padding: 12px 10px;
  transition: all 0.75s;
}

.btn-outline-dark:hover {
  background-color: #000000;
  color: #ffffff !important;
}

.btn-blue-gradient {
  background: rgb(29,32,128);
  background: linear-gradient(90deg, rgba(29,32,128,1) 0%, rgba(0,147,220,1) 100%);
  color: #ffffff !important;
  border-radius: 0;
  padding: 20px 50px;
  transition: all 0.75s;
  border-radius: 50px;
  border: none;
  margin-top: 15px;
  display: block;
  font-size: 1.1rem;
}

/* ===========
    Background colors
============== */

.bg-grey {
  background-color: #f5f5f5;
  padding-top: 60px;
  padding-bottom: 60px;
}

.bg-wave { 
  background-image: url('../img/bg-wave.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.bg-blue-gradient { 
  background: linear-gradient(90deg, rgba(45,49,118,1) 0%, rgba(72,144,203,1) 100%);
}

/* ===========
    Wrapper
============== */
/* Make the wrapper a flex container in column direction */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Push the footer to the bottom if content is not tall enough */
.wrapper > footer {
  margin-top: auto;
}

/* ===========
    Slick Slider
============== */

.slick-slider { 
  margin: 20px 0 50px 0 !important;
}

.slick-slide {
  padding: 0 15px;
}

/*
.slick-slide img { 
  border-radius: 40px;
  border: solid 1px darkblue;
}
  */

/* ===========
    Slick Navigation
============== */

@font-face {
  font-family: 'Font Awesome';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../webfonts/fa-solid-900.woff2') format('woff2'),
       url('../webfonts/fa-solid-900.ttf') format('truetype');
}

.slick-prev:before,
.slick-next:before {
  font-family: 'Font Awesome' !important;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px; /* Make the icons larger and easier to see */
}

.slick-prev::before { 
  content: "\f053" !important; /* fa-chevron-left Unicode */
  opacity: 1 !important;
}

.slick-next::before { 
  content: "\f054" !important; /* fa-chevron-right Unicode */
  opacity: 1 !important;
}

.slick-prev {
  left: 30px !important;
  width: 50px !important; 
  height: 50px !important;
  border-radius: 100% !important;
  background-color: #1A4193 !important;
  border: solid 1px #ffffff !important;
  z-index: 9 !important;
}

.slick-next {
  right: 30px !important;
  width: 50px !important; 
  height: 50px !important;
  border-radius: 100% !important;
  background-color:#1A4193 !important;
  border: solid 1px #ffffff !important;
  z-index: 9 !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .slick-prev {
    left: 90px !important;
  }

  .slick-next {
    right: 90px !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1600px) {
  .slick-prev {
    left: 240px !important;
  }

  .slick-next {
    right: 240px !important;
  }
}

@media screen and (min-width: 1601px) and (max-width: 1919px) {
  .slick-prev {
    left: 290px !important;
  }

  .slick-next {
    right: 290px !important;
  }
}

@media screen and (min-width: 1920px) {
  .slick-prev {
    left: 540px !important;
  }

  .slick-next {
    right: 540px !important;
  }
}

@media screen and (min-width: 2150px) {
  .slick-prev {
    left: 640px !important;
  }

  .slick-next {
    right: 640px !important;
  }
}