@charset "utf-8";
@font-face {
    font-family: 'Colaborate';
    src: url('fonts/Colaborate-Thin.woff2') format('woff2'),
        url('fonts/Colaborate-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Colaborate';
    src: url('fonts/Colaborate-Light.woff2') format('woff2'),
        url('fonts/Colaborate-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Colaborate';
    src: url('fonts/Colaborate-Regular.woff2') format('woff2'),
         url('fonts/Colaborate-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Colaborate';
    src: url('fonts/Colaborate-Medium.woff2') format('woff2'),
        url('fonts/Colaborate-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
	font-family: 'Colaborate';
	src: url('fonts/Colaborate-Bold.woff2') format('woff2'),
		 url('fonts/Colaborate-Bold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}
:root {
    --color-primary: #304C5A;
    --color-primary-dark: #2A3D46;
    --color-secondry: #E8C379;
    --color-secondry-dark: #8f8166;
    --color-white: #ffffff;
    --color-offwhite: #EFEDE8;
    --color-grey: #BFC5C7;
	--font-Colaborate: 'Colaborate';
	--font-PlayfairDisplay: "Playfair Display", serif;
	--fontw-thin: 100;
	--fontw-light: 300;
	--fontw-regular: 400;
	--fontw-meduim: 500;
	--fontw-bold: 600;
}
body {
	font-family: 'Colaborate';
	font-size: 16px;
	font-weight: var(--fontw-thin);
	background: #fff;
	color: var(--color-primary);
	overflow-x: hidden;
	position: relative;
}
a {
	color: var(--color-secondry-dark);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: var(--color-primary);
}
a:focus {
	outline: none !important;
	text-decoration: none;
	box-shadow: none !important;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-PlayfairDisplay);
	font-weight: var(--fontw-regular);
	margin: 0 0 20px;
	color:var(--color-primary);
	text-transform: uppercase;
	line-height: 1.1;
	position: relative;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
	display: block;
    font-size: 12px;
	font-family: var(--font-Colaborate);
    font-weight: var(--fontw-regular);
    letter-spacing: 0;
	margin-bottom: 10px;
}
b, strong {
    font-weight: 600;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
img {
	max-width: 100%;
}
input[type='text'],
input[type='number'],
input[type='password'],
button,
textarea,
select,
option,
img,
.item,
button:focus {
    outline: none;
    box-shadow: none !important;
}
.btn,
.wpcf7-submit {
	background-color: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: var(--color-offwhite);
	font-size: 14px;
	line-height: 1;
	font-weight: var(--fontw-regular);
	text-transform: uppercase;
	padding: 16px 20px;
	border-radius: 8px;
	cursor:pointer;
}
.btn:hover,
.wpcf7-submit:hover {
	background-color: var(--color-secondry);
	border-color: var(--color-secondry);
	color: var(--color-primary);
}
.btnarrow {
    background-image: url(../images/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: center right 20px;
    padding-right: 40px;
}
.btnarrow:hover {
    background-image: url(../images/arrow-right-dark.svg);
}
.fwl {
	font-weight: 100 !important;
}
.fwr {
	font-weight: 400 !important;
}
.fwb {
	font-weight: 600 !important;
}
.font-PlayfairDisplay {
	font-family: var(--font-PlayfairDisplay) !important;
}
.font-Colaborate {
	font-family: var(--font-Colaborate) !important;
}
.fc-yellow {
	color: var(--color-secondry) !important;
}
.fc-golden {
	color: #8F8065 !important;
}
.mobile {
	display: none !important;
}
.roungimage {
	border-radius: 14px;
}
.imgbx {
    position: relative;
	overflow: hidden;
}
.imgbx img,
.imgbx video {
    width: 100%;
}
.imagespcae {
    display: block;
}
.imagespcae:before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
}
.imagespcae img,
.imagespcae video {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all .25s ease-in-out;
}
.wow {
	visibility: hidden;
}
/*-------------------------Header Css-----------------------------*/
header {
	margin: 0;
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	line-height: 1;
	background: var(--color-offwhite);
	transition: all 350ms ease-out;
}
header .logo {
	font-size: 0;
	display: inline-block;
	margin: 0;
	width: 160px;
	transition: all 350ms ease-out;
	background-image: url(../images/logo-dark.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
header .logo.imagespcae:before {
    padding-bottom: 44.71%;
}
header .navbar {
	padding: 0;
	display:block;
}
.menuconainer {
	z-index: 1;
	font-weight: 400;
}
.menubx {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.menubx li {
	display: inline-block;
	padding: 0;
	position: relative;
	line-height: 1;
}
.menubx li a {
	position: relative;
	padding: 0;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: var(--fontw-regular);
	color: var(--color-primary);
	display: block;
	letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
.menubx::before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 100%;
	height: 1px;
	background: rgba(48, 76, 90, 15%);
}
.menubx li a::before {
	content: "";
	position: absolute;
	top: 17px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-primary);
	transition: all ease-in-out 250ms;
}
header.nobg .menubx::before {
	background: rgba(255, 255, 255, 15%);
}
header.nobg .menubx li a::before {
	background-color: var(--color-white);
}
.menubx li a:hover::before, 
.menubx li.active > a::before, 
.menubx li.current-menu-item > a::before, 
.menubx li.current-menu-parent > a::before {
	width: 100%;
}
header.nobg .menubx li a {
	color: var(--color-offwhite);
}
header.nobg .menubx li a:hover, 
header.nobg .menubx li.active>a, 
header.nobg .menubx li.current-menu-item>a, 
header.nobg .menubx li.current-menu-parent>a {
	color: var(--color-offwhite);
}
}
.menubx li a:hover, 
.menubx li.active > a, 
.menubx li.current-menu-item > a, 
.menubx li.current-menu-parent > a {
	color: var(--color-primary);
}
.menubx li a span {
	display: block;
	font-size: 11px;
	font-weight: var(--fontw-thin);
	margin-bottom:25px;
}
.menubx > li.menu-item-has-children {
    padding-right: 20px;
}
.menubx > li.menu-item-has-children > a {
    padding-right: 20px;
}
.menubx > li.menu-item-has-children > a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 2px;
    margin-top: -8px;
    border: solid #304C5A;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: none;
    background: none;
}
.menubx .sub-menu {
	display: none;
	background: #fff;
	position: absolute;
	left: 0;
	top: 45px;
	z-index: 9;
	min-width: 260px;
	max-width: 100%;
	text-align: left;
	padding: 5px 0;
}
.menubx>li:hover .sub-menu {
	display: block
}
.menubx .sub-menu li {
	display: block;
	padding: 5px 0;
	height: auto;
}
.menubx .sub-menu li + li {
	border-top: 1px solid #5a5a5a;
}
.menubx .sub-sub-menu {
	width: 300px;
	position: absolute;
	display: none;
	left: 100%;
	top: -20px;
	padding: 20px 2px 20px 0;
	z-index: 1;
	background: #fff;
}
.menubx .sub-menu>ul>li:hover .sub-sub-menu {
	display: block
}
.menubx div.sub-menu li.has-submenu>a.sub-menu-link:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 6px;
	width: 2px;
	height: 2px;
	margin-top: -1px;
	background: #fff;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	opacity: 0.2;
	box-shadow: none;
	background: 0 0
}
.menubx li.current-menu-parent>a.sub-menu-link:before, .menubx div.sub-menu li.has-submenu:hover>a.sub-menu-link:before {
	opacity: 1;
}
header.nobg {
	background: transparent;
	border-color: transparent
}
header.nobg .logo {
	background-image: url(../images/logo.png);
}
header.sticky {
	padding: 10px 0;
	border-bottom: 1px solid rgba(228,223,209,0.8);
}
/*-------------------------Home Slider Section Css-----------------------------*/
.herobx {
	position: relative;
}
.herobx .imgbx {
	position: relative;
	overflow: hidden;
}
.herobx .imgbx::before {
	content: "";
	display: block;
	padding-bottom: 100vh;
}
.herobx .imgbx::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 30%);
}
.herobx .imgbx img,
.herobx .imgbx video {
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
    height: 100%;
	width: 100%;
    object-position: center;
}
.herobx .heroinner {
	position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
    width: 100%;
    height: 100%;
}
.herobx h1 {
	color: #fff;
	font-size: 65px;
	margin-bottom: 10px;
}
.herobx p {
	color: #fff;
	margin: 0;
}
.scrollsection {
	padding-top: 96px;
	margin-top: -96px;
}
.scrollbx {
    bottom: 50px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
}
.scrollbx span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 1px solid rgba(239, 237, 232, 30%);
	transition: all ease-in-out 300ms;
}
.scrollbx span:hover {
	background-color: #E8C379;
	transition: all ease-in-out 300ms;
}
.scrollbx label {
	font-size: 12px;
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
	margin-top: 10px;
}
/*-------------------------Content Section Css-----------------------------*/
.contentbx {
	position: relative;
	padding: 80px 0;
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
}
.contentbx h1 {
	font-size: 48px;
}
.contentbx h2 {
	font-size: 36px;
}
.contentbx h3 {
	font-size: 24px;
}
.contentbx h4 {
	font-size: 18px;
}
.contentbx h2.big56 {
	font-size: 56px;
}
.contentbx h2.big44 {
	font-size: 44px;
}
.contentbx h2.big32 {
	font-size: 32px;
}
.contentbx h1 label,
.contentbx h2 label {
	color: var(--color-secondry) !important;
}
.contentbx p {
	margin-bottom: 15px;
}
.contentbx p:last-child {
	margin-bottom: 0px;
}
.contentbx ul {
	list-style: circle;
	padding-left: 20px;
	padding-bottom: 20px;
}
.contentbx ul li {
	margin-bottom: 0px;
}
.bluebg {
	background-color: var(--color-primary);
	color: var(--color-offwhite);
}
.bluebg * {
	color: var(--color-offwhite);
}
.greybg {
	background-color: var(--color-offwhite);
}
.chairmansec .textbx {
	padding: 100px;
	width: 730px;
    max-width: 100%;
}
.chairmansec .subhead {
	position: relative;
	background: #51636e;
	height: 1px;
	width: 100%;
	margin-bottom: 25px;
}
.chairmansec .subhead p {
	font-size: 12px;
	text-transform: uppercase;
	font-weight: var(--fontw-regular);
	position: absolute;
    left: -35%;
    top: -8px;
}
.chairmansec .textbx .message {
	position: relative;
	font-family: var(--font-PlayfairDisplay);
	font-size: 18px;
	color: var(--color-offwhite);
}
.chairmansec .textbx .commabx {
	margin: 0 20px;
}
.chairmansec .mainhead {
	position: relative;
	margin-top: 80px;
}
.chairmansec h2 {
	position: absolute;
    left: -35%;
    top: 0;
	margin: 0;
}
.chairmansec h2 span {
	font-weight: var(--fontw-regular);
	margin-top: 1px;
	margin-bottom: 0;
}
.whitetext {
	color: var(--color-white) !important;
}
.ourjourneytop {
	padding-top: 100px;
	font-family: var(--font-PlayfairDisplay);
	font-weight: var(--fontw-regular);
	font-size: 18px;
}
.ourjourneytop .imgbx {
	margin-bottom: -21px;
	position: relative;
	z-index: 1;
}
.ourjourneysec {
	padding-top: 120px;
	background-image: url('../images/journey-bg.jpg');
}
.ourjourneysec * {
	color: var(--color-offwhite);
}
.ourjourneysec h2 {
	text-transform: none;
}
.adjalign {
	top: -12px;
}
.jortab {
	display: none;
}
.jortab1 {
	display: block;
}
.jormenu {
	margin-top: 100px;
}
.jormenu ul {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
.jormenu ul::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 15%);
}
.jormenu ul li {
	flex: 0 0 56px;
	text-align: center;
}
.jormenu ul a {
	display: block;
	padding-top: 10px;
	position: relative;
	font-size: 14px;
	font-weight: var(--fontw-regular);
	color: rgba(239, 237, 232, 60%);
}
.jormenu ul a:hover,
.jormenu ul a.active {
	color: rgba(239, 237, 232, 100%);
}
.jormenu ul a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -1px;
	margin: auto;
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, 40%);
	border-radius: 50%;
}
.jormenu ul span {
	display: none;
	position: absolute;
    top: -66px;
	left: 0;
}
.jormenu ul a:hover span,
.jormenu ul a.active span {
	display: block;
}
.jormenu ul span::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -17px;
	margin: auto;
	width: 13px;
	height: 13px;
	background: rgba(255, 255, 255, 20%);
	border-radius: 50%;
}
.jormenu ul span::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -13px;
	margin: auto;
	width: 5px;
	height: 5px;
	background: #E8C379;
	border-radius: 50%;
}
.jormenu ul img {
	height: 56px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 30%);
	border-radius: 50%;
}
.blackandwhite {
	filter: grayscale(100%);
}
.paralexeffect {
	background-attachment: fixed;
}
.texturedsec {
	background-image: url('../images/texture-bg.jpg');
}
.createdtolead {
	background-image: url('../images/bird-bg.jpg');
}
.texturedsec *,
.createdtolead * {
	color: var(--color-offwhite);
}
.numricadjust {
	font-style: normal;
    position: relative;
    font-size: 76px;
	line-height: 1;
}
.numricadjust2 {
	font-style: normal;
    position: relative;
	top: -7px;
    font-size: 64px;
	line-height: 1;
}
.bannertext .row {
	min-height: 50vh;
}
.bannertext .textbx {
	width: 570px;
	max-width: 100%;
	text-align: center;
}
.gallerysec {
	background-image: url('../images/gallery-bg.svg');
	background-position: top center;
    background-size: 100% auto;
}
.gallerysec h2 {
	text-align: center;
}
.gallerysec * {
	color: var(--color-offwhite);
}
.gallbx {
	position: relative;
}
.gallbx .urlbx {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
.gallbx .imagespcae:before {
    padding-bottom: 212.04%;
}
.gallbx .imgbx::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.gallbx .textbx {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	padding: 25px 20px;
}
.gallbx .textbx h3 {
	font-size: 18px;
	margin: 0;
	text-transform: none;
}
.gallbx .plusicon {
	display: none;
    position: absolute;
    width: 48px;
    height: 48px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    margin: auto;
}
.gallbx:hover .plusicon {
	display: block;
}
.galleryslider {
	margin: 0 -15px;
}
.galleryslider .item {
	padding: 0 15px;
}
.galleryslider .slick-list {
    padding-bottom: 30px;
}
.galleryslider .downslide {
	position: relative;
	top: 30px;
}
.galleryslider .slick-slide {
	transition: transform 0.4s ease;
}
.slick-next {
	right: -60px;
}
.slick-prev {
    left: -60px;
}
.slick-arrow {
	position: absolute;
    top: 48%;
	z-index: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
    font-size: 0;
	border: 1px solid rgba(255, 255, 255, 20%);
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: auto 12px;
    background-position: center;
	cursor: pointer;
}
.slick-arrow:hover {
	background-color: rgba(255, 255, 255, 20%);
}
.slick-prev {
	background-image: url('../images/arrow-left.svg');
}
.slick-next {
	background-image: url('../images/arrow-right.svg');
}
.innergallery {
	background-color: #0c0d0a;
	background-image: url('../images/gallery-bg2.jpg');
}
.innergallery::before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
	width: 1320px;
	max-width: 100%;
	height: 100%;
	background-image: url('../images/gallery-bg.svg');
	background-position: top center;
    background-size: 100% auto;
	background-repeat: no-repeat;
}
.innergallery * {
	color: var(--color-offwhite);
}
.innergallery .textbx {
    height: 100%;
    position: relative;
}
.innergallery .imagespcae img,
.innergallery .imagespcae video {
	object-fit: contain;
}
.innergallery .backto {
	font-size: 12px;
    font-weight: var(--fontw-regular);
	letter-spacing: .5px;
    display: inline-block;
    margin-bottom: 10px;
    background: url(../images/arrow-left.svg) no-repeat left center;
    padding-left: 20px;
	margin-left: -20px;
	position: relative;
	z-index: 2;
}
.innergallery .backto:hover {
	color: var(--color-secondry);
}
.innergallery .textbx p {
    position: absolute;
    width: 200px;
    right: 0;
    bottom: 0;
}
.innergallery h2 {
	text-transform: none;
}
.innergallery .imagespcae:before {
    padding-bottom: 123.84%;
}
.innergallery .slick-next {
    right: -100px;
}
.innergallery .slick-prev {
    left: 41.5%;
}
.countbx {
	font-family: var(--font-PlayfairDisplay);
	font-weight: 100;
	line-height: 1;
}
.countbx .currentbx {
	font-size: 100px;
	color: var(--color-secondry);
}
.countbx .totalbx {
	font-size: 24px;
	color: var(--color-secondry);
	margin-left: 20px;
}
.tumbnilbx {
	margin-top: 80px;
    margin-bottom: -45px;
    position: relative;
    z-index: 9;
}
.thumb-slider .imgbx {
	width: 72px;
	background-color: #000;
}
.thumb-slider .slick-track {
	display: flex;
	align-items: end;
	justify-content: center;
}
.thumb-slider {
	cursor: pointer;
}
.thumb-slider .imgbx:hover,
.thumb-slider .slick-current .imgbx {
	border: 1px solid var(--color-offwhite);
}
.tumbnilbx .videobx {
  pointer-events: none;
}
.tumbnilbx .videobx video {
  cursor: pointer;
  height: 60px;
}
.tumbnilbx .videobx::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: auto;
	width: 14px;
	height: 14px;
	background: url('../images/icon-play.svg') no-repeat center center / cover;
}
.galltab {
	display: none;
}
.zoomeffect:hover img {
    transform: scale(1.05);
}
.newlisting h6 {
	text-transform: none;
	font-size: 16px;
	line-height: 1.3;
	padding-right: 15px;
}
.newsbx {
	width: 100%;
}
.newsbx a {
	display: block;
}
.newsbx .imgbx {
	margin-bottom: 20px;
}
.newsbx .imgbx span {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background-color: var(--color-primary);
	color: var(--color-white);
	font-weight: var(--fontw-regular);
	font-size: 11px;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 0 0 8px 0;
}
.newsbx .datebx {
	color: var(--color-primary);
	font-weight: var(--fontw-meduim);
	font-size: 12px;
	margin-bottom: 7px;
}
.newsbx h2 {
	font-size: 18px;
	line-height: 1.4;
	text-transform: none;
}
.darkarrows .slick-arrow {
	border-color: rgba(48, 76, 90, 20%);
}
.darkarrows .slick-prev {
    background-image: url(../images/arrow-left-dark.svg);
}
.darkarrows .slick-next {
    background-image: url(../images/arrow-right-dark.svg);
}
.darkarrows .slick-arrow:hover {
	background-color: var(--color-primary);
}
.darkarrows .slick-prev:hover {
    background-image: url(../images/arrow-left.svg);
}
.darkarrows .slick-next:hover {
    background-image: url(../images/arrow-right.svg);
}
.topright .slick-arrow {
	top: -82px;
}
.topright .slick-prev {
	left: auto !important;
    right: 55px;
}
.topright .slick-next {
    right: 0;
}
.bigsection h2 {
	font-size: 32px;
}
.bigsection {
	width: 636px;
}
.smallsec {
	width: 306px;
}
.mediaslider .slick-list {
	margin: 0 -12px;
}
.mediaslider .item {
	padding: 0 12px;
	transition: all ease-in-out 250ms;
}

