/*
Theme Name: Onozzi
Author: Blair Ramsay
Author URI: https://blairramsay.co.uk
Description: A custom theme for the Onozzi website
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*=======================================
              Import Fonts
========================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

@font-face {
  font-family: "Arizona Flare";
  src: url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Light.woff2") format("woff2"),
    url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Light.woff") format("woff"),
    url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Light.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Arizona Flare Thin";
  src: url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Thin.woff2") format("woff2"),
    url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Thin.woff") format("woff"),
    url("assets/fonts/Arizona_Flare/ABCArizonaFlare-Thin.otf") format("opentype");
  font-display: swap;
}


.inter {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/*=======================================
                Colours
========================================*/

:root {
  --black: #000000;
  --white: #ffffff;
  --cream: #F5F2EE;
  --cyan: #80BFB6;
  --purple: #996F95;
  --peach: #D29689;
  --yellow: #F0DFBF;
  --blue: #8EA4B2;
}

/* Black */

.bg-black {
  background-color: var(--black);
}

.text-black,
.text-black a {
  color: var(--black);
}

/* White */

.bg-white {
  background-color: var(--white);
}

.text-white,
.text-white a {
  color: var(--white);
}

/* Cream */

.bg-cream {
  background-color: var(--cream);
}

.text-cream,
.text-cream a {
  color: var(--cream);
}

/*=======================================
      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: Arizona Flare, sans-serif;
}

/*=======================================
   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.wide {
  width: 1920px;
  margin: 0 auto;
}

.container {
  width: 1500px;
  margin: 0 auto;
}

.container.small {
  width: 1064px;
  margin: 0 auto;
}

@media (max-width: 1980px) {

  .container.wide {
    width: 100%;
    padding: 0 30px;
  }

}

@media (max-width: 1500px) {

  .container {
    width: 1120px;
    padding: 0 30px;
  }

}

@media (max-width: 1120px) {

  .container {
    width: 100%;
  }

  .container.small {
    width: 100%;
    padding: 0 30px;
  }

}


/*=======================================
              Helper Classes
========================================*/

.clearfix {
  clear: both;
}

.centered {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.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;
}

.uppercase {
  text-transform: uppercase;
}

/*=======================================
              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;
}

a.button {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 21px 15px;
  border: 1px solid var(--black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

a.button:hover {
  background-color: transparent !important;
}

/* Cream Button */

a.button.cream {
  color: var(--black);
}

a.button.cream:hover {
  color: var(--cream);
}

/* Black Button */

a.button.black {
  color: var(--cream);
  background-color: var(--black);
}

a.button.black:hover {
  color: var(--black);
}

/*=======================================
            List Default Styles
========================================*/

ul[class],
ol[class] {
  list-style: none;
}


/*=======================================
              Nice Selects
========================================*/

.onozzi-theme .nice-select {
  width: 250px;
  border: none;
  border-bottom: 1px solid var(--black);
  background-color: transparent;
  border-radius: 0;
  padding: 10px;
  height: auto;
  float: none;
  font-size: 16px;
  line-height: 19px;
}

.onozzi-theme .nice-select:after {
  width: 10px;
  height: 10px;
  border-color: var(--black);
  top: 17px;
  border-width: 2px;
}

.onozzi-theme .nice-select .list {
  width: 100%;
  background-color: var(--white);
  z-index: 100;
  border-radius: 0;
  margin-top: 0;
}

.onozzi-theme .nice-select .option:hover,
.onozzi-theme .nice-select .option.focus,
.onozzi-theme .nice-select .option.selected.focus {
  background-color: var(--cream);
}

.onozzi-theme .nice-select:active,
.onozzi-theme .nice-select.open,
.onozzi-theme .nice-select:focus {
  border-color: var(--black);
}

/*=======================================
            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: var(--black);
  background: transparent;
  border: 1px solid var(--black);
  display: inline-block;
  padding: 6px 10px;
  outline: none;
  resize: none;
  height: 45px;
}

.onozzi-theme textarea {
  height: 110px !important;
}

.onozz-theme .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 20px;
}

.onozzi-theme .gform_required_legend {
  display: none;
}

.onozzi-theme .gform_wrapper .gfield_required {
  padding-left: 1px;
}

.onozzi-theme .gform_wrapper.gravity-theme .gfield_label {
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: inherit;
  margin-bottom: 0;
}

.onozzi-theme .gform_wrapper .gform_button {
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 21px 15px;
  border: 1px solid var(--black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  background-color: var(--black);
  color: var(--cream);
  min-width: 250px;
  cursor: pointer;
  margin-top: 20px;
}

.onozzi-theme .gform_wrapper .gform_button:hover {
  background-color: var(--cream);
  color: var(--black);
}


/*=======================================
          Image Default Styles
========================================*/

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

