

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap');

:root {
	--gray-colour: #6d6d6d;
	--ligh-gray: #d9d9d9;
	--gold-colour: #ffcb39;
	--light-gold-colour: #ffde68;
	--blue-colour: #1e6570;
	--light-blue-colour: #71c9d7;
	--white-colour: #fafcff;
}

* {
	font-family: 'Montserrat', sans-serif;
}

html {
	scroll-behavior: smooth;
}

.text-primary {
	color: var(--blue-colour) !important;
}

.text-light {
	color: var(--white-colour) !important;
}

.btn-primary {
	background: var(--blue-colour) !important;
	border: none;
	transition: all 1 ease-in-out;
}

.btn-primary:hover {
	background: var(--gold-colour) !important;
	color: var(--blue-colour);
	border: none;
}

.bg-main {
	background: var(--blue-colour);
	width: 100%;
}

.bg-reverse {
	background: var(--white-colour);
}

.rounded-1 {
	border-radius: 10px;
}

.rounded-2 {
	border-radius: 20px;
}

.rounded-3 {
	border-radius: 30px;
}

.link-btn-dark {
	background-color: var(--blue-colour);
	color: var(--white-colour);
	text-decoration: none;
	border-radius: 5px;
	padding: 10px;
	margin-top: 5px;
    transition: all 0.3s ease-in-out;
}
.link-btn-dark:hover {
	background-color: var(--gold-colour);
	color: var(--blue-colour);
	text-decoration: none;
	border-radius: 5px;
	padding: 10px;
	margin-top: 5px;
}

.display-8 {
	font-size: 18px;
	width: fit-content;
}

.img {
	background-image: url("../images/contact-us-img2.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media (max-width: 767.98px) {
	.info-wrap {
		height: 400px;
	}
}

.success-label {
    color: var(--gold-colour) !important;
}

.link-dark {
	color: var(--gray-colour) !important;
	text-decoration: none;
}

/* BACKGROUND IMAGE ON TOP */
.header-top {
	height: 100vh;
	background-size: cover;
	background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../images/The_City_London.jpg');
}

.contact-header-top {
	height: 40vh;
	background-size: cover;
	background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url('../images/contact-us-img.jpg');
}

/* BACKGROUND IMAGE ON TOP END */

/* NAVBAR START */
.nav-scroll {
	/* background: linear-gradient(rgba(109, 109, 109, 1), rgba(109, 109, 109, 1)); */
	background: #1e6570;
	transition: all 0.5s ease-in-out;
}

.nav-on-top {
	/* background-color: var(--white-colour); */
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
	transition: all 0.5s ease-in-out;
}

.mobile-nav a {
	color: var(--gray-colour);
	font-weight: 600;
	font-size: 20px;
}

.mobile-nav a:hover {
	color: var(--blue-colour);
}

.navbar .container .collapse a {
	color: var(--white-colour);
	font-weight: 600;
	font-size: 20px;
	border-top: solid 2px var(--gold-colour);
	/* -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; */
}

.navbar .container .collapse a:hover {
	color: var(--blue-colour);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* NAVBAR END */

/* NAVBAR TOGGLER */
.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2855, 175, 194, 1%29' stroke-linecap='round' stroke-miterlimit='15' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	width: 40px;
}

.navbar-toggler {
	border: 0;
	border-radius: 0;
}

.navbar-light .navbar-toggler {
	border-color: var(--blue-colour);
}

/* END NAVBAR TOGGLER */

@keyframes fade-in {
	from {
		opacity: 0;
		transform: scale(.7, .7)
	}

	from {
		opacity: 0;
		transform: translateY(-200px);
	}

	to {
		opacity: 1;
	}
}

.fade-in-element {
	animation: fade-in 1.4s;
}

.hidden {
	opacity: 0;
}

/* FLOATING BUTTON */
i.fa-solid.fa-user-group.fa-2x {
	color: var(--blue-colour);
}

button.btn.main-btn.mb-4.me-4 {
	display: block;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	border: 1px solid var(--gold-colour);
	background-color: var(--light-gold-colour);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

button.btn.main-btn.mb-4.me-4:hover {
	display: block;
	height: 85px;
	width: 85px;
	border-radius: 50%;
	border: 1px solid var(--gold-colour);
	background-color: var(--gold-colour);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

/* FLOATING BUTTON END */

/* MAIN PAGE IMAGE OVERLAY */
.home-page-img-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-colour);
	text-align: center;
}

.home-page-img-overlay h1 {
	position: relative;
	font-weight: 700;
	/* border-bottom: 5px solid var(--gold-colour); */
	z-index: 1;
	text-align: center;
	padding-bottom: 20px;
}

.home-page-img-overlay h1::after {
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -50px;
	bottom: 0;
	width: 100px;
	border-bottom: 5px solid var(--gold-colour);
}

.home-page-img-overlay h4 {
	font-weight: 400;
	margin-top: 20px;
}

/* MAIN PAGE IMAGE OVERLAY END*/
.main-btn-enq {
	background: var(--gold-colour);
	font-weight: 700;
	font-size: large;
	margin-top: 10px;
	border: none;
	padding: 12px 20px;
	color: var(--blue-colour);
	text-align: center;
	transition: all 0.2s linear;
	position: relative;
}

.main-btn-enq:hover {
	color: var(--blue-colour);
	font-size: medium;
}

.main-btn-dsn {
	background: none;
	font-weight: 700;
	font-size: large;
	margin-top: 10px;
	border: none;
	padding: 12px 20px;
	color: var(--white-colour);
	transition: color 0.4s linear;
	position: relative;
}

.main-btn-brdr {
	border: solid 2px var(--gold-colour);
}

.main-btn-dsn:hover {
	color: var(--blue-colour);
}

.main-btn-dsn::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--gold-colour);
	/* background: hsl(44 100% 61% / 0.5); */
	backdrop-filter: blur(0.5rem);

	z-index: -1;
	transition: transform 0.5s;
	transform-origin: 0 0;
	transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
}

