/* SPECIAL LINK */

.special a{
  list-style: none;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 0rem;
  cursor: pointer;
}
.special a:after{
  content: "";
  width: 0;
  height: 0.3rem;
	display: block;
  border-radius: 0.2rem;
  position: absolute;
  bottom: 0.8rem;
  background-color: #b99c7d;
  transition: width 200ms ease-in;
}
.special a:hover:after {
	width:100%;
}
    .nice a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        font-weight: 900;
        transition: all 500ms ease-in !important;
    }

    .nice a::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        border-radius: 4px;
        background-color: #b99c7d;
        bottom: -.5rem;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform 250ms ease-in-out;
    }

    .nice a:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }
/* HEADING PADDING */
.padded-multiline { 
  line-height: 1.7; 
  padding: 2px 0; 
  width: 500px;
  margin: 20px auto;
}
.padded-multiline span { 
  background-color: #fff;
  color: #000; 
  display: inline;
  padding: 0.45rem;
  
  /* Needs prefixing */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
/* BUTTON */
.btn-primary {
        font-family: sans-serif;
        font-size: 1.5em;
        font-weight: 800;
        border: none;
        border-radius: 4px;
        padding: 6px 12px;
        cursor: pointer;
        transition: all 200ms ease-in;
        background-color: #b99c7d;
        color: #fff;
    }
@media (max-width:1049px){.btn-primary {font-size: 1.3em;}}

    .btn-primary:hover {
        background: #f1ebe5;
        color: #1d1f38;
    }
.btn-secondary {
        font-family: sans-serif;
        font-size: 0.8em;
        font-weight: 800;
        border: none;
        border-radius: 4px;
        padding: 6px 12px;
        cursor: pointer;
        transition: all 200ms ease-in;
        background-color: #000;
        color: #fff;
    }
@media (max-width:1049px){.btn-primary {font-size: 1.3em;}}

    .btn-secondary:hover {
        background: #000;
        color: #fff;
    }

/* SECTION BLOCK BACKGROUND COLOURS */
.sectionblockbg1, .sectionblockbg7 {
        background-color: #b99c7d;
    }
.sectionblockbg2, .sectionblockbg8 {
        background-color: #9cb97d;
    }
.sectionblockbg3, .sectionblockbg9 {
        background-color: #7db99c;
    }
.sectionblockbg4, .sectionblockbg10 {
        background-color: #7d9cb9;
    }
.sectionblockbg5, .sectionblockbg11 {
        background-color: #a585c2;
    }
.sectionblockbg6, .sectionblockbg12 {
        background-color: #b97e7d;
    }

    .btn-primary:hover {
        background: #f1ebe5;
        color: #1d1f38;
    }

    .btn-secondary:hover {
        background: #f1ebe5;
        color: #1d1f38;
    }

/* PAGE BACKGROUND */
.bgimg {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
}

/* PAGE BACKGROUND */
header.nav-fixed {
    width: 100%;
    position: fixed;
    transition: 0.3s ease-in-out;
}
.fullwidthnavcontainer .navigationlogo {
background-image: url(/assets/images/icflogooriginalpurple.svg);
background-repeat: no-repeat;
background-position: center;
height: 60px;
}
.nav-active>.fullwidthnavcontainer .navigationlogo {
background-image: url(/assets/images/icflogooriginalwhite.svg);
background-repeat: no-repeat;
background-position: center;
height: 60px;
}
.nav-active {
    background-color:#78c8a5;
}
.nav-active>.intheflockmenu a {
    color:#000;
}

.footer {
  position: fixed2;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f1ebe5;
  color: slategrey;
  text-align: center;
}



/* DESKTOP NAV */
.nav {
  position: fixed;
  width: 100vw;
	z-index: 1;
}
.nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin: 0 4rem 0 2rem;
	padding-top:2rem;
	padding-bottom:2rem;
}
.nav__listlogo {
  list-style: none;
  margin-right: auto;
  cursor: pointer;
}
.nav__listlogo svg {
  width: 2.5rem;
  transition: fill 250ms ease-in;
}
.nav__listlogo svg:hover, .nav__listlogo svg:focus {
  fill: #f06292;
}
.nav__listitem {
  list-style: none;
  font-weight: bold;
  position: relative;
  padding: 1.5rem 1rem;
  cursor: pointer;
}
.nav__listitem::after {
  content: "";
  width: 0;
  height: 0.3rem;
  border-radius: 0.2rem;
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  background-color: #b99c7d;
  transition: width 200ms ease-in;
}
.nav__listitem:hover::after, .nav__listitem:focus::after {
  width: 80%;
}
.nav__listitem:hover ul, .nav__listitem:focus ul {
  opacity: 1;
  visibility: visible;
}
.nav__listitemdrop {
  position: absolute;
  top: 4rem;
  left: -1rem;
  box-shadow: 0 0 10px #e1e5ee;
  background-color: white;
  border-radius: 0.2rem;
  width: 12rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease-in-out;
	z-index:10;
}
.nav__listitemdrop li {
  list-style: none;
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  transition: background-color 200ms ease-in-out;
	z-index:10;
}
.nav__listitemdrop li:hover, .nav__listitemdrop li:focus {
  background-color: #f1ebe5;
	z-index:10;
}
/* MOBILE NAV */
.main-navigation .menu li a {
	display: block;
	font-size: 1rem;
	color: #333;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.1em;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: color 0.5s;
	-o-transition: color 0.5s;
	transition: color 0.5s;
}
.floating-menu-btn {
	display: block;
	position: fixed;
	z-index: 100;
	right: 35px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	cursor: pointer;
}
.floating-menu-btn .floating-menu-toggle .bar {
	width: 22px;
	margin: 0 0 4px 0;
}
.mobile-menu-toggle .bar,
.floating-menu-toggle .bar {
	display: block;
	will-change: transform, opacity;
	width: 32px;
	height: 2px;
	margin: 0 0 6px 0;
	background: #333;
	opacity: 1;
	-webkit-transform: translate(0) rotate(0deg);
	-moz-transform: translate(0) rotate(0deg);
	-ms-transform: translate(0) rotate(0deg);
	-o-transform: translate(0) rotate(0deg);
	transform: translate(0) rotate(0deg);
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}

