@import url('https://fonts.googleapis.com/css2?family=Changa:wght@300;600;700&display=swap');

* {
	font-family: 'Changa', sans-serif;
	box-sizing: border-box;
	text-decoration: none
}

html {
	scroll-behavior: smooth
}

body {
	background: #333;
	margin: 0
}

/******************** Standard ********************/
a {
	text-decoration: none
}

ul {
	margin: 0;
	padding: 0
}

li {
	list-style: none
}

img {
	width: 100%
}

section {
	padding: 100px 16vw
}

:root {
	--main-color: #e2cf76
}

.dark-bg {
	background-color: #2d2d2d
}

.title {
	position: relative;
	width: max-content;
	color: var(--main-color);
	margin: 0 0 50px;
	padding: 5px;
	font-size: 30px
}

.title::after {
	content: ' ';
	background: var(--main-color);
	position: absolute;
	bottom: 0;
	right: 0;
	height: 2px;
	width: 100px
}

.btn-section {
	background: none;
	display: block;
	width: max-content;
	padding: 10px 50px;
	margin: 50px auto 0;
	color: #f9f9f9;
	font-weight: 600;
	border: 1px solid #fff;
	transition: all .2s ease-in-out
}

.btn-section:hover {
	background: var(--main-color);
	border: 1px solid var(--main-color)
}

/******************** Menu navbar ********************/
nav {
	background: #222;
	padding: 15px 50px;
	position: fixed;
	width: 80vw;
	margin: 50px 10vw;
	z-index: 9999;
	transition: all .3s ease-in-out
}

.logo-nav {
	height: 50px;
	width: auto;
	display: inline-block;
	float: left;
	margin: 8px 0
}

nav ul {
	display: inline-block
}

nav li {
	position: relative;
	display: inline-block
}

nav li a {
	color: var(--main-color);
	padding: 20px 15px;
	display: block;
	font-weight: 700;
	font-size: 14px;
	transition: all .3s ease-in-out
}

nav li a:hover {
	color: #f9f9f9
}

.fa-bars {
	visibility: hidden
}

/******************** Home slider ********************/
.slider-home-item,
.slider-home-item-en {
	background-position: center;
	background-size: cover;
	position: relative;
	height: 100vh
}

.slider-home-cover {
	background-color: rgb(0, 0, 0, .5);
	height: 100%;
	width: 100%;
	display: grid;
}

.content-slider {
	position: absolute;
	bottom: 0;
	padding: 0 16vw 100px 25px;
	height: max-content;
	width: 100%;
	margin: auto
}

.content-slider h2 {
	color: var(--main-color);
	font-size: 40px;
	margin: 0 0 30px
}

.content-slider a {
	background: rgb(0, 0, 0, 0);
	color: #f9f9f9;
	padding: 10px 25px;
	border: 1px solid #fff;
	transition: all .2s ease-in-out
}

.content-slider a:hover {
	background: var(--main-color);
	border: 1px solid var(--main-color);
	color: #fff
}

.bg-slider {
	background-position: center;
	background-size: cover;
	height: 600px;
	width: 600px;
	border-radius: 50%;
	margin: 100px auto;
	border: 10px solid var(--main-color);
	box-shadow: 0 0 15px rgb(0, 0, 0, .3)
}

.slider-home .owl-dots,
.slider-home-en .owl-dots {
	width: max-content;
	position: absolute;
	bottom: 100px;
	right: 16vw
}

.owl-dot {
	background: var(--main-color);
	height: 10px;
	width: 10px;
	border-radius: 50px;
	margin: 5px;
	display: inline-block;
	opacity: .5;
	transition: all .5s ease-in-out
}

.owl-dot.active {
	width: 25px;
	opacity: 1
}

/******************** Footer ********************/
footer {
	background: #222;
	padding: 25px 16vw;
	grid-gap: 50px;
	color: #f9f9f9
}

footer a {
	color: #f9f9f9;
	transition: all .2s ease-in-out
}

footer a:hover {
	color: var(--main-color)
}

.social-icons {
	border-bottom: 1px solid #333;
	text-align: center;
	padding-bottom: 25px;
	margin-bottom: 15px
}