.main-btn-up::before {
	transform: scaleY(0);
}

.main-btn-side::before {
	transform: scaleX(0);
}

.main-btn-up:hover::before {
	transform: scaleY(1);
}

.main-btn-side:hover::before {
	transform: scaleX(1);
}

.btn-sticky-side {
	position: fixed;
	color: var(--blue-colour);
	top: 50%;
	right: -70px;
	overflow: hidden;
	padding: 12px 20px;
	transform: rotateZ(-90deg);
	background: var(--gold-colour);
	opacity: .5;
	font-weight: 700;
	font-size: large;
	text-decoration: none;
	transition: opacity .4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.btn-sticky-side:hover {
	opacity: 1;
	color: var(--blue-colour);
}

.offcanvas.offcanvas-end {
	/* background: var(--blue-colour); */
	/* background: hsl(188 57.75% 27.84); */
	width: 100%;
	background: hsl(188 57.75% 27.84% / 1);
	backdrop-filter: blur(0.5rem);
}

.offcanvas.offcanvas-end .nav-link {
	color: var(--white-colour);
}

.offcanvas.offcanvas-end .nav-link:hover {
	color: var(--blue-colour);
}

.btn-close {
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffcb39'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

/* DROPDOWN START */
.dropdown:hover>.dropdown-menu {
	display: block;
}

.dropdown-menu {
	/* margin-top: 1px;
    background: var(--gold-colour); */
	/* background: hsl(188 57.75% 27.84% / 0.4); */
	background: var(--blue-colour);
	backdrop-filter: blur(0.5rem);
	border-radius: 0 !important;
}

a.dropdown-item {
	color: var(--white-colour) !important;
	cursor: pointer;
	transition: all 0.4 cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

a.dropdown-item:hover {
	/* background: var(--light-gold-colour); */
	background: var(--gold-colour);
	backdrop-filter: blur(0.5rem);
}

/* DROPDOWN END */
div.form-text {
	color: #ffcb39;
	font-size: 1.2em;
}

textarea:focus.form-control,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
	border-color: var(--light-blue-colour);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 4px var(--light-blue-colour);
	outline: 0 none;
}

.label {
	color: var(--gray-colour);
}

/* FOOTER START */
/* LINKS */
.footer-link {
	color: var(--white-colour);
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}

.footer-link:hover {
	color: var(--white-colour);
	text-decoration: none;
	font-size: 16.5px;
}

/* a.footer-link.footer-address {
    animation: fade-colour 3s ease-out infinite;
}
a.footer-link.footer-email {
    animation: fade-colour 3.1s ease-out infinite;
}
a.footer-link.footer-phone {
    animation: fade-colour 3.2s ease-out infinite;
} */

.consult-main {
	background-color: #1ba6bb;
	min-height: 5rem;
}

.consult-main-text {
	color: var(--white-colour);
	font-weight: 300;
}

.consult-main-btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--blue-colour);
	background-color: #fff;
	border: none;
	border-radius: 5px;
	padding: 12px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
}