/*-------------------------Footer Css-----------------------------*/
footer {
	width: 100%;
	padding: 50px 0 30px;
	background-color: var(--color-primary-dark);
	color: var(--color-offwhite);
}
footer .ftop {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #4d5a61;
}
.flogo {
	display: block;
	width: 170px;
}
footer .btn:hover {
    border-color: var(--color-secondry);
    color: var(--color-secondry);
}
footer .linkbx li {
	display: inline-block;
	padding: 0 15px;
}
footer .linkbx li:first-child {
	padding-left: 0;
}
footer .linkbx li:last-child {
	padding-right: 0;
}
footer .linkbx li a {
	color: var(--color-offwhite);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: var(--fontw-regular);
}
footer .linkbx li a:hover {
	color: var(--color-secondry);
}
footer p {
	font-size: 13px;
	margin: 0;
}
footer p a {
	color: var(--color-secondry);
}
footer p a:hover {
	color: var(--color-secondry);
	text-decoration: underline;
}
.socialicons ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0;
	line-height: 1;
}
.socialicons ul li {
	position: relative;
	margin: 0 6px;
}
.socialicons ul li:last-child {
	margin-right: 0;
}
.socialicons a {
	font-size: 18px;
	color: var(--color-offwhite);
	display: block;
}
.socialicons a:hover {
	color: var(--color-secondry);
}
.socialicons img {
	height: 16px;
}
.gotop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    text-decoration: none;
	font-size: 12px;
    color: #4F7080 !important;
    text-align: center;
    z-index: 99;
    cursor: pointer;
    display: none;
}
.gotop img {
	width:40px;
}
.gotop span {
	display: block;
	margin-top: 5px;
}
.headergap {
	margin-top: 114px;
}
.tophero {
	padding-top: 70px;
}
.tophero h2 {
	font-size: 108px;
	line-height: 1;
	margin: 0 0 -10px;
}
.bothero {
	position: relative;
}
.bothero .imagespcae::before {
	padding-bottom: 70.51%;
}
.bothero .container,
.bothero .row {
	height: 100%;
}
.bothero .textwrap {
	position: absolute;
    top: 0;
    left: 0;
	z-index: 1;
    width: 100%;
    height: 100%;
}
.bothero h1 {
	font-size: 36px;
	text-transform: none;
}
.bothero span {
	position: relative;
    width: 100%;
}
.bothero span::before {
	content: "";
    background: rgba(239,237,232,15%);
    width: 115%;
	height: 1px;
	position: absolute;
	top: 7px;
	left: 0;
}
.bothero span em {
	position: relative;
	display: inline-block;
	background-color: var(--color-primary);
	font-style: normal;
	padding-right: 10px;
}
.bothero label {
	display: block;
}
.bothero .socialicons {
	display: flex;
	align-items: center;
}
.bothero .socialicons p {
	margin: 0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: var(--fontw-regular);
	letter-spacing: 0.5px;
	margin-right: 10px;
}
.bothero .socialicons ul li {
    margin: 0 5px;
}
.bothero .socialicons a {
    font-size: 16px;
}
#copyMsg {
	position: absolute;
    color: #fff;
    font-size: 12px;
    width: 61px;
    top: 3px;
    left: 24px;
}
.newsdetails {
	padding-top: 20px;
}
.newsdetails .backto {
    font-size: 13px;
    font-weight: var(--fontw-regular);
	color: var(--color-primary);
    display: inline-block;
    margin-bottom: 10px;
    background: url(../images/arrow-left-dark.svg) no-repeat left center;
    padding-left: 20px;
}
.newsdetails .backto:hover {
	color: var(--color-secondry-dark);
}
.newsdetails .textbx {
	margin-top: 80px;
}
.newsdetails h2,
.newsdetails h4 {
	font-size: 32px;
	margin-top: 75px;
	margin-bottom: 30px;
}
.newsdetails p {
	font-size: 18px;
}
.newsdetails img {
	width: 100%;
	margin: 20px 0;
	border-radius: 14px;
	height: auto;
}
.newsdetails .w50,
.newsdetails .size-half {
	float: left;
	width: 48%;
	margin: 20px 0.1%;
}
.relatedslider .item {
	padding: 0 12px;
}
.getinvolved {
	background-image: url('../images/getinvolved-bg.svg');
	background-position: top center;
	background-size: 100% auto;
}
.getinvolved.bannertext .row {
	min-height: initial;
}
.getinvolved.bannertext .textbx {
	width: 313px;
}
.getinvolved.bannertext .textbx a:first-child {
	display: block;
}
.getinvolved h6 {
	font-weight: var(--fontw-thin);
	font-size: 16px;
	line-height: 1.3;
	text-transform: none;
	margin-bottom: 35px;
}
.getinvolved a:hover {
	color: var(--color-offwhite);
	text-decoration: underline;
}
.formgroup {
	position: relative;
}
.formgroup .form-control {
	font-size: 14px;
	font-weight: var(--fontw-thin);
	color: #787774;
	text-transform: uppercase;
	border-radius: 8px;
	width: 100%;
	height: 48px;
	border: none;
}
.newsletter .textbx {
    width: 400px;
    max-width: 100%;
    text-align: center;
}
.newsletter .textbx h3 {
	font-size: 26px;
	text-transform: none;
	margin-bottom: 10px;
}
.newsletter .textbx p {
	font-weight: var(--fontw-light);
}
.newsletter .formgroup {
	margin-top: 30px;
}
.newsletter .form-control {
	text-transform: none;
}
.newsletter .formgroup .btn {
	position: absolute;
    top: 0;
    right: 0;
	z-index: 1;
}
.mc4wp-alert {
	width: 80%;
    margin: 15px auto 0;
    font-size: 13px;
    color: green;
}
.mc4wp-alert.mc4wp-success {
    color: green;
}
.mc4wp-alert.mc4wp-error {
    color: red;
}
.ourjourneysec .jortab ul li {
	background-image: url('../images/icon-check.svg');
	background-repeat: no-repeat;
    background-position: left 6px;
    padding-left: 21px;
    list-style: none;
    background-size: 14px auto;
	font-size: 18px;
}
.ourjourneysec .jortab ul li + li {
	margin-top: 5px;
}