@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
:root {
	--main-color: #4caf50;
	--main-color-bright: #72bf39;
	--gray: #727272;
}

/*---------------------------SECOND-SECTION*/

.second-section {
	width: 100%;
	background-color: #333;
	padding: 40px 0;
	padding-bottom: 100px;
}

/*--------------------------- THIRD SECTION*/

.third-section {
	width: 100%;
	background-color: #3f3f3f;
	padding: 40px 0;
	padding-bottom: 100px;
}

.list-option {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.item-option {
	margin: 40px 0;
	width: 30%;
	position: relative;
	max-width: 400px;
}

.price-tag {
	position: absolute;
	top: 30px;
	left: 200px;
}

.letter {
	fill: white;
}

.title-option h3 {
	font-size: 160px;
	color: #4d4d4d;
	margin: 0;
}

.title-option-head {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	margin-left: 40px;
	margin-top: -100px;
}

.stars {
	color: var(--main-green);
	display: flex;
	flex-direction: column;
	font-size: 25px;
}

.stars i {
	padding-bottom: 8px;
}

.texts {
	margin-left: 15px;
}

.title-option h2 {
	font-size: 35px;
	font-weight: normal;
	color: white;
	margin: 0;
}

.title-option p {
	width: 100%;
	font-size: 22px;
	color: #b0b0b0;
	margin-top: 10px;
}

.item-content {
	margin-left: 40px;
	margin-top: 20px;
}

.item-content p {
	max-width: 800px;
	font-size: 18px;
	line-height: 1.5;
	color: #f5f5f5;
}

.item-content ul {
	margin-top: 60px;
	margin-bottom: 40px;
}

.item-content li {
	font-size: 22px;
	color: var(--main-green);
	margin-bottom: 20px;
}

.item-content li label {
	display: block;
	color: #f5f5f5;
	margin-left: 30px;
	margin-top: -25px;
	font-size: 1rem;
	line-height: 1.5;
}

.item-content button {
	padding: 12px;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: 0.5s all;
}

.btn-demo {
	background-color: #1c1c1c;
	color: white;
	margin-left: 0;
}

.btn-request {
	background-color: var(--main-green);
	color: black;
}

.btn-demo:hover {
	color: var(--main-green);
}

.btn-request:hover {
	color: white;
}

@media (min-width: 2200px) {
	.item-option {
		max-width: 600px;
	}
}

@media (max-width: 1800px) {
	.list-option {
		flex-wrap: wrap;
	}
	.item-option {
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 1500px) {
	.title-option h2 {
		font-size: 32px;
	}

	.title-option h3 {
		font-size: 140px;
	}

	.item-content li label {
		font-size: 18px;
		margin-top: -22px;
	}

	.item-content li {
		font-size: 18px;
	}
}

@media (max-width: 800px) {
	.title-option h3 {
		font-size: 140px;
	}
	.title-option h2 {
		font-size: 30px;
	}
	.title-option p {
		font-size: 20px;
	}
	.price-tag {
		top: 15px;
		right: 0;
		left: unset;
	}
}

@media (max-width: 600px) {
	.item-option {
		margin: 40px 0;
	}
	.title-option h3 {
		font-size: 110px;
	}
	.title-option h2 {
		font-size: 24px;
	}
	.title-option-head {
		margin-top: -70px;
		margin-left: 15px;
	}
	.item-content li label {
		font-size: 18px;
	}
	.item-content {
		margin-left: 15px;
	}
	.title-option p {
		font-size: 18px;
	}
}

@media (max-width: 410px) {
	.btn-request {
		margin-top: 15px;
	}
}

/*------------------------FOURTH DIV*/

.fourth-section {
	background-color: #5f5f5f;
	padding: 40px 0;
	padding-bottom: 100px;
}

tr:nth-child(even) {
	background-color: #3d3d3d;
}

table {
	width: 100%;
	color: #e5e5e5;
	text-align: center;
	background-color: #333;
	border-spacing: 0;
	margin-top: 60px;
}

th {
	background-color: #272727;
	color: white;
	font-weight: normal;
	font-size: 20px;
	padding: 12px;
}

td {
	padding: 12px;
	font-size: 18px;
	border: 1px solid #333;
	border-collapse: collapse;
}

.table-data-left {
	padding-left: 15px;
	text-align: left;
}

.info-ic {
	cursor: pointer;
	margin-left: 5px;
	color: var(--gray);
}

.fa-check-circle {
	color: var(--main-green);
	font-size: 20px;
}

.info-ic:hover {
	color: var(--main-green);
}

.tooltip {
	width: 250px;
	background-color: #f5f5f5;
	padding: 25px;
	position: absolute;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.6) !important;
	display: none;
	margin: auto;
	border-radius: 4px;
}

#tooltip-close {
	position: absolute;
	top: 5px;
	right: 5px;
	user-select: none;
	color: red;
	cursor: pointer;
	margin-top: 0;
}