.social-icon {
	background: var(--main-color);
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 50%;
	margin-left: 5px;
	line-height: 30px
}

.social-icon:hover {
	background: rgb(0, 0, 0, 0)
}

footer p {
	display: inline-block;
	margin: 0
}

footer p:last-child {
	float: left
}

/******************** fixed btn ********************/
.whatsapp-btn,
.call-btn {
	position: fixed;
	left: 15px;
	bottom: 15px;
	background: #25D366;
	height: 55px;
	width: 55px;
	font-size: 38px;
	line-height: 60px;
	color: #f9f9f9;
	padding: 0 10px;
	border-radius: 50%;
	z-index: 9;
	transition: all .2s ease-in-out;
	display: flex;
	align-items: center;
}

.call-btn {
	background: var(--main-color);
	bottom: 80px;
	font-size: 30px;
	padding: 0 13px
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	background: var(--main-color);
	color: #fff
}

/******************** About Us ********************/
.about {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 50px
}

.about-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-gap: 25px
}

.about-icon {
	background: var(--main-color);
	height: 80px;
	color: #fff;
	text-align: center;
	font-size: 40px;
	padding: 5px 0;
	border-radius: 3px
}


.about-text p {
	color: #f9f9f9;
	margin: 0
}

.about-text h3 {
	color: var(--main-color);
	margin: 0 0 5px
}

/******************** Cases ********************/
.cases {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.case {
	width: 100%;
}

/******************** appointment ********************/
#appointment {
	padding: 0
}

