/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
	padding: 0;
	margin: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
	font-size: 17px;
}

h1 {
	font-size: 7vw;
}
h2 {
	font-size: calc(20px + 1vw);
	margin-top: calc(5px + 2vw);
	margin-bottom: calc(5px + 1vw);
}
h3 {
	font-size: calc(20px + 0.25vw);
	margin-top: calc(5px + 1vw);
	margin-bottom: calc(-0.5vw);
}
p {
	margin-top: calc(5px + 1vw);
	margin-bottom: calc(5px + 1vw);
}
.social-icons {
	color: black;
	margin-right: 10px;
}







/* form styles */
.input {
	display: inline-block;
	border-radius: 5px;
	border: 2px solid #75a18d;
	background-color: white;
	color: black;
	text-align: center;
	padding: 10px;
	width: 150px;
	font-size: 17px;
	font-weight: normal;
	margin-bottom: 20px;
}
.button {
	display: inline-block;
	border-radius: 30px;
	border: 2px solid #75a18d;
	background-color: #c5f4ec;
	color: black;
	text-align: center;
	padding: 20px;
	width: 150px;
	transition: all 0.5s;
	cursor: pointer;
	font-size: 17px;
	font-weight: normal;
}
.button_readmore {
	float: right;
	margin-top: -5px;
	margin-right: 50px;
	margin-bottom: 15px;
}
.button span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
}
.button span:after {
	content: '\00bb';
	position: absolute;
	opacity: 0;
	top: 0;
	right: -30px;
	transition: 0.5s;
}
.button:hover span {
	padding-right: 15px;
}
.button:hover span:after {
	opacity: 1;
	right: 0;
}









/* responsive columns */

.row_hero {
	margin-top: 40px;
	padding-top: calc(50px + 5vw);
	margin-bottom: calc(75px + 12vw);
}
.row_footer {
	margin-top: 30px;
	margin-bottom: 5px;
	text-align: center;
}
.row {
	max-width: 980px;
	margin: auto;
	margin-top: calc(25px + 2vw);
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
}
.row_bg {
	background-color:#ffffff;
}


/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

.column {
	float: left;
}
.column_right {
	float: right;
}

.column_hero {
	margin: auto;
	text-align: center;
	width: 100%;
}
.column_whole {
	width: 100%;
}
.column_half {
	width: 50%;
}
.column_third {
	width: 33.33333%;
}
.column_padding {
	padding-left: 20px;
	padding-right: 20px;
}
.column_padding_text {
	padding-left: 20px;
	padding-right: 20px;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 768px) {
	.column, .column_right {
		width: 100%;
	}
	.column_padding {
		padding-left: 10px;
		padding-right: 0px;
	}
}



section {
	background: url("../images/bg.jpg") no-repeat;
	background-size: cover;
	height: calc(100vw);
}











/* navbar top menu */

a {
	text-decoration: none;
	color: black;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.4s ease;
	height: 50px;
	backdrop-filter: blur(5px);
	z-index: 3;
}
nav.sticky{
	padding: 0px 20px;
	background-color:rgba(255, 255, 255, 0.5);
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
label.logo {
	color: black;
	font-size: 25px;
	line-height: 50px;
	padding-left: 100px;
	font-weight: bold;
}
label.logo a {
	color: black;
}
label.logo a.active,
label.logo a:hover {
	text-decoration: none;
}
nav ul {
	float: right;
	margin-right: 20px;
}
nav ul li {
	display: inline-block;
	line-height: 50px;
	margin: 0 5px;
}
nav ul li a {
	color: black;
	font-size: 17px;
	padding: 7px 13px;
	border-radius: 3px;
}
a.active,
a:hover {
	text-decoration: underline;
	transition: .5s;
}
.checkbtn {
	font-size: 22px;
	color: black;
	float: right;
	line-height: 50px;
	margin-right: 30px;
	cursor: pointer;
	display: none;
}
#check {
	display: none;
}
@media (max-width: 1050px) {
	label.logo {
		padding-left: 30px;
	}
	nav ul li {
		margin: 0px;
	}
	nav ul li a {
		font-size: 16px;
	}
}
@media (max-width: 890px) {
	.checkbtn {
		display: block;
	}
	label.logo {
		font-size: 22px;
	}
	ul {
		position: fixed;
		width: 100%;
		height: 50vh;
		background-color:rgba(255, 255, 255, 0.5);
		backdrop-filter: blur(5px);
		top: 50px;
		left: -100%;
		text-align: center;
		transition: all .5s;
	}
	nav ul li {
		display: block;
		margin: 15px 0;
		line-height: 30px;
	}
	nav ul li a {
		font-size: 20px;
	}
	a:hover,
	a.active {
		background: none;
		color: black;
	}
	#check:checked~ul {
		left: 0;
	}
}




















/* logo slider */

@-webkit-keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-250px * 7));
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-300px * 7));
	}
}
.slider {
	background: white;
	height: 100px;
	margin: auto;
	overflow: hidden;
	position: relative;
}
.slider::before, .slider::after {
	background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 100px;
	position: absolute;
	width: 100px;
	z-index: 2;
}
.slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}
.slider::before {
	left: 0;
	top: 0;
}
.slider .slide-track {
	-webkit-animation: scroll 40s linear infinite;
	animation: scroll 40s linear infinite;
	display: flex;
	width: calc(300px * 14);
}
.slider .slide {
	height: 100px;
	width: 300px;
	filter: opacity(50%) grayscale(1);
}















/* photo carousel */

@keyframes display {
	0% {
		transform: translateX(200px);
		opacity: 0;
	}
	10% {
		transform: translateX(0);
		opacity: 1;
	}
	20% {
		transform: translateX(0);
		opacity: 1;
	}
	30% {
		transform: translateX(-200px);
		opacity: 0;
	}
	100% {
		transform: translateX(-200px);
		opacity: 0;
	}
}
@media screen and (max-width: 768px) {
	@keyframes display {
		0% {
			transform: translateX(50px);
			opacity: 0;
		}
		10% {
			transform: translateX(0);
			opacity: 1;
		}
		20% {
			transform: translateX(0);
			opacity: 1;
		}
		30% {
			transform: translateX(-50px);
			opacity: 0;
		}
		100% {
			transform: translateX(-50px);
			opacity: 0;
		}
	}
}
.pic-ctn {
	position: relative;
	width: 100%;
	height: 300px;
}
.pic-ctn-div {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	animation: display 20s infinite;
	width: 100%;
	height: 300px;
	text-align: center;
	padding: 80px 0;
	color: white;
	background-color: #cccccc;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media screen and (max-width: 768px) {
	.pic-ctn-div {
		width: 300px;
	}
}
div:nth-child(2) {
	animation-delay: 4s;
}
div:nth-child(3) {
	animation-delay: 8s;
}
div:nth-child(4) {
	animation-delay: 12s;
}
div:nth-child(5) {
	animation-delay: 16s;
}