.floating-header {
	position: absolute;
	z-index: 100;
	display: block;
	width: 100%;
	padding: 35px;
}

.floating-header .site-logo {
	max-width: 50%;
	padding: 0;
	margin: 0 !important;
	font-size: 30px;
	color: crimson;
	font-weight: 600;
}

.floating-header + * {
	padding-top: 190px;
}

@media screen and (max-width: 768px) {
	.floating-header {
		padding: 25px 15px;
	}
	.floating-header + * {
		padding-top: 175px;
	}
}

.floating-header .main-navigation-wrap {
	position: fixed;
	z-index: 110;
	display: table;
	width: 300px;
	height: 100%;
	top: 110px;
	left: 50%;
	margin-left: -150px;
	overflow: hidden;
	visibility: hidden;
	background: #fff;
}

.floating-header .main-navigation {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	top: auto;
	right: auto;
	padding: 0;
	text-align: center;
	top: -110px;
	overflow: hidden;
	opacity: 0;
	-webkit-transform: translateY(35px);
	-moz-transform: translateY(35px);
	-ms-transform: translateY(35px);
	-o-transform: translateY(35px);
	transform: translateY(35px);
	-webkit-transition: all 0.35s 0.5s;
	-o-transition: all 0.35s 0.5s;
	transition: all 0.35s 0.5s;
}