.tooltip i {
	font-size: 25px;
	color: black;
	vertical-align: middle;
	color: var(--main-green);
	margin-top: -5px;
}

.tooltip label {
	font-size: 18px;
	font-weight: bold;
}

.tooltip p {
	margin: 10px;
	line-height: 1.5;
}

.price {
	font-size: 20px;
	color: white;
	font-weight: bold;
}

@media (max-width: 1500px) {
	th {
		font-size: 18px;
	}
	td {
		font-size: 16px;
	}
	.price {
		font-size: 16px;
	}
}

@media (max-width: 800px) {
	th {
		font-size: 16px;
	}
	td {
		font-size: 14px;
	}
	table {
		margin-top: 40px;
	}
	.price {
		font-size: 18px;
	}
}

@media (max-width: 450px) {
	th {
		font-size: 14px;
	}
	td {
		font-size: 14px;
		padding: 3px 2px;
	}
	table {
		margin-top: 20px;
	}
}

@media (max-width: 390px) {
	.fourth-section {
		display: none;
	}
}

/*------------------------------FIFTH SECTION*/

.fifth-section {
	padding-bottom: 100px;
}

.list-photo {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

.list-photo img {
	width: 30%;
	box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.6) !important;
	cursor: zoom-in;
	margin: 15px;
	transition: 0.5s all;
	border-radius: 4px;
}

.list-photo img:hover {
	transform: scale(1.05);
}

.list-photo h4 {
	width: 100%;
	font-weight: normal;
	font-size: 28px;
	margin-left: 15px;
	margin-bottom: 15px;
}

.btn-cont {
	width: 100%;
	margin-left: 15px;
	margin-bottom: 15px;
}

.list-photo button {
	border: none;
	font-size: 14px;
	padding: 8px;
	cursor: pointer;
	background-color: #333;
}

.list-photo button:nth-of-type(odd) {
	background-color: var(--main-green);
	color: white;
}

@media (max-width: 1100px) {
	.list-photo img {
		width: 45%;
	}
	.list-photo {
		justify-content: flex-start;
	}
}

@media (max-width: 650px) {
	.list-photo img {
		width: 80%;
	}
	.list-photo {
		justify-content: center;
	}
	.list-photo h4 {
		text-align: center;
	}
	.fifth-section {
		padding-bottom: 60px;
	}
}

/*----------------------CONTACT FORM DIV*/

.contact-form {
	display: flex;
	background-color: var(--main-green);
	justify-content: space-between;
	padding: 80px 0;
}

.text-div {
	width: 40%;
	position: relative;
	margin-right: 30px;
}

.highlighted {
	font-size: 35px;
	color: black;
	font-weight: bold;
}

.text-div div {
	margin: 40px 20px 20px 40px;
	color: white;
	font-size: 30px;
}

.text-div div i {
	color: black;
}

.text-div h2 {
	font-size: 60px;
	font-weight: normal;
	color: black;
	margin: 0 20px 20px 40px;
}

.text-div h3 {
	position: absolute;
	font-size: 40px;
	font-weight: normal;
	margin: 0;
	bottom: -40px;
	left: 40px;
}

.text-div a {
	color: white;
	text-decoration: none;
	cursor: pointer;
}

#link-mail::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	display: inline-block;
	padding-right: 10px;
	vertical-align: middle;
	font-weight: 900;
	color: black;
}

#link-tel::before {
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	display: inline-block;
	padding-right: 10px;
	vertical-align: middle;
	font-weight: 900;
	color: black;
}

.form-div {
	width: 60%;
	margin-right: 40px;
}