.consult-main-btn:hover {
	background-color: var(--blue-colour);
	box-shadow: 0px 15px 20px rgba(30, 101, 112, 0.4);
	color: #fff;
}


/* LINKS END */

/* FORM */

/* FORM END */

/* FOOTER END */
@keyframes fade-colour {
	25% {
		color: var(--light-gold-colour);
	}

	50% {
		color: var(--gold-colour);
	}

	75% {
		color: var(--light-gold-colour);
	}

	100% {
		color: var(--white-colour);
	}
}

@media screen and (max-width: 600px) {
	.btn-sticky-side {
		display: none;
	}

	.contact-btn {
		position: fixed;
		top: 0;
		left: 40%;
		padding: 10px;
		color: var(--gold-colour);
		z-index: 10;
		text-decoration: none;
		font-size: large;
		font-weight: 500;
	}

	.container.footer-form {
		max-width: 100% !important;
	}
}

@media screen and (max-width: 767px) {
	.consult-main-text {
		margin-top: 2rem;
		font-size: 24px;
		text-align: center;
	}

	.consult-main-btn {
		max-width: 250px;
		font-size: 11px;
		padding: 12px;
		/* height: 3.4rem; */
		/* line-height: 2.2rem; */
		margin-top: 1.2rem;
		margin-bottom: 2rem;
	}

	.consult-main-btn-mb {
		width: 100%;
		display: flex;
		justify-content: center;
	}
}

@media screen and (min-width: 768px) {
	.consult-main-text {
		font-size: 26px;
		/* height: 2rem; 
        line-height: 2rem; */
	}

	.consult-main-btn {
		width: 200px;
		font-size: 11px;
		/* padding: 12px;
        height: 3rem; */
		/* line-height: 2rem; */
	}
}

.ftco-section {
	padding: 5em 0;
}

.parallax-bg {
	/* The image used */
	/* background-image: url("../images/london.jpg"); */
	background: linear-gradient(to bottom, rgba(30, 101, 112, 0.5), rgba(30, 101, 112, 0.5)), url("../images/london.jpg") 0 0 no-repeat fixed;

	/* Set a specific height */
	min-height: 200px;
	height: 350px;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.parallax-bg h1 {
	color: var(--white-colour);
	font-size: 3em;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.col-contact {
	text-align: center;
}

.contact-wrap {
	background: var(--ligh-gray);
}

.dbox {
	width: 100%;
	margin-bottom: 25px;
}

@media (max-width: 767.98px) {
	.dbox {
		margin-bottom: 25px !important;
		padding: 0 20px;
	}
}

.dbox p {
	margin-bottom: 0;
}

.dbox p span {
	font-weight: 500;
	color: #000;
}

.dbox p a {
	color: #46b5d1;
}

.dbox .icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #1e6570;
	margin: 0 auto;
	margin-bottom: 20px;
}

.dbox .icon span {
	font-size: 20px;
	color: #fff;
}

.dbox .text {
	width: 100%;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

#form-message-warning,
#form-message-success {
	display: none;
}

#form-message-warning {
	color: red;
}

#form-message-success {
	color: #28a745;
	font-size: 18px;
	font-weight: 500;
}


/*** Team ***/
.team-item img {
	transition: .5s;
}

.team-item:hover img {
	transform: scale(1.1);
}

.team-item .team-social {
	position: absolute;
	width: 38px;
	top: 50%;
	left: -38px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	transition: .5s;
}

.team-item .team-social .btn {
	color: var(--primary);
	background: #FFFFFF;
}

.team-item .team-social .btn:hover {
	color: #FFFFFF;
	background: var(--primary);
}

.team-item:hover .team-social {
	left: 0;
}

.gallery-item .gallery-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
	background: rgba(30, 101, 112, .7);
    transition: .5s;
}

.gallery-item:hover .gallery-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.gallery-item .gallery-overlay .btn {
    opacity: 0;
}

.gallery-item:hover .gallery-overlay .btn {
    opacity: 1;
}
.gallery-img {
	max-height: 300px;
	
}
