:root {
	--transparent-color: #ffffff00;	
    --white-color: #ffffff;
	--white-color-50: #ffffff80;
    --black-color: #000000;
	--black-color-50: #00000080;
    --theme-color-01: #f78eb6;
	--theme-color-01-50: #f78eb680;
	--theme-color-02: #500b75;
	--theme-color-02-50: #500b7580;
	--theme-color-02-95: #500b75f2;
	--theme-color-03: #500b75;
	--theme-color-03-75: #500b75bf;
	--gray-color: #f5f6f6;	
	--red-color: #ce2830;
	--green-color: #00a651;
	--yellow-color: #f07a22;

	--font-cairo: "Cairo", sans-serif;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
	font-family: var(--font-cairo);
    color: var(--theme-color-02);
    background-color: var(--white-color);
	font-size: 100%;
	font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
	direction: rtl;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p {
    margin-bottom: 0;
}

.container-fluid {
	padding-right: 3vw;
	padding-left: 3vw;
}

@media (max-width: 992px) {
	.container-fluid {
		padding-right: 6vw;
		padding-left: 6vw;
	}	
}

::selection {
    background: var(--theme-color-01);
    color: var(--white-color);
}

.tel-dir {
	direction: ltr;
	text-align: right;
}


/****** Header ******/

header {
    position: absolute;
    top: 2rem;
    left: 0;
	right: 0;
    width: 100%;
    z-index: 20;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

header .nav-link,
header .nav-link:focus {
    margin-right: 2.25vw !important;
    margin-left: 2.25vw !important;
	padding: 0 !important;
    color: var(--white-color);
	font-size: 1.75vw;
	font-weight: 500;
	border-bottom: .25rem solid var(--transparent-color);
	display: inline-block;
}

header .nav-link:hover,
header .nav-link.active {
    color: var(--white-color);
	border-bottom: .25rem solid var(--theme-color-01)
}

header .nav-item:last-child .nav-link {
    margin-left: 0 !important;
}

header .navbar-brand img {
    width: 21vw;
	height: auto;
}

header .social-header {
	display: block;
	position: absolute;
    left: 0;
    top: -2.5rem;
}

header .social-header img {
    width: auto;
    height: 1.5rem;
}

@media (max-width: 992px) {
	header {
		position: absolute;
		top: 0;
	}
	header .nav-link,
	header .nav-link:focus {
		margin-top: 1.25rem !important;
		font-size: 6vw;
		border-bottom: .125rem solid var(--transparent-color);
	}
	header .nav-link:hover,
	header .nav-link.active {
		border-bottom: .125rem solid var(--theme-color-01)
	}
	header .navbar-brand img {
		width: 50vw;
	}
	header .navbar-collapse {
		margin-top: .5rem;
	}
	header.menu-header {
		background-color: var(--theme-color-02);
		padding-bottom: 2rem;
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	header .navbar-toggler .icon-bar {
		width: 22px;
		height: 2px;
		display: block;
		margin: .25rem 0;
		background-color: var(--white-color);
		-webkit-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	header .navbar-toggler .icon-bar:nth-of-type(1) {
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transform-origin: 10% 10%;
		-ms-transform-origin: 10% 10%;
		transform-origin: 10% 10%;
	}
	header .navbar-toggler .icon-bar:nth-of-type(2) {
		opacity: 0;
		filter: alpha(opacity=0);
	}
	header .navbar-toggler .icon-bar:nth-of-type(3) {
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transform-origin: 10% 90%;
		-ms-transform-origin: 10% 90%;
		transform-origin: 10% 90%;
	}
	header .navbar-toggler[aria-expanded="false"] .icon-bar:nth-of-type(1) {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
	header .navbar-toggler[aria-expanded="false"] .icon-bar:nth-of-type(2) {
		opacity: 1;
		filter: alpha(opacity=100);
	}
	header .navbar-toggler[aria-expanded="false"] .icon-bar:nth-of-type(3) {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
	}
	header .social-header {
		text-align: center;
		width: 100%;
		top: -1.5rem;
	}
	.menu-bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: var(--transparent-color);
		z-index: 5;
		display: none;
		-webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
	}
	
	.menu-mob .menu-bg {
		display: block;
		-webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
	}
}


/****** Footer ******/

footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
	z-index: 20;
}

footer .footer-links {
    width: 100%;
	background-color: var(--theme-color-02);
	padding: 9rem 0;
}

footer .footer-links .iframe-map {
	width: 100%;
	height: 44vw;
	margin: 0;
	margin-bottom: -.5rem;
	border: none;
}

footer .footer-links .footer-info {
	font-size: 1.5vw;
	color: var(--white-color);
	display: flex;
}

footer .footer-links .footer-info a,
footer .footer-links .footer-info a:focus {
	color: var(--white-color);
}

footer .footer-links .footer-info a:hover {
	color: var(--theme-color-01);
}

footer .footer-links .footer-info img {
	width: auto;
    height: 2.5rem;
	position: relative;
    top: -.25rem;
}

footer .footer-signature {
	width: 100%;
	background-color: var(--white-color);
	padding: 4rem 0;
}

footer .footer-signature img {
	width: 40vw;
	height: auto
}

@media (max-width: 992px) {
	footer .footer-links {
		padding: 5rem 0;
	}
	footer .footer-links .iframe-map {
		height: 80vw;
	}
	footer .footer-links .footer-info {
		font-size: 4.5vw;
	}
	footer .footer-links .footer-info img {
		top: -.5rem;
	}
	footer .footer-signature img {
		width: 75vw;
	}
}


/****** Main ******/

main {
    position: relative;
    width: 100%;
    z-index: 1;
}

.menu-overflow {
	overflow: hidden;
}

.btn-cus-01,
.btn-cus-01:focus {
	display: block;
	width: 100%;
	background-color: var(--transparent-color);
	border: .5rem solid var(--theme-color-01);
	color: var(--theme-color-02);
	font-size: 4vw;
	font-weight: 800;
	text-align: center;
	padding: 1rem 0;
}

.btn-cus-01:hover {
	color: var(--theme-color-01);
}

@media (max-width: 992px) {
	.btn-cus-01,
	.btn-cus-01:focus {
		border: .25rem solid var(--theme-color-01);
		font-size: 8vw;
		padding: 0.75rem 0;
	}
}

.btn-cus-02,
.btn-cus-02:focus {
    background-color: var(--theme-color-01);
    color: var(--white-color);
    text-align: center;
    font-size: 3.5vw;
    font-weight: 700;
    padding: 1rem 6rem;
    margin: 0;
    border: none;
    border-radius: 1rem;
	display: inline-block;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover {
    background-color: var(--theme-color-02);
    color: var(--white-color);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02::after {
	content: "";
    background-color: var(--white-color);
	border: .25rem solid var(--theme-color-01);
    text-align: center;
    font-size: 3.5vw;
    font-weight: 700;
    padding: 1rem 6rem;
    margin: 0;
    border-radius: 1rem;
	display: inline-block;
	position: absolute;
	width: 100%;
    height: 100%;
    top: .75rem;
    left: .75rem;
    z-index: -1;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-cus-02:hover::after {
	border: .25rem solid var(--theme-color-02);
    top: 0;
    left: 0;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	.btn-cus-02,
	.btn-cus-02:focus {
		font-size: 7.5vw;
    	padding: 1rem 4rem;
	}
}

.home-page-top {
	position: relative;
}

.home-page-top .home-page-title {
    width: 100%;
    height: 100vh;
}

.home-page-top .home-page-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page-top .home-page-text {
	position: absolute;
	bottom: 10vw;
	z-index: 2;
}

.home-page-top .home-page-text .line-01 {
	color: var(--white-color);
	font-weight: 800;
	font-size: 6.5vw;
}

.home-page-top .home-page-text .line-02 {
	color: var(--white-color);
	font-weight: 600;
	font-size: 4.25vw;
}

.home-page-top .home-page-text .line-02 span {
	font-weight: 700;
}

@media (max-width: 992px) {
	.home-page-top .home-page-text .line-01 {
		font-size: 12vw;
	}
	.home-page-top .home-page-text .line-02 {
		font-size: 6.5vw;
	}	
}

.scetion-home-01 {
	position: relative;
	padding: 9rem 0;
}

.scetion-home-01 h1 {
	font-size: 3vw;
	font-weight: 800;
	margin-bottom: 1rem;
}

.scetion-home-01 p {
	font-size: 1.25vw;
}

.scetion-home-01 .home-img-03 {
		display: block;
	}

.scetion-home-01 .home-img-02 {
	width: 18vw;
	height: auto;
}

.scetion-home-01 .home-img-01 {
	position: absolute;
    top: 50%;
	right: -55%;
    margin: 0;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.scetion-home-01 .home-img-cer {
	width: 14vw;
	height: auto;
}

.scetion-home-01 .certified-text {
	font-size: 1.75vw;
	font-weight: 800;
}

@media (max-width: 992px) {
	.scetion-home-01 {
		padding: 5rem 0;
	}
	.scetion-home-01 h1 {
		font-size: 7vw;
	}
	.scetion-home-01 p {
		font-size: 4.5vw;
	}
	.scetion-home-01 .home-img-02 {
		width: 60vw;
	}
	.scetion-home-01 .home-img-03 {
		display: none;
	}
	.scetion-home-01 .home-img-01 {
		position: relative;
		top: 0;
		right: 0;
		-webkit-transform: translate(0,0);
		-ms-transform: translate(0,0);
		-o-transform: translate(0,0);
		transform: translate(0,0);
	}
	.scetion-home-01 .home-img-cer {
		width: 50vw;
	}
	.scetion-home-01 .certified-text {
		font-size: 6vw;
	}
}

.scetion-home-02 {
	position: relative;
	padding: 4.5rem 0 0 0;
}

.scetion-home-02 h2 {
	font-size: 7vw;
	font-weight: 800;
	margin-bottom: 1rem;
}

.scetion-home-02 p {
	font-size: 1.95vw;
	font-weight: 300;
}

@media (max-width: 992px) {
	.scetion-home-02 {
		padding: 2.5rem 0 0 0;
	}
	.scetion-home-02 h2 {
		font-size: 10vw;
	}
	.scetion-home-02 p {
		font-size: 5vw;
	}
}

.scetion-service {
	position: relative;
}

.scetion-service .scetion-service-title {
	background-color: var(--theme-color-01);
	color: var(--white-color);
	text-align: center;
	font-size: 4vw;
	font-weight: 800;
	padding: 1rem 0;
	margin: 4.5rem 0;
}

.scetion-service .service-cus-01 {
	position: relative;
	border: .25rem solid var(--white-color);
}

.scetion-service .service-cus-01 {
	position: relative;
	border: .25rem solid var(--white-color);
	overflow: hidden;
}

.scetion-service .service-cus-01 img {
	position: relative;
	transform: scale(1);
	z-index: -2;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.scetion-service .service-cus-01 .service-cus-info {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	background-color: var(--theme-color-02);
	padding: 1rem 3vw 1.5rem 3vw;
	opacity: 0;
    transform: translateX(-10px);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transition-delay: .1s;
	z-index: -1;
}

.scetion-service .service-cus-01 .service-cus-info .service-cus-info-title {
	color: var(--theme-color-01);
	font-size: 3.8vw;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: .5rem;
}

.scetion-service .service-cus-01 .service-cus-info .service-cus-info-text {
	color: var(--white-color);
	font-size: 1.15vw;
	font-weight: 300;
}

.scetion-service .service-cus-01:hover img {
	transform: scale(1.075);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.scetion-service .service-cus-01:hover .service-cus-info {
	opacity: 1;
    transform: translateX(0);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	transition-delay: .2s;
}

@media (max-width: 992px) {
	.scetion-service .scetion-service-title {
		font-size: 8vw;
		padding: 0.75rem 0;
		margin: 2.5rem 0;
	}
	.scetion-service .service-cus-01 .service-cus-info {
		padding: .5rem 6vw 1rem 6vw;
	}
	.scetion-service .service-cus-01 .service-cus-info .service-cus-info-title {
		font-size: 7.8vw;
	}
	.scetion-service .service-cus-01 .service-cus-info .service-cus-info-text {
		font-size: 3vw;
	}
}

.scetion-book {
	position: relative;
	background-color: var(--theme-color-02);
	padding: 9rem 0;
}

.scetion-book .scetion-book-title {
    display: block;
    background-color: var(--transparent-color);
    border: 0.5rem solid var(--theme-color-01);
    color: var(--white-color);
    font-size: 4vw;
    font-weight: 800;
    text-align: center;
    padding: 1rem 0;
}

.scetion-book .bookform {
    margin-top: 7rem;
}

.scetion-book .form-control {
    padding: 1.5rem 2.5rem;
    font-size: 1.75vw;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border: 3px solid var(--white-color);
    border-radius: 1.5rem;
}

.scetion-book .btn-book,
.scetion-book .btn-book:focus {
    background-color: var(--theme-color-01);
    color: var(--white-color);
    text-align: center;
    font-size: 3.5vw;
    font-weight: 800;
    padding: .75rem 0;
    margin: 0;
	border: none;
	border-radius: 1.5rem;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scetion-book .btn-book:hover {
    background-color: var(--white-color);
    color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scetion-book .bootstrap-datetimepicker-widget {
	display: block !important;
	background-color: var(--white-color);
	border: 3px solid var(--theme-color-01);
    border-radius: 1.5rem;
	margin-top: 1.5rem;
	padding: 2rem 1rem;
}

.scetion-book .bootstrap-datetimepicker-widget thead {
    color: var(--theme-color-01);
}

.scetion-book .bootstrap-datetimepicker-widget table td.day {
    height: 32px;
    line-height: 32px;
    width: 32px;
    border: none;
	font-weight: 500;
}

.scetion-book .bootstrap-datetimepicker-widget table td.disabled,
.scetion-book .bootstrap-datetimepicker-widget table td.disabled:hover {
    background: 0 0;
    color: var(--theme-color-02);
    cursor: not-allowed !important;
	text-decoration: line-through;
}

.scetion-book .bootstrap-datetimepicker-widget table td.active,
.scetion-book .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: var(--theme-color-01);
    color: var(--white-color);
}

.scetion-book .bootstrap-datetimepicker-widget table td.day:hover {
    background: var(--theme-color-01-50);
    cursor: pointer;
}

.scetion-book .bootstrap-datetimepicker-widget table td.new,
.scetion-book .bootstrap-datetimepicker-widget table td.old {
    color: var(--theme-color-02);
}

.scetion-book .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background: var(--theme-color-01-50);
    color: var(--theme-color-02);
}

.scetion-book .fa.fa-chevron-right::after {
	content: "←";
	font-size: 1.5rem;
    font-weight: 900;
    color: var(--theme-color-02);
}

.scetion-book .fa.fa-chevron-left::after {
	content: "→";
	font-size: 1.5rem;
    font-weight: 900;
    color: var(--theme-color-02);
}

@media (max-width: 992px) {
	.scetion-book {
		padding: 5rem 0;
	}
	.scetion-book .scetion-book-title {
		border: 0.25rem solid var(--theme-color-01);
		font-size: 8vw;
		padding: 0.75rem 0;
	}
	.scetion-book .bookform {
		margin-top: 4rem;
	}
	.scetion-book .form-control {
		padding: 1.25rem 2rem;
    	font-size: 5.5vw;
	}
	.scetion-book .btn-book,
	.scetion-book .btn-book:focus {
		font-size: 9vw;
	}
}

.scetion-testimonials {
	position: relative;
	background-color: var(--white-color);
	padding: 9rem 0;
}

.scetion-testimonials h3 {
    font-size: 3.5vw;
    font-weight: 700;
    margin-bottom: 9rem;
}

.scetion-testimonials .testimonialsswiper {
	position: relative;
}

.scetion-testimonials .testimonialsswiper .swiper-slide {
	background-color: var(--white-color);
}

.scetion-testimonials .testimonialsswiper img {
	margin-right: 10vw;
	width: 33vw;
}

.scetion-testimonials .testimonialsswiper .testi-img {
	margin-right: 10vw;
	width: 33vw;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 0;
	padding-top: 50%; 
}

.scetion-testimonials .testimonialsswiper .testi-name {
	margin-right: 45vw;
    position: absolute;
    top: 18vw;
    font-size: 4vw;
    font-weight: 800;
    color: var(--theme-color-01);
}

.scetion-testimonials .testimonialsswiper .testi-text {
	position: absolute;
    left: 10vw;
    top: 25vw;
    width: 53vw;
    height: 16vw;
    background-color: var(--theme-color-03-75);
    color: var(--white-color);
    padding: 3rem 6vw 2rem 3.5vw;
    font-size: 1.3vw;
    font-weight: 300;
	overflow: auto;
}

.scetion-testimonials .testimonialsswiper .testi-text::after {
	content: "„";
	position: absolute;
	top: 2rem;
    right: 2.5vw;
    font-size: 4vw;
    font-weight: 800;
    color: var(--theme-color-01);
	rotate: 180deg;
}

@media (min-width: 1400px) {
	.scetion-testimonials .testimonialsswiper .testi-text {
		top: 25.45vw;
	}	
}

.scetion-testimonials .testimonialsswiper .swiper-button-prev,
.scetion-testimonials .testimonialsswiper.swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
    top: 26.6vw;
    border-radius: 0;
    padding: 8vw 5vw;
    height: 16vw;
    text-align: center;
    background-color: var(--theme-color-01);
}

.scetion-testimonials .testimonialsswiper .swiper-button-prev::after {
    color: var(--white-color);
	font-size: 7vw;
}

.scetion-testimonials .testimonialsswiper .swiper-button-prev:hover {
    background-color: var(--theme-color-01);
}

.scetion-testimonials .testimonialsswiper .swiper-button-next,
.scetion-testimonials .testimonialsswiper.swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
    top: 26.6vw;
    border-radius: 0;
    padding: 8vw 5vw;
    height: 16vw;
    text-align: center;
    background-color: var(--theme-color-01);
}

.scetion-testimonials .testimonialsswiper .swiper-button-next::after {
    color: var(--white-color);
	font-size: 7vw;
}

.scetion-testimonials .testimonialsswiper .swiper-button-next:hover {
    background-color: var(--theme-color-01);
}

.scetion-testimonials.tisti-dark {
	background-color: var(--theme-color-02);
}

.scetion-testimonials.tisti-dark h3 {
    color: var(--white-color);
}

.scetion-testimonials.tisti-dark  .testimonialsswiper .swiper-slide {
    background-color: var(--theme-color-02);
}

@media (max-width: 992px) {
	.scetion-testimonials {
		padding: 5rem 0;
	}
	.scetion-testimonials h3 {
		font-size: 7vw;
		margin-bottom: 5rem;
	}
	.scetion-testimonials .testimonialsswiper {
		padding-bottom: 45vw;
	}
	.scetion-testimonials .testimonialsswiper img {
		margin-right: 0;
		width: 100vw;
	}
	.scetion-testimonials .testimonialsswiper .testi-img {
		margin-right: 0;
		width: calc(100vw - 12vw);
		padding-top: 150%; 
	}
	.scetion-testimonials .testimonialsswiper .swiper-button-prev,
	.scetion-testimonials .testimonialsswiper.swiper-container-rtl .swiper-button-next {
		top: auto;
		bottom: 45vw;
	}
	.scetion-testimonials .testimonialsswiper .swiper-button-next,
	.scetion-testimonials .testimonialsswiper.swiper-container-rtl .swiper-button-prev {
		top: auto;
		bottom: 45vw;
	}
	.scetion-testimonials .testimonialsswiper .testi-name {
		margin-left: 10vw;
		margin-right: 10vw;
		width: 68vw;
		top: auto;
		bottom: 0;
		font-size: 5vw;
    	padding: 1rem 0;
		text-align: center;
		background-color: var(--white-color);
	}
	.scetion-testimonials .testimonialsswiper .testi-text {
		top: auto;
		left: 0;
		bottom: -45vw;
		width: 88vw;
		height: 45vw;
		font-size: 3vw;
		padding: 1rem 8vw 0.5rem 3.5vw;
		background-color: var(--theme-color-03);
	}
	.scetion-testimonials .testimonialsswiper .testi-text::after {
		top: 0.75rem;
		right: 1.5vw;
		font-size: 8vw;
	}
}

.pages-top {
	position: relative;
}

.pages-top .pages-top-title {
    width: 100%;
    height: 100vh;
}

.pages-top .pages-top-title img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pages-top .pages-top-text {
	position: absolute;
	bottom: 10vw;
	right: 0;
	width: 100vw;
	background-color: var(--black-color-50);
	padding: 2rem 0;
	z-index: 2;
}

.pages-top .pages-top-text.pages-top-small {
	width: 28.7vw;
}

.pages-top .pages-top-text h1 {
	color: var(--white-color);
	font-weight: 800;
	font-size: 4vw;
}

.pages-top .pages-top-text.pages-top-small h1 {
    font-size: 3vw;
}

@media (max-width: 992px) {
	.pages-top .pages-top-text {
		bottom: 20vw;
		padding: 1rem 0;
	}
	.pages-top .pages-top-text h1 {
		font-size: 10vw;
	}
	.pages-top .pages-top-text.pages-top-small {
		width: 100vw;
		text-align: center;
	}
	.pages-top .pages-top-text.pages-top-small h1 {
		font-size: 9vw;
	}
}

.scetion-newsletter {
	position: relative;
	padding: 5rem 0;
}

.scetion-newsletter h3 {
	font-size: 3vw;
	font-weight: 700;
}

.scetion-newsletter .form-control {
    padding: 1.5rem 2.5rem;
    font-size: 1.75vw;
    font-weight: 700;
    line-height: 1.5;
    color: var(--theme-color-02);
    background-color: var(--white-color);
    border: 3px solid var(--theme-color-01);
    border-radius: 1.5rem;
}

.scetion-newsletter input::-ms-input-placeholder {
	color: var(--theme-color-02-50) !important;
	opacity: 1 !important;
}
.scetion-newsletter input::placeholder {
	color: var(--theme-color-02-50) !important;
	opacity: 1 !important;
}

.scetion-newsletter button,
.scetion-newsletter button:focus {
    background-color: var(--theme-color-01);
    color: var(--white-color);
    text-align: center;
    font-size: 1.75vw;
    font-weight: 800;
    padding: 0.75rem 0;
    margin: 0;
    border: none;
    border-radius: 1.5rem;
	width: 30%;
    height: 100%;
    position: absolute;
    left: 0;
	top: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scetion-newsletter button:hover {
    background-color: var(--theme-color-02);
    color: var(--white-color);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	.scetion-newsletter {
		padding: 3rem 0;
	}
	.scetion-newsletter h3 {
		font-size: 10vw;
	}
	.scetion-newsletter .form-control {
		padding: 1.25rem 2rem;
    	font-size: 5.5vw;
	}
	.scetion-newsletter button,
	.scetion-newsletter button:focus {
		font-size: 6vw;
		padding: 1.3rem 0;
		width: 100%;
		height: 100%;
		position: relative;
		right: 0;
		margin-top: 0.5rem;
	}
}

.scetion-about-01 {
	position: relative;
	padding: 9rem 0 4rem 0;
}

.scetion-about-01 h2 {
	font-size: 3vw;
	font-weight: 800;
	margin-bottom: 1rem;
}

.scetion-about-01 p {
	font-size: 1.4vw;
}

.scetion-about-01 .about-img-02 {
	width: 30vw;
	height: auto;
}

.scetion-about-01 .about-img-cer {
	width: 23vw;
	height: auto;
}

.scetion-about-01 .certified-text {
	font-size: 3vw;
	font-weight: 800;
}

@media (max-width: 992px) {
	.scetion-about-01 {
		padding: 5rem 0 2.5rem 0;
	}
	.scetion-about-01 h2 {
		font-size: 7vw;
	}
	.scetion-about-01 p {
		font-size: 4.5vw;
	}
	.scetion-about-01 .about-img-02 {
		width: 80vw;
	}
	.scetion-about-01 .about-img-cer {
		width: 75vw;
	}
	.scetion-about-01 .certified-text {
		font-size: 9vw;
	}
}

.scetion-contact-01 {
	position: relative;
	padding: 9rem 0 4rem 0;
	text-align: center;
	background-color: var(--theme-color-02);
}

.scetion-contact-01 h2 {
	font-size: 3vw;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--white-color);
}

.scetion-contact-01 .form-control {
    padding: 1.5rem 2.5rem;
    font-size: 1.75vw;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border: 3px solid var(--white-color);
    border-radius: 1.5rem;
	text-align: center;
}

.scetion-contact-01 textarea.form-outline  {
    resize: none;
    height: auto;
}

.scetion-contact-01 .btn-book,
.scetion-contact-01 .btn-book:focus {
    background-color: var(--theme-color-01);
    color: var(--white-color);
    text-align: center;
    font-size: 3.5vw;
    font-weight: 800;
    padding: .75rem 0;
    margin: 0;
	border: none;
	border-radius: 1.5rem;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.scetion-contact-01 .btn-book:hover {
    background-color: var(--white-color);
    color: var(--theme-color-02);
	-webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 992px) {
	.scetion-contact-01 {
		padding: 5rem 0 2.5rem 0;
	}
	.scetion-contact-01 h2 {
		font-size: 7vw;
	}
	.scetion-contact-01.bookform {
		margin-top: 4rem;
	}
	.scetion-contact-01 .form-control {
		padding: 1.25rem 2rem;
    	font-size: 5.5vw;
	}
	.scetion-contact-01 .btn-book,
	.scetion-contact-01 .btn-book:focus {
		font-size: 9vw;
	}
}

input::-ms-input-placeholder {
	color: var(--white-color-50) !important;
	opacity: 1 !important;
}
input::placeholder {
	color: var(--white-color-50) !important;
	opacity: 1 !important;
}
textarea::-ms-input-placeholder {
	color: var(--white-color-50) !important;
	opacity: 1 !important;
}
textarea::placeholder {
	color: var(--white-color-50) !important;
	opacity: 1 !important;
}

.scetion-blogs-01 {
	position: relative;
	padding: 9rem 0 4rem 0;
}

.scetion-blogs-01 .blog-info {
	position: relative;
}

.scetion-blogs-01 .blog-info img {
	margin-bottom: 1rem;
}

.scetion-blogs-01 .blog-info p {
	font-size: 1.34vw;
    padding: 0 .5rem;
}

.scetion-blogs-01 .blog-info a,
.scetion-blogs-01 .blog-info a:focus {
	font-size: 2.25vw;
	font-weight: 800;
	color: var(--theme-color-02);
	margin-top: 0;
	display: inline-block;
}

.scetion-blogs-01 .blog-info a:hover {
	color: var(--theme-color-01);
}

.scetion-blogs-01 .blog-dark {
	background-color: var(--theme-color-02);
	color: var(--white-color);
	padding: 6rem 3rem;
}

.scetion-blogs-01 .blog-share h2 {
	color: var(--white-color);
	font-size: 3.5vw;
	font-weight: 800;
	text-align: center;
	margin-bottom: 1rem;
}

.scetion-blogs-01 .share-cus {
	position: relative;
	text-align: center;
	margin: 2rem 0 12vw 0;
	display: inline-block;
	width: 100%;
}

.scetion-blogs-01 .blog-info-02 {
	position: relative;
}

.scetion-blogs-01 .blog-info-02 img {
	margin-bottom: .5rem;
}

.scetion-blogs-01 .blog-info-02 p {
	font-size: 1.3vw;
    padding: 0;
}

.scetion-blogs-01 .blog-info-02 a,
.scetion-blogs-01 .blog-info-02 a:focus {
	font-size: 1.25vw;
	font-weight: 800;
	color: var(--white-color);
	margin-top: .25rem;
	display: inline-block;
}

.scetion-blogs-01 .blog-info-02 a:hover {
	color: var(--theme-color-01);
}

@media (max-width: 992px) {
	.scetion-blogs-01 {
		padding: 5rem 0 2.5rem 0;
	}
	.scetion-blogs-01 .blog-info p {
		font-size: 4vw;
	}
	.scetion-blogs-01 .blog-info a,
	.scetion-blogs-01 .blog-info a:focus {
		font-size: 7vw;
	}
	.scetion-blogs-01 .blog-dark {
		padding: 1.5rem;
	}
	.scetion-blogs-01 .blog-share h2 {
		font-size: 10vw;
	}
	.scetion-blogs-01 .share-cus {
		margin: 1.5rem 0 3rem 0;
	}
	.scetion-blogs-01 .blog-info-02 p {
		font-size: 4vw;
	}
	.scetion-blogs-01 .blog-info-02 a,
	.scetion-blogs-01 .blog-info-02 a:focus {
		font-size: 5vw;
	}
}

.scetion-blogs-det-01 {
	position: relative;
	padding: 5rem 0 7rem 0;
	background-color: var(--theme-color-02);
	color: var(--white-color);
	text-align: center;
}

.scetion-blogs-det-01 h1 {
	font-size: 4vw;
	margin-bottom: 3rem;
	font-weight: 800;
}

.scetion-blogs-det-01 p {
	font-size: 1.65vw;
    font-weight: 300;
}

.scetion-blogs-det-01 .video-cus {
	width: 100%;
	height: 100%;
	position: relative;
}

.scetion-blogs-det-01 .video-cus::before {
	content: "";
	background-image: url(../img/blogs/video-icon.webp);
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25%;
	height: 25%;
	-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

@media (max-width: 992px) {
	.scetion-blogs-det-01 {
		padding: 2rem 0 3rem 0;
	}
	.scetion-blogs-det-01 h1 {
		font-size: 7vw;
		margin-bottom: 1rem;
	}
	.scetion-blogs-det-01 p {
		font-size: 4vw;
	}
}

.scetion-services-det-01 {
	position: relative;
	padding: 5rem 0 0 0;
	background-color: var(--theme-color-02);
	color: var(--white-color);
	text-align: center;
}

.scetion-services-det-01 h2 {
	font-size: 4vw;
	margin-bottom: 3rem;
	font-weight: 800;
}

.scetion-services-det-01 p {
	font-size: 1.65vw;
    font-weight: 300;
}

@media (max-width: 992px) {
	.scetion-services-det-01 {
		padding: 2rem 0 0 0;
	}
	.scetion-services-det-01 h2 {
		font-size: 7vw;
		margin-bottom: 1rem;
	}
	.scetion-services-det-01 p {
		font-size: 4vw;
	}
}

iframe {
	max-width: 100% !important;
	width: 100% !important;
	border: none;
}


/****** Jssocials Shares ******/

.jssocials-shares {
    margin: 0;
	display: inline-block;
}

.jssocials-share {
    display: inline-block;
    margin: 0 0 0 2rem;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	width: 3rem;
    height: 3rem;
}

.jssocials-share:last-child {
    margin: 0;
}

.jssocials-share-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 1;
	width: 100%;
    height: 100%;
}

.jssocials-share-facebook {
	background-image: url(../img/pages/facebook.webp);
}

.jssocials-share-twitter {
	background-image: url(../img/pages/twitter.webp);
}

.jssocials-share-whatsapp {
	background-image: url(../img/pages/whatsapp.webp);
}

.jssocials-share-linkedin {
	background-image: url(../img/pages/linkedin.webp);
}

.jssocials-share-email {
	background-image: url(../img/pages/email.webp);
}

@media (max-width: 992px) {
	.jssocials-share {
		margin: 0 1.5rem 0 0;
		width: 2rem;
		height: 2rem;
	}
}

.video-slide {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.scetion-testimonials-02 {
	position: relative;
	background-color: var(--white-color);
	padding: 9rem 0;
}

.scetion-testimonials-02 h3 {
    font-size: 3.5vw;
    font-weight: 700;
    margin-bottom: 9rem;
}

.scetion-testimonials-02 .testimonialsswiper {
	position: relative;
}

.scetion-testimonials-02 .swiper-container {
    overflow: inherit;
	height: max-content;
}

.scetion-testimonials-02 .testimonialsswiper .swiper-slide {
	background-color: var(--white-color);
}

.scetion-testimonials-02 .testimonialsswiper img {
	margin-right: 10vw;
	width: 33vw;
}

.scetion-testimonials-02 .testimonialsswiper .testi-img {
	margin-right: 10vw;
	width: 33vw;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	padding: 0;
}

.scetion-testimonials-02 .testimonialsswiper .testi-name {
	margin-right: 45vw;
    position: absolute;
    top: 0;
    font-size: 3vw;
    font-weight: 800;
    color: var(--theme-color-01);
}

.scetion-testimonials-02 .testimonialsswiper .testi-text {
	position: absolute;
    left: 10vw;
    top: 6vw;
    width: 42vw;
    height: max-content;
    min-height: 27vw;
    background-color: var(--theme-color-03-75);
    color: var(--white-color);
    padding: 3rem 6vw 2rem 3.5vw;
    font-size: 1.3vw;
    font-weight: 300;
}

.scetion-testimonials-02 .testimonialsswiper .testi-text::after {
	content: "„";
	position: absolute;
	top: 2.5rem;
    right: 2.5vw;
    font-size: 4vw;
    font-weight: 800;
    color: var(--theme-color-01);
	rotate: 180deg;
}

.scetion-testimonials-02 .testimonialsswiper .swiper-button-prev,
.scetion-testimonials-02 .testimonialsswiper.swiper-container-rtl .swiper-button-next {
    left: 0;
    right: auto;
    border-radius: 0;
    padding: 8vw 5vw;
    height: 16vw;
	margin-top: -16vw;
    text-align: center;
    background-color: var(--theme-color-01);
}

.scetion-testimonials-02 .testimonialsswiper .swiper-button-prev::after {
    color: var(--white-color);
	font-size: 7vw;
}

.scetion-testimonials .testimonialsswiper .swiper-button-prev:hover {
    background-color: var(--theme-color-01);
}

.scetion-testimonials-02 .testimonialsswiper .swiper-button-next,
.scetion-testimonials-02 .testimonialsswiper.swiper-container-rtl .swiper-button-prev {
    right: 0;
    left: auto;
    border-radius: 0;
    padding: 8vw 5vw;
    height: 16vw;
	margin-top: -16vw;
    text-align: center;
    background-color: var(--theme-color-01);
}

.scetion-testimonials-02 .testimonialsswiper .swiper-button-next::after {
    color: var(--white-color);
	font-size: 7vw;
}

.scetion-testimonials-02 .testimonialsswiper .swiper-button-next:hover {
    background-color: var(--theme-color-01);
}

.scetion-testimonials-02.tisti-dark {
	background-color: var(--theme-color-02);
}

.scetion-testimonials-02.tisti-dark h3 {
    color: var(--white-color);
}

.scetion-testimonials-02.tisti-dark  .testimonialsswiper .swiper-slide {
    background-color: var(--theme-color-02);
}

@media (max-width: 992px) {
	.scetion-testimonials-02 {
		padding: 5rem 0;
	}
	.scetion-testimonials-02 h3 {
		font-size: 7vw;
		margin-bottom: 5rem;
	}
	.scetion-testimonials-02 .testimonialsswiper {
		padding-bottom: 60vw;
	}
	.scetion-testimonials-02 .testimonialsswiper img {
		margin-right: 0;
		width: 100vw;
	}
	.scetion-testimonials-02 .testimonialsswiper .testi-img {
		margin-right: 0;
		width: 100%; 
	}
	.scetion-testimonials-02 .testimonialsswiper .swiper-button-prev,
	.scetion-testimonials-02 .testimonialsswiper.swiper-container-rtl .swiper-button-next {
		margin-top: 0;
	}
	.scetion-testimonials-02 .testimonialsswiper .swiper-button-next,
	.scetion-testimonials-02 .testimonialsswiper.swiper-container-rtl .swiper-button-prev {
		margin-top: 0;
	}
	.scetion-testimonials-02 .testimonialsswiper .testi-name {
		margin-left: 10vw;
		margin-right: 10vw;
		width: 68vw;
		top: auto;
		font-size: 5vw;
    	padding: 1rem 0;
		text-align: center;
		background-color: var(--white-color);
		z-index: 1;
	}
	.scetion-testimonials-02 .testimonialsswiper .testi-text {
		top: auto;
		left: 0;
		width: 100%;
		margin-top: 16vw;
		font-size: 3vw;
		padding: 1rem 8vw 0.5rem 3.5vw;
    	background-color: var(--theme-color-03);	
	}
	.scetion-testimonials-02 .testimonialsswiper .testi-text::after {
		top: 0.75rem;
		right: 1.5vw;
		font-size: 8vw;
	}
}

.insta-acc {
	background-color: var(--white-color);
	padding: .25rem;
}

.insta-acc .profile-img {
	background: #f09433; 
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
	border-radius: 100%;
	padding: 2px;
}

.insta-acc .profile-img img {
	border: 2px solid var(--white-color);
	border-radius: 100%;
}

.insta-acc .insta-name {
	font-size: 1.25vw;
	font-weight: 700;
}

.insta-acc .insta-country {
	font-size: 1vw;
	font-weight: 600;
}

.insta-acc .insta-btn {
	background-color: rgb(0, 149, 246);
	border: none;
	border-radius: .25rem;
	display: block;
	color: var(--white-color);
	text-align: center;
	font-size: 1.25vw;
	font-weight: 600;
	padding: .25rem;
}

@media (max-width: 576px) {
	.insta-acc .insta-name {
		font-size: 3.25vw;
	}

	.insta-acc .insta-country {
		font-size: 3vw;
	}

	.insta-acc .insta-btn {
		font-size: 3.25vw;
	}
}