.form-div form {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.select-item {
	background-color: #272727;
	position: relative;
	margin: 15px 0;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}

.select-item select {
	width: calc(100% - 18px);
	height: 55px;
	background-color: #272727;
	border: none;
	color: white;
	font-size: 16px;
	padding-top: 15px;
	padding-left: 9px;
}

.select-item label {
	position: absolute;
	top: 3px;
	left: 12px;
	color: var(--main-green);
	font-size: 14px;
}

.options-btn-cont {
	margin: 15px 0;
	text-align: left;
}

.options-btn-cont input {
	width: 25px;
	height: 25px;
	background: #565656;
	cursor: pointer;
}

.options-btn-cont label {
	display: block;
	margin-top: -25px;
	margin-left: 35px;
	font-size: 18px;
}

.check-btn-cont input {
	width: 25px;
	height: 25px;
	background: #565656;
	margin: 25px 0 0 0;
	cursor: pointer;
}

.check-btn-cont label {
	display: block;
	margin-top: -25px;
	margin-left: 30px;
	font-size: 18px;
}

#btnSubmit {
	margin-top: 40px;
	border: none;
	width: 120px;
	height: 45px;
	font-size: 16px;
	background-color: white;
	color: var(--main-color);
	cursor: pointer;
	border-radius: 4px;
}

#btnSubmit:hover {
	transition: 0.5s all;
	background-color: #272727;
}

@media (max-width: 2200px) {
	.form-div form {
		max-width: 600px;
	}
}

@media (max-width: 1200px) {
	.text-div h2 {
		font-size: 55px;
	}
	.text-div div {
		font-size: 28px;
	}
	.text-div h3 {
		font-size: 32px;
	}
}

@media (max-width: 1100px) {
	.form-div {
		width: 50%;
	}
	.text-div div {
		font-size: 22px;
	}
	.text-div h3 {
		font-size: 32px;
	}
}

@media (max-width: 800px) {
	.contact-form {
		flex-direction: column;
		padding: 60px 0;
	}
	.form-div {
		width: 100%;
	}
	.text-div {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.text-div h2 {
		font-size: 40px;
		width: 100%;
		text-align: center;
		margin: 15px;
	}
	.text-div div {
		font-size: 24px;
		margin: 15px;
	}
	.text-div h3 {
		text-align: center;
		width: 100%;
		font-size: 26px;
		position: relative;
		bottom: 0;
		margin-top: 30px;
		left: 0;
		margin: 15px;
	}
}

@media (max-width: 650px) {
	.contact-form {
		padding: 40px 0;
	}
	.form-div {
		width: 90%;
		margin: 0 auto;
	}
	.form-div form {
		text-align: center;
	}
	.check-btn-cont {
		text-align: left;
	}
	.text-div h2 {
		font-size: 20px;
		text-align: center;
	}
	#btnSubmit {
		margin-top: 40px;
		width: 140px;
		height: 50px;
		font-size: 18px;
		background-color: white;
		color: var(--main-green);
		cursor: pointer;
	}
}

/*-----------------------------SCREEN VIEW*/

.screen-shot-viewer {
	width: 100%;
	height: 100vh;
	z-index: 999;
	position: fixed;
	top: 0;
	background: rgba(255, 255, 255, 0.8);
	display: none;
}

.viewer-nav {
	margin-top: 40px;
	text-align: center;
	color: black;
	font-size: 20px;
}

#actual-screen {
	display: inline-block;
	width: 200px;
	user-select: none;
}

.arrow {
	font-size: 25px;
	vertical-align: middle;
	margin: 0 10px;
	color: var(--main-green);
	cursor: pointer;
	user-select: none;
}

.arrow:hover {
	transition: 0.5s all;
	color: black;
}

.image-cont {
	width: 90%;
	height: 80vh;
	overflow: auto;
	margin: 0 auto;
	margin-top: 15px;
	scrollbar-color: var(--main-green) #333;
	scrollbar-width: thin;
	border: 10px solid black;
	border-radius: 8px;
}

.image-cont img {
	width: 100%;
}

.image-cont::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.image-cont::-webkit-scrollbar {
	width: 8px;
	background-color: #333;
}

.image-cont::-webkit-scrollbar-thumb {
	border-radius: 0px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: var(--main-green);
}

#closeViewer {
	position: absolute;
	top: 15px;
	right: 15px;
	color: red;
	font-size: 35px;
	cursor: pointer;
}
