/* This hides the site origin link at the bottom of the theme */
#theme-attribution {
  display: none!important;
}

@font-face {
  font-family: 'FoundersGrotesk';
  src: url('/wp-content/uploads/fonts/founders-grotesk-light.woff2') format('woff2');
  font-weight: 300; /* Light */
}

@font-face {
  font-family: 'FoundersGrotesk';
  src: url('/wp-content/uploads/fonts/founders-grotesk-regular.woff2') format('woff2');
  font-weight: 400; /* Regular */
}

@font-face {
  font-family: 'FoundersGrotesk';
  src: url('/wp-content/uploads/fonts/founders-grotesk-medium.woff2') format('woff2');
  font-weight: 500; /* Medium */
}

@font-face {
  font-family: 'FoundersGrotesk';
  src: url('/wp-content/uploads/fonts/founders-grotesk-semibold.woff2') format('woff2');
  font-weight: 600; /* Semibold */
}

h1,h2,h3,h4,p,li,ul {
	font-family:"FoundersGrotesk", "Plus Jakarta Sans", sans-serif !important;
}

.uppercase {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 500 !important;
}

/* main content header padding */

#main.site-main {
  padding-top: 0px;
}

/* remove shadow from mobile menu text */

.mobile-nav-frame ul li a.link {
  text-shadow: none;
}

/* for structure layout */

.container {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.box {
  width: 40%;
  padding: 10px;
  text-align: center;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

/* buttons */

.button {
  border: none;
	padding-left: 1.8em;
	padding-right: 1.8em;
	padding-top: 1em;
	padding-bottom: 1em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {
  background: #99563C;
  color: #E9EBE6;
  border-radius: 10px;
}

.button2 {
  background: #E9EBE6;
  color: #1E1E04;
  border-radius: 10px;
}
.button2:hover {
  background: #E9EBE6;
}

.button3 {
  background: #CED6EB;
  color: #1E1E04;
  border-radius: 10px;
}
.button3:hover {
  background: #CED6EB;
}


/* heading, body and bullets text line spacing */

.entry-content h1, h2, h3, h4, p, ul li {
  line-height: 1.2;
}

/* team members styling */

/* nav dots */

.swiper-pagination-bullet.swiper-pagination-bullet-active {
		background-color: #343434;
		}

/* team name size */

.wps-team--member-title.wps-team--member-element.team-member--link {
  font-size: 24px;
}

/* menu buttons styling */

.main-navigation ul li:hover > a {
  background: #343434;
}
/* menu button 2nd drop down colour */
.main-navigation ul ul li:hover > a {
  background: #343434;
  
}

/* mobile menu icon */

.mobilenav-main-link img {
  max-height: 20px;
  max-width: 27px;
  margin-right: 0px;
}

/* Gets rid of Menu text for mobile next to icon */

.mobilenav-main-link-text {
	visibility: hidden;
	display: none;
	font-size: 0px;
}

/* link colours */
.entry-content a {
  color: #99563C;
}
.entry-content a:hover {
    color: #99563C;
}

/* Boxes on About page */
/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 40%;
  padding: 10px;
  margin-right: 10px;
  margin-top: 10px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* drop down menu width adjust */
.main-navigation ul ul a {
    width: 250px;
}

/* menu bar fade when scrolling */

#masthead.masthead-logo-in-menu .main-navigation {
    opacity: 1;
  transition: opacity 1.0s ease; /* Optional: For a smoother fade effect */
}
/* Add this class to the menu bar when scrolling */
#masthead.masthead-logo-in-menu .main-navigation.transparent {
  opacity: 0;
}

/* lighter font weight in menu */
.main-navigation a {
  font-weight: lighter;
}

/* for thin arrow in menu */
.arrow {
				width: 10px; /* adjust here for sizing */
				height: 10px;
			margin-bottom: 3px; /* adjusted here to centre with text */
				border-color: #000;
				display: inline-block;
				border-bottom: 1px solid;
				border-left: 1px solid;
				-webkit-transition: all 0.5s ease;
				-moz-transition: all 0.5s ease;
				-o-transition: all 0.5s ease;
				-ms-transition: all 0.5s ease;
				transition: all 0.5s ease;
				/*cursor: pointer;*/
			}
			.arrow:hover {
				border-color: #ccc;
			}
			.left.arrow {
				-ms-transform: rotate(45deg);
				-webkit-transform: rotate(45deg);
				transform: rotate(45deg);
			}
			.right.arrow {
				-ms-transform: rotate(225deg);
				-webkit-transform: rotate(225deg);
				transform: rotate(225deg);
			}
			.down.arrow {
				-ms-transform: rotate(315deg);
				-webkit-transform: rotate(315deg);
				transform: rotate(315deg);
			}

/* text appear on hover team pics */

.hide {
  display: none;
}
    
.myDIV:hover + .hide {
  display: block;
  color: #343434;
}

/* adjusted space for Contact page icon */

.alignnone.wp-image-393 {
  margin-bottom: 5px;
}

.alignnone.wp-image-394 {
    margin-bottom: 5px;
}

/* contact form field colour adjust to clear */
.sow-text-field {
  background-color: rgba(0, 0, 0, 0);
}
#sow-contact-form-field-message-1 {
    background-color: rgba(0, 0, 0, 0);
}

.entry-content h1:last-child {
		margin-bottom: 0 !important;
}