.appointment {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.form-appointment {
	padding: 50px 16vw 0 50px
}

.appointment-bg {
	background-position: center;
	background-size: cover;
	width: 100%;
	height: 100%
}

/******************** team ********************/
.team {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 25px
}

.team-item {
	background: #222;
	border-radius: 5px;
	text-align: center;
	overflow: hidden
}

.team-item img {
	height: 400px;
	object-fit: cover
}

.team-item h3 {
	color: var(--main-color);
	margin: 0 0 15px;
	font-size: 20px
}

/******************** services ********************/
.services {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 25px
}

.services-item {
	background: #222;
	border-radius: 10px;
	overflow: hidden
}

.services-item img {
	height: auto
}

.services-item h3 {
	color: var(--main-color);
	margin: 0 15px 5px;
	font-size: 20px
}

/******************** FAQ ********************/
.faq {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 25px
}

.faq iframe {
	border: 1px solid var(--main-color)
}

/******************** blog ********************/
.blog {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 25px
}

article {
	background: #222;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 0 8px rgb(0, 0, 0, .1);
	transition: all .5s ease-in-out
}

article img {
	margin: auto 0;
	overflow: hidden;
	transition: all .5s ease-in-out
}

article h3 {
	color: var(--main-color);
	margin: 0;
	padding: 10px 20px;
	font-size: 20px
}

article p {
	color: #f9f9f9;
	padding: 0 20px;
	font-size: 15px;
	margin: 0;
	height: 90px;
	overflow: hidden
}

article a {
	background: rgb(0, 0, 0, 0);
	padding: 10px 25px;
	margin: 20px;
	border-radius: 2px;
	text-align: center;
	border: 1px solid var(--main-color);
	display: block;
	color: var(--main-color);
	transition: all .2s ease-in-out
}

article a:hover {
	background: var(--main-color);
	color: #f9f9f9
}

article:hover {
	transform: scale(1.03);
	box-shadow: 0 0 15px rgb(0, 0, 0, .5)
}

/******************** contact ********************/
.contact {
	display: grid;
	grid-template-columns: 1.5fr 3fr;
	grid-gap: 25px
}

.contact-item {
	display: block;
	margin-bottom: 25px
}

.contact-item h3 {
	color: var(--main-color);
	margin: 0
}

.contact-item p {
	color: #f9f9f9;
	margin: 0
}

.contact-item a {
	color: #f9f9f9
}

.contact-item a:hover {
	color: var(--main-color)
}

label {
	color: #f9f9f9;
	margin: 0 20px 5px 0;
	font-size: 14px
}

label span {
	color: #d23;
	margin: 0 3px;
	font-size: 17px
}

input,
textarea,
select {
	background: #f9f9f9;
	color: #111;
	display: block;
	padding: 10px 20px;
	font-size: 15px;
	margin-bottom: 15px;
	width: 100%;
	border: 1px solid var(--main-color);
	border-radius: 2px;
	transition: all .2s ease-in-out
}

textarea {
	height: 150px
}

input[type="submit"] {
	background: rgb(0, 0, 0, 0);
	color: var(--main-color)
}

input[type="submit"]:hover {
	background: var(--main-color);
	color: #fff
}

/******************** Header page ********************/
header {
	background-position: center;
	background-size: cover
}

.header-page {
	background: rgb(0, 0, 0, .3);
	height: 400px;
	position: relative
}

.header-page h1 {
	position: absolute;
	top: 100px;
	right: 16vw;
	bottom: 0;
	margin: auto;
	height: max-content;
	font-size: 50px;
	color: #fff
}

/******************** Page after & before ********************/
.after-before {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 25px
}

.after-before img {
	border-radius: 5px
}

/******************** Data content ********************/
.data-content p,
.data-content {
	color: #f9f9f9
}

.data-content h1,
.data-content h2,
.data-content h3,
.data-content h4,
.data-content h5,
.data-content h6,
.data-content a {
	color: var(--main-color)
}

/******************** Phone style ********************/
@media (max-width: 768px) {
	section {
		padding: 50px 25px
	}

	nav {
		padding: 15px 0;
		height: 80px;
		margin: 0 !important;
		width: 100% !important
	}

	.logo-nav {
		height: 100%;
		width: auto;
		margin: 0;
		margin-left: 25px
	}

	nav ul {
		background: #222;
		display: none;
		padding: 60px 25px 0
	}

	nav li {
		display: block;
		border-bottom: 1px solid #111
	}

	nav li a {
		padding: 10px 0px
	}

	nav li a::after {
		display: none
	}

	.fa-bars {
		visibility: unset;
		display: inline-block !important;
		position: absolute;
		right: 25px;
		color: #fff;
		font-size: 25px;
		padding: 13px 0px;
		cursor: pointer
	}

	.slider-home-item {
		grid-template-columns: 1fr
	}

	.content-slider {
		background: rgb(0, 0, 0, .5);
		position: absolute;
		padding: 30vh 25px 100px;
		height: 100vh;
		width: 100%;
	}

	.content-slider h2 {
		font-size: 35px
	}

	.slider-home .owl-dots {
		bottom: 25px;
		right: 25px;
	}

	footer {
		grid-template-columns: 1fr;
		grid-gap: 0
	}

	.footer-item h2 {
		margin-bottom: 5px
	}

	.header-page {
		height: 300px
	}

	.header-page h1 {
		right: 25px;
		font-size: 30px;
		top: 70px
	}

	.form-appointment {
		padding: 50px 25px 0
	}

	.team {
		grid-template-columns: 1fr 1fr
	}

	.team-item img {
		height: 400px
	}

	footer {
		text-align: center
	}

	footer p:last-child {
		float: inherit
	}

	.about,
	.cases,
	.appointment,
	.team,
	.services,
	.faq,
	.blog,
	.contact {
		grid-template-columns: 1fr
	}
}

.cases a:hover:before {
        opacity: 1;
}

.cases a:hover i  {
     opacity: 1;
}
.cases a i {
    font-size: 46px;
    z-index: 2;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 250ms 
linear 0ms;
    opacity: 0;
}
.cases a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.67);
    transition: all 250ms 
linear 0ms;
    opacity: 0;
    z-index: 1;
    border-radius: 1.5rem;
}
.cases img {
    border: 0.5rem solid #fff;
    border-radius: 1.5rem;
    box-sizing: border-box;
    display: block;
    height: auto;
}.cases a {
    flex: 1;
    min-width: 40%;
    max-width: 514px;
    position: relative;
    cursor: pointer;
}
a.whatsapp-btn.sss i {
    font-size: 30px;
}
.cases br {
    display: none;
}