/*=======================================
            Text Container
========================================*/

.text-container em {
  font-style: italic;
}

.text-container strong {
  font-weight: bold;
}

.text-container p,
.text-container ul,
.text-container ol {
  margin-bottom: 20px;
}

.text-container p:last-of-type {
  margin-bottom: 0;
}

.text-container ul,
.text-container ol {
  margin-left: 30px;
}

.text-container img {
  width: auto;
  max-width: 100%;
}

.text-container .wp-video {
  width: 100% !important;
}

.text-container iframe {
  width: 100% !important;
}

.text-container .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.text-container .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}

.text-container .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {

  .text-container p,
  .text-container ul,
  .text-container ol {
    font-size: 20px;
    line-height: 30px;
  }
}

body img.gform_ajax_spinner {
  height: 20px !important;
  width: 20px !important;
}

@media(max-width: 600px) {
  .client-testimonials-block .trustpilot-widget iframe {
    margin-top: 60px
  }
	
	#home-banner .left .buttons .button:first-child{
		background-color: black !important;
    	color: #F5F2EE !important;
	}
	
	#home-banner .left .buttons .button{
		width: 100% !important;
	}
}

.LandbotPopup:not(.is-open){
	/* opacity: 0; */
}

/* Titles */

/* .text-container h1 {
  font-size: 50px;
  line-height: 58px;
  letter-spacing: 0.48px;
  margin-bottom: 40px;
  font-weight: 500;
}

.text-container h2 {
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0.48px;
  margin-bottom: 30px;
  font-weight: 500;
}

.text-container h3 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0.48px;
  margin-bottom: 30px;
  font-weight: 500;
}

.text-container h4 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  font-weight: 500;
}

.text-container h5 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  font-weight: 500;
}

.text-container h6 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  font-weight: 500;
} */



@media (min-width: 601px) {
 header .menu li a{
    font-size: 40px !important;
    line-height: 55px !important;
}   
}

.team-block .image:after{
    background-image: url(img/beige.jpg) !important;
}

.btn.btn-cyan.btn-number, .newsletter input.btn-cyan.btn-number[type=submit]{
    border-color: #F2F5EE !important;
}

.bCCbtr{
    background-color: #F2F5EE !important;
}

.btn.landbot-modal-open, .newsletter input.btn-cyan[type=submit]{
    border-color: #F2F5EE !important;
    background-color: #F2F5EE !important;
    color: #000 !important;
}

.btn.landbot-modal-open:hover, .btn.btn-cyan.btn-number:hover{
    border-color: #cdcdcd !important;
    background-color: #cdcdcd !important;
    color: #000 !important;
}

body.archive.tag .page-header .page-header-container{
    height: 250px;
}

body.single.single-post .tags-list{
    margin-top: 50px;
}

body.single.single-post .tags-list a{
    color: black !important;
}

body.single.single-post .tags-list .tags-list-container{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 22px;
}

body.single.single-post .tags-list .tags-list-container strong{
    font-weight: 600;
}

body.single.single-post .nav.flex-row{
    margin-bottom: 30px;
}

.text-container .alignnone {
  margin: 5px 20px 20px 0;
}

.text-container .aligncenter,
.text-container div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.text-container .alignright {
  float:right;
  margin: 5px 0 20px 20px;
}

.text-container .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.text-container a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.text-container a img.alignnone {
  margin: 5px 20px 20px 0;
}

.text-container a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

.text-container a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-container .wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.text-container .wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.text-container .wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.text-container .wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

body.single-post h1{
    font-weight: 600;
}

.text-container .wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.text-container .wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

.text-container h2{
    font-weight: 300;
    font-size: 38px;
    line-height: 44px;
    font-weight: 600;
}

.text-container h3{
    font-weight: 300;
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
}

.text-container h4{
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    font-weight: 600;
}

.text-container h5{
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
}