/*=======================================
              Import Fonts
========================================*/

/* @import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,700&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');



/*=======================================
              Colours
========================================*/

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #FF6A00;
}

/*=======================================
      Reset Styles for Main Elements
========================================*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/*=======================================
              Box Sizing
========================================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/*=======================================
          Default Body Styles
========================================*/

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.2;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: var(--black);
}

/*=======================================
   Set Display Role for Older Browsers
========================================*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*=======================================
                Quotes
========================================*/

blockquote,
q {
  quotes: none;
}

blockquote {
  padding: 10px 30px;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/*=======================================
            Container Layout
========================================*/

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 1700px) {

  .container {
    width: 100%;
  }

}

@media (max-width: 1600px) {

  .container {
    padding: 0 50px;
  }

}

@media (max-width: 800px) {

  .container {
    padding: 0 30px;
  }

}

@media (max-width: 450px) {

  .container {
    padding: 0 15px;
  }

}

/*=======================================
              Helper Classes
========================================*/

.clearfix {
  clear: both;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/*=======================================
              Flex Classes
========================================*/

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

/*=======================================
          Link Default Styles
========================================*/

a {
  text-decoration: none;
}

a.cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 0px;
}

a:hover {
  text-decoration: underline;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}



/*=======================================
              Buttons
========================================*/

a.button {
  font-size: 32px;
  line-height: 1;
  color: var(--white);
  text-align: center;
  border: 2px solid var(--white);
  min-width: 320px;
  padding: 20px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;

  &:hover {
    background-color: var(--white);
    color: var(--black);
  }

  @media (max-width: 1600px) {
    min-width: 250px;
    font-size: 22px;
    padding: 15px 20px;
  }

  @media (max-width: 600px) {
    min-width: 0;
    font-size: 20px;
    padding: 15px 30px;
  }

  @media (max-width: 450px) {
    font-size: 18px;
    padding: 12px 25px;
  }

}




/*=======================================
            List Default Styles
========================================*/

ul[class],
ol[class] {
  list-style: none;
}


/*=======================================
              Nice Selects
========================================*/

.starter-theme .nice-select {
  width: 250px;
  border: none;
  border-bottom: 2px solid #1D284A;
  background-color: transparent;
  border-radius: 0;
  padding: 10px 0px;
  height: auto;
  float: none;
  font-size: 20px;
  line-height: 20px;
  font-family: 'Quiet Sans Bold';
  color: #1D284A;

  &:after {
    width: 10px;
    height: 10px;
    border-color: #1D284A;
    top: 17px;
    border-width: 3px;
  }

  .list {
    width: 100%;
    background-color: #E8DACC;
  }

  .option:hover,
  .option.focus,
  .option.selected.focus {
    background-color: #f1e5d9;
  }

  &:active,
  &.open,
  &:focus {
    border-color: #1D284A;
  }

}



/*=======================================
            Table Default Styles
========================================*/

table {
  border-collapse: collapse;
  border-spacing: 0;
}

table th {}

table td {}

/*=======================================
              Form Elements
========================================*/

input,
button,
textarea,
select {
  font: inherit;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
textarea,
select {
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #333;
  display: inline-block;
  padding: 6px 10px;
  margin: 5px 0;
  outline: none;
}

label {
  cursor: pointer;
}

/*=======================================
          Image Default Styles
========================================*/

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
            Text Container
========================================*/

.text-container {

  em {
    font-style: italic;
  }

  strong {
    font-weight: bold;
  }

  p,
  ul,
  ol {
    margin-bottom: 20px;
  }

  ul,
  ol {
    margin-left: 30px;
  }

  img {
    width: auto;
    max-width: 100%;
  }

  .wp-video {
    width: 100% !important;
  }

  iframe {
    width: 100% !important;
  }

  .video-container {
    overflow: hidden;
    position: relative;
    width: 100%;

    &:after {
      padding-top: 56.25%;
      display: block;
      content: '';
    }

    iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

  }

}





/*=======================================
            Hide Admin Bar
========================================*/

@media only screen and (max-width: 1000px) {

  #wpadminbar {
    display: none !important;
  }

  html {
    margin-top: 0 !important;
  }

}