.floating-header .main-navigation .menu {
	display: inline-block;
	width: 100%;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.floating-header .main-navigation .menu.off-view {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.floating-header .main-navigation .menu.in-view {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.floating-header .main-navigation .menu > li {
	position: static;
	border-bottom: none;
}

.floating-header .main-navigation .menu > li > a {
	padding-top: 9px;
	padding-bottom: 9px;
}

.floating-header .main-navigation .menu li {
	display: block;
}

.floating-header .main-navigation .menu li a {
	display: block;
	font-size: 1rem;
}

.floating-header .main-navigation .menu li.menu-item-has-children > .sub-menu {
	position: absolute;
	display: block;
	width: 100%;
	height: auto;
	top: 0;
	left: auto;
	right: -100%;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translate3d(100%, 0, 0);
	-moz-transform: translate3d(100%, 0, 0);
	-ms-transform: translate3d(100%, 0, 0);
	-o-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	-webkit-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.floating-header
	.main-navigation
	.menu
	li.menu-item-has-children
	> .sub-menu
	> li
	> a {
	padding-top: 9px;
	padding-bottom: 9px;
}

.floating-header
	.main-navigation
	.menu
	li.menu-item-has-children
	> .sub-menu.in-view {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.floating-header
	.main-navigation
	.menu
	li.menu-item-has-children
	> .sub-menu.off-view {
	-webkit-transform: translate3d(-100%, 0, 0);
	-moz-transform: translate3d(-100%, 0, 0);
	-ms-transform: translate3d(-100%, 0, 0);
	-o-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}

.floating-header
	.main-navigation
	.menu
	li.menu-item-has-children:hover
	.sub-menu {
	-webkit-animation: none;
	-o-animation: none;
	animation: none;
}

.floating-header .main-navigation.is-visible {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.ie .floating-header .main-navigation-wrap .main-navigation,
.edge .floating-header .main-navigation-wrap .main-navigation,
.firefox .floating-header .main-navigation-wrap .main-navigation {
	top: 0;
}

.android .floating-header .main-navigation-wrap .main-navigation,
.ios .floating-header .main-navigation-wrap .main-navigation {
	-webkit-transition: all 0.25s 0s;
	-o-transition: all 0.25s 0s;
	transition: all 0.25s 0s;
}
.floating-menu-btn {
	display: block;
	position: fixed;
	z-index: 100;
	right: 35px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	cursor: pointer;
}

.floating-menu-btn:before {
	display: block;
	position: absolute;
	z-index: -1;
	content: "";
	width: 56px;
	height: 56px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-transform-origin: center 30%;
	-moz-transform-origin: center 30%;
	-ms-transform-origin: center 30%;
	transform-origin: center 30%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.35s ease-out;
	-o-transition: all 0.35s ease-out;
	transition: all 0.35s ease-out;
	-webkit-box-shadow: 0px 12px 18px 0px rgba(0, 0, 0, 0.26);
	box-shadow: 0px 12px 18px 0px rgba(0, 0, 0, 0.26);
}

.floating-menu-btn .floating-menu-toggle-wrap {
	position: absolute;
	z-index: 1;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	top: 28px;
	left: 27px;
}

.floating-menu-btn .floating-menu-toggle {
	display: block;
	width: 22px;
	right: auto;
	left: 50%;
	margin-top: -6px;
	margin-left: -11px;
	cursor: pointer;
}

.floating-menu-btn .floating-menu-toggle .bar {
	width: 22px;
	margin: 0 0 4px 0;
}

.floating-menu-btn .floating-menu-toggle .bar:last-child {
	margin-bottom: 0;
}

.floating-menu-btn.expanded .floating-menu-toggle {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.floating-menu-btn.expanded .floating-menu-toggle .bar:nth-child(1) {
	-webkit-transform: translate(-9px, 3px) rotate(-45deg) scale(0.5, 1);
	-moz-transform: translate(-9px, 3px) rotate(-45deg) scale(0.5, 1);
	-ms-transform: translate(-9px, 3px) rotate(-45deg) scale(0.5, 1);
	-o-transform: translate(-9px, 3px) rotate(-45deg) scale(0.5, 1);
	transform: translate(-9px, 3px) rotate(-45deg) scale(0.5, 1);
}

.floating-menu-btn.expanded .floating-menu-toggle .bar:nth-child(3) {
	-webkit-transform: translate(-9px, -3px) rotate(45deg) scale(0.5, 1);
	-moz-transform: translate(-9px, -3px) rotate(45deg) scale(0.5, 1);
	-ms-transform: translate(-9px, -3px) rotate(45deg) scale(0.5, 1);
	-o-transform: translate(-9px, -3px) rotate(45deg) scale(0.5, 1);
	transform: translate(-9px, -3px) rotate(45deg) scale(0.5, 1);
}

.floating-menu-btn.expanded:before {
	-webkit-transform: scale(80);
	-moz-transform: scale(80);
	-ms-transform: scale(80);
	-o-transform: scale(80);
	transform: scale(80);
	background-color: #f1ebe5;
}

@media screen and (max-width: 768px) {
	.floating-menu-btn {
		right: 15px;
	}
}


.c-preview {
  background: #000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #000000 25%, #7db99c 50%, #9cb97d 75%, #b99c7d 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #000000 0%, #000000 25%, #7db99c 50%, #9cb97d 75%, #b99c7d 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #000000 0%, #000000 25%, #7db99c 50%, #9cb97d 75%, #b99c7d 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  background-size: 400% 400%;
  background-repeat: no-repeat;
  display: flex;
  width: 500px;
  height: 500px;
  max-width: 100vw;
  max-height: 100vh;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
  transition: 0.5s all;
}
.c-preview__img {
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: screen;
}
.c-preview__title {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.c-preview:hover {
  background-position: 100% 100%;
	color:#333;
}
.c-preview:hover__title {
  text-shadow: 0 0 20px black;
}
.c-preview-copy {
  position: relative;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height:140px;
  font-size: 0.8em;
}
.title-top {
	margin-top:5em;
}
@media screen and (max-width: 4000px) {
.c-preview {
  width: 25vw;
  height: 25vw;
	}
.c-preview-copy {
  max-width: 25vw;
}
}
@media screen and (max-width: 2000px) {
.c-preview {
  width: 29vw;
  height: 29vw;
	}
.c-preview-copy {
  max-width: 29vw;
}}
@media screen and (max-width: 1050px) {
.c-preview {
  width: 44vw;
  height: 44vw;
	}
.c-preview-copy {
  max-width: 44vw;
}}
@media screen and (max-width: 600px) {
.c-preview {
  width: 85vw;
  height: 85vw;
	}
.c-preview-copy {
  max-width: 85vw;
  max-width: 85vw;
}}
@media screen and (max-width: 768px) {
	.title-top {
	margin-top:2em;
}
}