@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");
/* font-family: 'Open Sans', sans-serif; */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
/* font-family: 'Roboto', sans-serif; */
@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/* font-family: 'Montserrat', sans-serif; */
@import url("https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i&display=swap");
/* font-family: 'Karla', sans-serif; */
@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap");
/* font-family: 'Poppins', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&display=swap');
/* font-family: 'Playfair Display', serif; */

/* colorpalate 
Black #000
light black #262626

Dark Blue
#050a30

Navy Blue
#000c66

Blue
#0000ff

Baby Blue
#7ec8e3
*/

:root {
	--black: #000;
	--white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	background-color: #fff;
	width: 100%;
    height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	width: 100%;
	min-height:100%;
	font-family: "Karla", sans-serif;
	font-weight: 400;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	line-height: 26px;
	vertical-align: baseline;
	letter-spacing: normal;
	word-spacing: 0px;
	background: #f2f2f2;
	scroll-behavior: smooth;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Open Sans", sans-serif;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: normal;
	word-spacing: normal;
	color: #7a7a7a;
}

p strong {
	font-weight: bold;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	color: #555555;
}

.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}


.btn-dark.focus, .btn-dark:focus {
    box-shadow: 0 0 0 0.2rem rgb(52 58 64 / 0%) !important;
}

/* header START */
#main {
    position: relative;
    min-height: 100vh;
}

#main .container {
	max-width: 98%;
	height: auto;
	padding-left: 75px;
	padding-right: 75px;
}

section {
   display: block;
    position: relative;
    overflow: hidden;
}

/* home logo section START */
.home_bg {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 0;
}

.home_bg::before {
	content: "";
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background: url(../logo/blue.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.home_bg::after {
	content: "";
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background: url(../logo/pink.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.home_logo {
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
}

.home_logo a:nth-child(1) {
	margin: 0;
	position: relative;
	top: 120px;
	left: 70px;
}

.home_logo a:nth-child(2) {
	margin: 0;
	position: relative;
	top: -100px;
	left: -80px;
}

.logos_sec {
	margin: 0 auto;
	padding: 0;
	width: 450px;
	height: 320px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.logos_sec::before {
	content: "";
	background-image: url(../logo/logo-bg-2.png);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.logos_sec img {
	display: block;
	position: relative;
	top: 0;
	left: 10px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 300px;
	height: 230px;
	z-index: 1;
}

.logos_sec2 {
	margin: 0 auto;
	padding: 10px;
	width: 450px;
	height: 320px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.logos_sec2::before {
	content: "";
	background-image: url(../logo/logo-bg-1.png);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.logos_sec2 img {
	display: block;
	position: relative;
	top: 0;
	left: -10px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 300px;
	height: 230px;
	z-index: 1;
}

/* home logo section END */

/* home logo section START */
.home_bg2 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	z-index: 0;
}

.home_bg2::before {
	content: "";
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background: url(../logo/blue.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.home_bg2::after {
	content: "";
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	background: url(../logo/pink.jpg) no-repeat;
	background-size: cover;
	background-position: bottom center;
	z-index: -1;
}

.home_logo2 {
	position: relative;
	width: 100%;
	height: 600px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
}

.home_logo2 a:nth-child(1) {
	margin: 0;
	position: relative;
	top: 70px;
	left: 70px;
}

.home_logo2 a:nth-child(2) {
	margin: 0;
	position: relative;
	top: -70px;
	left: -70px;
}

.logos_sec_1 {
	margin: 0 auto;
	padding: 0;
	width: 385px;
	height: 250px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.logos_sec_1::before {
	content: "";
	background-image: url(../logo/logo-2.png);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.logos_sec_1 img {
	display: block;
	position: relative;
	top: 0;
	left: -22px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 335px;
	height: 230px;
	z-index: 1;
}

.logos_sec_2 {
	margin: 0 auto;
	padding: 10px;
	width: 385px;
	height: 250px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.logos_sec_2::before {
	content: "";
	background-image: url(../logo/logo-1.png);
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	position: absolute;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.logos_sec_2 img {
	display: block;
	position: relative;
	top: 0;
	left: 22px;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 335px;
	height: 230px;
	z-index: 1;
}

/* home logo section END */

.footer_bg {
	background-color: #0d1028 !important;
}

.header-bar {
	background: #07012d;
	height: 40px;
	position: relative;
	z-index: 1;
}

.header-bg {
	position: relative;
	margin-top: 0;
	z-index: 2;
	width: 100%;
	-webkit-box-shadow: 0px 2px 15px 1px rgba(1, 1, 1, 0.25);
	-moz-box-shadow: 0px 2px 15px 1px rgba(1, 1, 1, 0.25);
	box-shadow: 0px 2px 15px 1px rgba(1, 1, 1, 0.25);
}

/* logo  */
.logo {
	width: 100%;
	height: auto;
	margin-top: 2px;
	margin-bottom: 2px;
}

ul {
	list-style-type: none;
	list-style-position: outside;
	padding: 0;
	margin: 0;
}

.navbar-light .navbar-nav .nav-link {
	color: rgb(7, 1, 45);
}

.dropdown-menu {
	border-radius: 0.5rem;
	padding: 0;
	text-transform: uppercase;
    font-weight: 600;
    max-width: 225px;
    width: 225px;
	overflow: hidden;
}
.dropdown-menu .dropdown-item {
    padding: 0.5rem 1.5rem;
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: #0000ff;
}

/* scroll top fixed header */
#nav_bar {
	/* this id to added to scroll to top */
	background: #ffffff;
}

.navbar-fixed {
	top: 0;
	margin: 0;
	z-index: 100;
	position: fixed;
	width: 100%;
	height: 75px;
	background: #fff;
}

.logo {
	width: 125px;
	height: auto;
}

.navbar-fixed .logo {
	width: 125px;
	height: auto;
	margin: 0;
}

.navbar-fixed .headr-contact {
	display: none;
}

.navbar-nav .nav-link {
	display: block;
	padding: 0.5rem 1rem;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}

/* scroll top fixed header */
.about-text {
	position: relative;
	width: 100%;
	text-align: justify;
	padding: 8px 20px;
	margin: 0;
}

.about-text h2 {
	font-size: 28px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	text-align: left;
	letter-spacing: normal;
	text-transform: capitalize;
	margin-top: 0;
	margin-bottom: 1rem;
	color: #262626;
}

.navbar-nav .nav-link.btn-theme {
	background-color: #262626;
	color: #ffffff !important;
	margin-right: 0.5rem;
}

.navbar-light .navbar-nav .active>.nav-link.btn-theme {
	background-color: #0000ff;
}

/* jquery counter animation Start */
.bg_animation {
	background-color: #0d1028;
}

.animation {
	position: relative;
	z-index: 2;
	padding: 0;
	margin-bottom: 10px;
	background: #050a30;
	height: 200px;
	border-radius: 5px;
	overflow: hidden;
	transition: 0.5s;
}

.clip-path {
	padding: 50px 15px 10px;
	background: #000c66;
	-webkit-clip-path: polygon(20% 100%, 100% 0%, 100% 0, 0 0, 0 0%);
	clip-path: polygon(20% 100%, 100% 0%, 100% 0, 0 0, 0 0%);
	position: relative;
	z-index: 2;
}

.counter {
	border-radius: 5px;
	position: relative;
	padding: 20px 25px 25px;
}

.counter:before {
	content: "";
	width: 400px;
	height: 400px;
	border-radius: 50%;
	position: absolute;
	left: 40%;
	top: 0px;
	background: repeating-radial-gradient(hsla(0, 0%, 100%, 0.06),
			hsla(0, 0%, 100%, 0.04) 20%);
	transition: 0.5s;
}

.animation:hover {
	transform: translatey(-10%);
	transition: 1s;
}

.animation:hover .counter:before {
	transform: translateX(-80%);
}

.animation-counter .ct-icon-shape {
	display: table-cell;
	vertical-align: top;
	text-align: center;
}

.animation-counter .ct-icon-shape .ct-icon {
	width: 78px;
	height: 78px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-transition: all 3s;
	-moz-transition: all 3s;
	-ms-transition: all 3s;
	-o-transition: all 3s;
}

.animation-counter .ct-icon-shape .ct-icon {
	background-color: #fffefd;
}

.animation-counter .ct-icon-shape .ct-icon i {
	line-height: 78px;
	color: #0000ff;
}

.animation-counter .ct-content {
	display: table-cell;
	vertical-align: top;
	padding-left: 20px;
	line-height: 1.29;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
}

.animation-counter .ct-content h4 {
	letter-spacing: 0.1em;
	color: #fff;
	font-size: 36px;
	font-weight: 700;
}

/* header END */
.jumbotron {
	padding: 2rem 1rem;
	margin-bottom: 0rem;
	background-color: transparent;
	border-radius: 0;
}

.jumbotron p {
	color: #fff;
}

.display-4 {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0.75rem 1rem;
	margin-bottom: 0;
	list-style: none;
	background-color: transparent;
	border-radius: 0.25rem;
	justify-content: center;
	align-items: center;
}

.breadcrumb-item a {
	color: #fff;
}

.parallex-1 {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
		url(../images/header-bg/outdoorphotography.jpeg);
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: top center;
	padding-top: 10rem;
	padding-bottom: 10rem;
	margin: 0 auto;
}

.parallex-2 {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
		url(../images/header-bg/outdoorphotography.jpeg);
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 10rem;
	padding-bottom: 10rem;
	margin: 0 auto;
}

.parallex-3 {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
		url(../images/header-bg/outdoorphotography.jpeg);
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 10rem;
	padding-bottom: 10rem;
	margin: 0 auto;
}

.parallex-4 {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
		url(../images/header-bg/birthday-4.jpeg);
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 10rem;
	padding-bottom: 10rem;
	margin: 0 auto;
}

.home-parallex,
.about-parallex {
	position: relative;
	width: 100%;
	height: auto;
}

.home-parallex:before {
	content: '';
	position: absolute;
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/photos/7.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.about-parallex::before {
	content: '';
	position: absolute;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/photos/9.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.home-parallex .content {
	position: relative;
	max-width: 750px;
	padding: 200px 0px;
	margin: 0 auto;
	text-align: center;
}

.home-parallex .content h2 {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	margin-bottom: 2rem;
	text-align: center;
}

.home-parallex .content h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 3rem;
	color: #ffc107;
	margin-bottom: 1rem;
	text-transform: none;
	font-family: 'Playfair Display', sans-serif;
	font-style: italic;
}

.home-parallex .content p {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
	letter-spacing: 0.5px;
	color: var(--white);
}

.about-parallex .content {
	position: relative;
	max-width: 750px;
	padding: 175px 0px;
}

.about-parallex .content h2 {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	margin-bottom: 1rem;
}

.about-parallex .content h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 3rem;
	color: #ffc107;
	margin-bottom: 1rem;
	text-transform: none;
	font-family: 'Playfair Display', sans-serif;
	font-style: italic;
}

.about-parallex .content p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.4px;
	color: var(--white);
}

.btn-view {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	background: #0000ff;
	color: var(--white);
	padding: 12px 25px;
	border: 2px solid #0000ff;
	text-transform: uppercase;
	border-radius: 50px;
	min-width: 150px;
	margin: 10px 10px;
	outline: none;
	transition: 0.3s;
}

.btn-view:hover,
.btn-view:focus {
	color: var(--white)
}

.btn-custom {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	background: #fff;
	color: var(--black);
	padding: 12px 25px;
	border: 2px solid #000;
	text-transform: uppercase;
	border-radius: 50px;
	min-width: 150px;
	margin: 10px 10px;
	outline: none;
	transition: 0.3s;
}

.padding-sec {
	padding-top: 6rem;
	padding-bottom: 6rem;
}

/* slider START */
.home-slider {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	transition: all 1s;
}

.home-slider .carousel-inner img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.carousel-caption {
	width: 700px;
	height: 150px;
	z-index: 10;
	color: #fff;
	top: 40%;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.carousel-caption h1 {
	font-size: 44px;
	font-weight: 700;
	color: yellow;
	line-height: 50px;
	vertical-align: baseline;
	letter-spacing: normal;
	background: rgb(0, 167, 79, 0.8);
	display: inline-block;
	padding: 5px 25px;
	text-transform: none;
}

.carousel-caption p {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
}

.sec-bg1 {
	background: #f5f5f5;
}

.title-h1 {
	font-size: 40px;
	text-align: center;
	text-transform: none;
	margin-top: 10px;
	margin-bottom: 10px;
}

h2 {
	font-size: 28px;
	font-weight: 700;
	text-align: left;
	letter-spacing: normal;
	text-transform: capitalize;
	margin-top: 15px;
	margin-bottom: 12px;
	color: #262626;
}

.section-title {
	font-size: 2rem;
	font-weight: 600;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	text-align: center;
	letter-spacing: normal;
	text-transform: none;
	margin-top: 1rem;
	color: #262626;
	margin-bottom: 1.5rem;
}

.title-h2 {
	font-size: 2rem;
	font-weight: 700;
	text-align: left;
	letter-spacing: normal;
	text-transform: capitalize;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	color: #262626;
	position: relative;
	font-family: 'Playfair Display', serif;
}

.title-h2::before {
	content: "";
	border-bottom: 2px solid #007bff;
	width: 100px;
	display: block;
	bottom: -0.5rem;
	margin: 0 auto;
	position: absolute;
}

.title-h3 {
	display: inline-block;
	margin: 0 auto;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	padding-bottom: 8px;
	letter-spacing: 1px;
	text-transform: none;
	margin-top: 15px;
	margin-bottom: 22px;
	color: #262626;
	border-bottom: 3px solid #ff0057;
}

.title-h4 {
	font-size: 22px;
	font-weight: 700;
	text-align: left;
	text-transform: none;
	margin-bottom: 10px;
	color: #0ab09d;
}

.service_scroll .slick-slide {
	padding: 0;
}


.service-bg {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
}

.service-bg::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	right: 0;
	top: 0;
	background: transparent url('../images/backgrounds/gray-bg.png') top right no-repeat;
	z-index: -1;

}

.service-bg::after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	bottom: 0;
	background: transparent url('../images/backgrounds/graybg-bottom.png	') bottom left no-repeat;
	z-index: -1;
}

#heartContainer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	pointer-events: none;
	z-index: 1
}

#heartContainer>div {
	position: absolute;
	width: 45px;
	height: 45px;
	-webkit-animation-iteration-count: infinite, infinite;
	-webkit-animation-direction: normal, normal;
	-webkit-animation-timing-function: linear, ease-in
}

#heartContainer>div>img {
	position: absolute;
	width: auto;
	height: auto;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-timing-function: linear;
	-webkit-transform-origin: 50% -100%
}

@-webkit-keyframes fade {

	0%,
	85% {
		opacity: 1
	}

	90% {
		opacity: 0
	}
}

@-webkit-keyframes drop {
	0% {
		-webkit-transform: translate(0, 50px)
	}

	100% {
		-webkit-transform: translate(0, -1950px)
	}
}


@-webkit-keyframes clockwiseSpin {
	0% {
		-webkit-transform: rotate(-50deg)
	}

	60% {
		-webkit-transform: rotate(50deg)
	}

	80% {
		-webkit-transform: rotate(80deg)
	}

	100% {
		-webkit-transform: rotate(-40deg)
	}
}

@-webkit-keyframes counterclockwiseSpinAndFlip {
	0% {
		-webkit-transform: scale(-1, 1) rotate(80deg)
	}

	100% {
		-webkit-transform: scale(-1, 1) rotate(-80deg)
	}
}

/* scroll to top START */
#back2Top {
	width: 40px;
	line-height: 40px;
	overflow: hidden;
	z-index: 999;
	display: none;
	cursor: pointer;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0);
	position: fixed;
	bottom: 100px;
	right: 10px;
	background-color: #262626;
	color: #ffffff;
	text-align: center;
	font-size: 22px;
	text-decoration: none;
	border-radius: 48px;
}

#back2Top:hover {
	background-color: #ddf;
	color: #000;
}

/* scroll to top END */

/* about section ATART */
.profile_box {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	height: 500px;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.imgBox {
	width: 300px;
	height: auto;
	float: left;
	position: relative;
	z-index: 1;
}

.profile_content {
	width: 700px;
	height: 100%;
	background: transparent;
	position: relative;
	padding: 40px 40px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: justify;
	z-index: 0;
}

.profile_content:before {
	content: "";
	position: absolute;
	top: -25px;
	bottom: -25px;
	left: -140px;
	right: -20px;
	background: #fff;
	z-index: -1;
	border: 1px solid #ccc;
	border-radius: 12px;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.26);
}

.middle {
	position: relative;
	display: block;
	margin: 0 auto;
	text-align: center;
}

.profile {
	cursor: pointer;
	width: 275px;
	height: 350px;
	margin: 10px 10px;
}

.front,
.back {
	width: 100%;
	height: 100%;
	overflow: hidden;
	backface-visibility: hidden;
	position: absolute;
	transition: transform 0.4s linear;
}

.front img {
	width: 100%;
	height: auto;
	left: 0;
	top: 0;
	object-fit: contain;
	border-radius: 12px;
}

.front {
	transform: perspective(600px) rotateY(0deg);
}

.back {
	border: 2px solid #673ab7;
	background: #673ab7;
	transform: perspective(600px) rotateY(180deg);
	border-radius: 12px;
}

.profile:hover>.front {
	transform: perspective(600px) rotateY(-180deg);
}

.profile:hover>.back {
	transform: perspective(600px) rotateY(0deg);
}

.back-content {
	color: #ffffff;
	text-align: center;
	width: 100%;
	position: relative;
	top: 25%;
	left: 0;
}

.back-content h2 {
	color: #fff;
	text-align: center;
}

.back-content p {
	color: #fff;
}

.social-media {
	margin: 20px 0;
}

.social-media a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 18px;
	transition: 0.4s;
	border-radius: 50%;
}

.social-media a:hover {
	background: #2c3e50;
	color: white;
	text-decoration: none;
}

/* about section END */

/* service section START */
.service_box {
	padding: 0;
	box-sizing: border-box;
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, .16);
}

.service_content {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
	background-color: #fff;
	position: relative;
	padding: 20px 24px 0px 24px;
	transition: 0.5s;
	border-radius: 12px;
	height: 100%;
	box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, .16);
}

.service_content h2 {
	color: #000;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: normal;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: none;
	font-family: 'Playfair Display', serif;
}


.service_box .service_content p {
	color: #fff;
}

.service_content p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.02rem;
	word-spacing: normal;
	color: #7a7a7a;
}

.service_box:hover .service_content {
	position: absolute;
	margin: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 50px 0;
	transition: 0.5s;
	z-index: 2;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}

.event_packgelist {
	padding: 25px 20px;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
}

.event_image {
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.event_image img {
	max-width: 100%;
	height: 100%;
}

.plans li {
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75rem;
	color: #262626;
}

.plans li:before {
	content: "\f0a4";
	font-family: "FontAwesome";
	display: inline-block;
	font-weight: 500;
	font-size: 1rem;
	padding-right: 10px;
	color: #0000ff;
}

.eventlist li {
	position: relative;
	display: flex;
	flex-direction: row;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
	text-transform: capitalize;
	padding-bottom: 1rem;
	color: #262626;
}

.eventlist li::before {
	content: "\f0da";
	font-family: "FontAwesome";
	display: inline-block;
	font-weight: 800;
	font-size: 20px;
	padding-right: 10px;
	color: #0000ff;
}

.eventlist li span {
	display: block;
	left: 50px;
	position: relative;
}

/* service section END */

/* package START */
.package_box {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 500px;
}

.package_img {
	position: relative;
	width: 33%;
	height: 100%;
}

.package_img img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.package_content1 {
	position: relative;
	width: 33%;
	height: 100%;
	padding: 40px;
	background-color: #fff;
}

.package_content1:before {
	content: "\f030";
	font-size: 6rem;
	font-family: "FontAwesome";
	display: block;
	bottom: 75px;
	right: 15%;
	color: #ece3fb;
	position: absolute;
	z-index: -1;
}

.package_content2 {
	position: relative;
	width: 33%;
	height: 100%;
	padding: 40px;
	background: #ece3fb;
}

.package_content1 h2 {
	font-size: 28px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
	text-align: center;
}

.sub_content {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 40px 35px;
}

.sub_content h3 {
	font-size: 22px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin: 10px auto;
}

.sub_content li {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	display: flex;
	font-family: "Poppins", sans-serif;
}

.sub_content li:before {
	content: "\f0da";
	font-family: "FontAwesome";
	display: inline-block;
	font-weight: 800;
	font-size: 22px;
	padding-right: 5px;
	color: #fd0000;
}

.sub_content .btn {
	border-radius: 50px;
	padding: 10px 35px;
}

.sub_content .btn-primary {
	color: #fff;
	background-color: #673ab7;
	border-color: #673ab7;
	margin: 10px auto;
}

.package_content2 h2 {
	font-size: 22px;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	text-align: left;
}

.package_content2 li {
	font-size: 15px;
	font-weight: 500;
	display: block;
	margin: 0;
	padding: 0;
}

.package_content2 li:before {
	content: "\f046";
	font-family: "FontAwesome";
	display: inline-block;
	font-size: 13px;
	padding-right: 10px;
	color: #673ab7;
}

.package_content2 ul li>ul li {
	position: relative;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	left: 35px;
}

.package_content2 ul li>ul li:before {
	content: "\f101";
	font-family: "FontAwesome";
	display: inline-block;
	font-size: 16px;
	padding-right: 10px;
	color: #673ab7;
}

/* package END */

.masonary {
	columns: 4;
	column-gap: 26px;
	min-height: 50vh;
}

.masonary .grid {
	display: inline-block;
	position: relative;
}

.masonary .grid img {
	width: 100%;
	border-radius: 6px;
}

/* gallery column repeat-x */
.gallery {
	width: 100%;
	height: 100%;
	margin: 10px auto;
	overflow: hidden;
	padding: 0;
}

.gallery figure {
	margin: 0;
}

.gallery img {
	max-width: 100%;
	height: auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	object-fit: cover;
	cursor: pointer;
}

.gallery:hover img {
	transition: all 0s ease-in;
	filter: brightness(0.3);
}

.gallery h2 {
	position: absolute;
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	padding: 10px 20px;
	opacity: 0;
	top: 50%;
	left: 0;
	right: 0;
}

.gallery:hover h2 {
	opacity: 1;
	color: #fff;
	text-align: center;
}

.thumbnail-hoverlay-icon {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -20px;
	opacity: 0;
	-webkit-transform: scale(2.5);
	transform: scale(2.5);
	transition: all 0.35s ease;
}

.gallery:hover .thumbnail-hoverlay-icon {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.thumbnail-hoverlay-icon a {
	font-size: 18px;
	padding: 5px 10px;
	color: rgba(255, 255, 255);
	outline: none;
	background: #000;
	border-radius: 5px;
	border: 1px solid #000;
}

.thumbnail-hoverlay-icon a:hover {
	color: #fff;
}

/* hoverlay-icon start  */
.hoverlay-icon {
	width: 44px;
	height: 44px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -20px;
	opacity: 0;
	-webkit-transform: scale(2.5);
	transform: scale(2.5);
	transition: all 0.35s ease;
}

.gallery:hover .hoverlay-icon {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.polaroid {
	columns: 3;
	column-gap: 26px;
}

.polaroid .photostack {
        display: inline-block;
	    position: relative;
        box-shadow: rgb(0 0 0 / 20%) 0px 2px 3px 0px  !important;
        border-radius: 0.25rem!important;
        background-color: #ffffff;
        padding: 1rem 1rem 0rem;
        border: 5px solid white;
        width: 100%;
        height: auto;
        transition: left 400ms ease-in-out 500ms, top 400ms ease-in-out 500ms, transform 400ms ease-in-out 500ms;
        overflow: hidden;
    }
    

    .polaroid .photostack:nth-child(2) {
    rotate: -4deg;
    }
    .polaroid .photostack:nth-child(3) {
    rotate: 2deg;
    }
    .polaroid .photostack:nth-child(4) {
    rotate: 5deg;
    }
    .polaroid .photostack:nth-child(5) {
    rotate: -5deg;
    }
    .polaroid .photostack:nth-child(6) {
    rotate: 5deg;
    }
    .polaroid .photostack:nth-child(7) {
    rotate: -3deg;
    }
    .polaroid .photostack:nth-child(8) {
    rotate: 4deg;
    }
    .polaroid .photostack:nth-child(9) {
    rotate: -2deg;
    }
    .polaroid .photostack:nth-child(10) {
    rotate: -4deg;
    }
    .polaroid .photostack:nth-child(11) {
    rotate: 3deg;
    }
    .polaroid .photostack:nth-child(12) {
    rotate: 5deg;
    }
   
    
.polaroid .photostack img {
	width: 100%;
	max-width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    cursor: pointer;
}

.polaroid .photostack h2{
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    padding: 10px 20px;
    color: #000000;
    margin: 0 auto;
}

.videos {
	position: relative;
	width: 100%;
	height: 100%;
	max-height: 100%;
	transition: .3s all;
	border-radius: 0.5rem;
	box-shadow: 1px 1px 8px 0 rgb(0 0 0 / 48%);
	overflow: hidden;
	margin-bottom: 0.75rem;
}

.videos img {
	transform: scale(1.5);
	object-fit: cover;
	height: 100%;
}

.videos .videoplay-icon {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	transition: all 0.35s ease;
}

.videos .videoplay-icon .youtube-play {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url(../youtube.svg);
	background-size: 4rem;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: center center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hoverlay-icon a {
	font-size: 18px;
	padding: 5px 10px;
	color: rgba(255, 255, 255);
	outline: none;
	background: #000;
	border-radius: 5px;
	border: 1px solid #000;
}

.hoverlay-icon a:hover {
	color: #fff;
}

.info-box {
	width: 100%;
	min-height: 225px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 30px 30px;
	background-color: white;
	box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
	border-radius: 16px;
}

.info-box .icon {
	width: 50px;
	height: 50px;
	text-align: center;
	border: 1px dotted #0000ff;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 0;
	margin-bottom: 10px;
	color: #0000ff;
	border-radius: 50px;
}

.info-box:hover {
	opacity: 1;
	-webkit-transform: translateY(0) scale(1);
	transform: translateY(0) scale(1);
	-webkit-transition: box-shadow 0.25s ease 0s, transform 0.25s ease 0s,
		-webkit-transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s,
		opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
	transition: box-shadow 0.25s ease 0s, transform 0.25s ease 0s,
		transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s,
		opacity 0.5s cubic-bezier(0.6, 0.2, 0.1, 1) 0s;
	box-shadow: 5px 12px 20px rgba(13, 16, 40, 0.2);
	position: relative;
}

.info-box:hover .icon {
	border: 1px solid #0000ff;
	background: #0000ff;
	color: #fff;
}

.info-box .content {
	width: 100%;
	height: auto;
	position: relative;
	text-align: center;
}

.info-box .content h4 {
	font-size: 1.25rem;
	font-weight: 600;
}

.info-box .content p,
.info-box .content a {
	font-size: 16px;
	font-weight: 500;
	line-height: 22px;
	color: #000;
}

.custom_form {
	padding: 30px 40px;
	margin: 0;
	background-color: white;
	box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
	border-radius: 16px;
	border: 1px solid #eaeaea;
}

.custom_form .form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 0;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	outline: none;
}

.custom_form .form-control:focus {
	color: #495057;
	background-color: #fff;
	border-color: #0000ff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

/* footer START */
#footer {
	position: relative;
	width: 100%;
	text-align: center;
	color: #000;
	padding: 15px 10px 5px;
}

#footer p {
	font-size: 0.875rem;
	line-height: 1.5rem;
	font-weight: 400;
	color: #d4d4d4;
}

#footer a {
	color: #d4d4d4;
}

.social-icon {
	display: flex;
	justify-content: end;
}

.social-icon li {
	position: relative;
	display: inline-block;
	justify-content: center;
	align-items: center;
	margin: 0px 2px;
}

.social-icon li a {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0 2px;
}

.social-icon li a:hover {
	width: 40px;
	height: 40px;
	padding: 6px;
	border-radius: 50px;
	background: #555555;
	color: #fff;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

/* footer END */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	color: #000;
	background-color: transparent;
	border-bottom: 5px solid #66cc66;
	display: inline-block;
	margin-bottom: 10px;
	font-weight: bold;
	padding: 4px;
	border-radius: 0;
}

.nav-pills .nav-link {
	border-radius: 0.25rem;
	font-weight: bold;
}

/* Media screen START */
@media (max-width: 768px) {

	.social-icon {
		justify-content: center;
	}

	.cursor-border-top,
	.cursor-border-bottom {
		display: none;
	}

	.home_logo2 {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		cursor: pointer;
	}

	.home_bg2::before {
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 50%;
		position: absolute;
		background: url(../logo/blue.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 0;
	}

	.home_bg2::after {
		content: "";
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		background: url(../logo/pink.jpg) no-repeat;
		background-size: cover;
		background-position: bottom center;
		z-index: -1;
	}

	.home_logo2 a:nth-child(1) {
		margin: 50px 0px;
		position: relative;
		top: -50px;
		left: 0;
	}

	.home_logo2 a:nth-child(2) {
		margin: 0;
		position: relative;
		top: 0;
		left: 0;
	}

	.logos_sec_1 {
		margin: 0 auto;
		padding: 0;
		width: 300px;
		height: 200px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		position: relative;
	}

	.logos_sec_1 img {
		display: block;
		position: relative;
		top: 0;
		left: -20px;
		right: 0;
		bottom: 0;
		margin: auto;
		width: 250px;
		height: 170px;
		z-index: 1;
	}

	.logos_sec_2 {
		margin: 0 auto;
		padding: 0;
		width: 300px;
		height: 200px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		position: relative;
	}

	.logos_sec_2 img {
		display: block;
		position: relative;
		top: 0;
		left: 20px;
		right: 0px;
		bottom: 0;
		margin: auto;
		width: 250px;
		height: 170px;
		z-index: 1;
	}

	.home_bg {
		width: 100%;
		height: 100%;
		position: relative;
		z-index: 0;
	}

	.home_bg::before {
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 50%;
		position: absolute;
		background: url(../logo/pink.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		z-index: 0;
	}

	.home_bg::after {
		content: "";
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		position: absolute;
		background: url(../logo/blue.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		z-index: -1;
	}

	.home_logo {
		position: relative;
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		cursor: pointer;
	}

	.home_logo a:nth-child(1) {
		margin: 50px 75px;
		position: relative;
		top: -20px;
	}

	.home_logo a {
		margin: 50px 75px;
	}

	.logos_sec {
		margin: 0 auto;
		padding: 10px;
		width: 300px;
		height: 360px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		position: relative;
	}

	.logos_sec::before {
		content: "";
		background-image: url(../logo/logo-bg.png);
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 3;
		position: absolute;
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.logos_sec img {
		display: block;
		top: 20px;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		height: 320px;
		width: 240px;
		z-index: 1;
	}

	/* home logo section END */
	.navbar-fixed {
		position: fixed;
		width: 100%;
		min-height: 100px;
		height: auto;
	}

	#nav_bar {
		border-bottom: 2px solid #19a0db;
	}

	#nav_bar .mt-3 {
		margin-top: 1rem !important;
	}

	#main .container {
		max-width: 100%;
		height: auto;
		padding-left: 10px;
		padding-right: 10px;
	}

	.logo {
		width: 100px;
		height: auto;
	}

	.padding-sec {
		padding-top: 2rem;
		padding-bottom: 2rem;
	}

	.about-text {
		padding: 15px 0px;
	}

	h2 {
		font-size: 1.5rem;
		line-height: 2;
	}

	.title-h2 {
		font-size: 26px;
	}

	.contact_bg .title-h2 {
		position: relative;
		font-size: 22px;
		font-weight: 700;
		text-align: left;
		letter-spacing: normal;
		text-transform: uppercase;
		margin-top: 15px;
		margin-bottom: 20px;
		color: #000;
		left: -20px;
	}

	#footer {
		position: absolute;
		bottom: -120px;
		left: 0;
		right: 0;
		width: 100%;
		text-align: center;
		color: #000;
	}

	#back2Top {
		right: 22px;
	}

	.parallex-2,
	.parallex-3,
	.parallex-4,
	.parallex-1 {
		padding: 0;
	}

	.info-box {
		margin-bottom: 20px;
	}

	.custom_form {
		padding: 10px;
	}

	.display-4 {
		font-size: 1.8rem;
	}

	.profile_box {
		height: auto;
	}

	.profile_content {
		width: 100%;
		height: auto;
		padding: 0 1rem;
	}

	.btn-custom,
	.btn-view,
	.btn-primary {
		padding: 0.75rem;
	}

	.profile_content:before {
		left: 0;
		right: 0;
	}

	.service_box {
		margin: 20px 0px;
		padding: 0;
		box-sizing: border-box;
		position: relative;
		width: 100%;
		height: auto;
	}

	.service_box:before {
		opacity: 0;
	}

	.service_box .service_content {
		padding: 10px 10px 10px;
		position: relative;
		background: #673ab7;
		width: 100%;
		height: auto;
	}

	.service_box:hover .service_content {
		position: relative;
		background: #673ab7;
		text-align: left;
		padding: 10px 20px;
	}

	/* package */
	.package_box {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: auto;
	}

	.sub_content {
		position: relative;
		left: 0;
		bottom: 0;
		padding: 10px 10px;
	}

	.package_content1 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 10px;
		background-color: #fff;
	}

	.package_content2 {
		position: relative;
		width: 100%;
		height: auto;
		padding: 10px;
		background: #ece3fb;
	}

	.package_img {
		position: relative;
		width: 100%;
		height: auto;
	}

	.masonary {
		columns: 2;
		column-gap: 10px;
		margin: 0px 10px;
	}

	.masonary .grid {
		display: block;
		margin-bottom: 10px;
		position: relative;
	}

	.info-box {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-self: self-start;
		padding: 40px;
		background-color: white;
		box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
		border-radius: 16px;
	}

	.info-box .icon {
		width: 50px;
		height: 50px;
		margin: 0 auto;
		text-align: center;
		border: 1px dotted #0000ff;
		background: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #0000ff;
		border-radius: 50px;
	}

	.info-box .content {
		width: 100%;
		height: auto;
		position: relative;
		text-align: center;
		top: 10px;
	}

	#nav_bar .collapse.show {
		background: #fff;
	}
}

@media (min-width: 768px) and (max-width: 992px) {}

@media screen and (min-width: 768px) and (max-width: 1024px) {}

@media (min-width: 1200px) {}

/* Media screen END */
@media only screen and (min-width: 769px) and (max-width: 1200px) {
	#main .container {
		max-width: 98%;
		height: auto;
		padding-left: 0px;
		padding-right: 10px;
	}

	.title-h2 {
		font-size: 26px;
	}

	.profile_box {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
	}

	.profile_content {
		width: 600px;
		height: 100%;
	}

	.sub_content {
		position: absolute;
		left: 0;
		bottom: 0;
		padding: 20px 25px;
	}

	.package_content2 {
		position: relative;
		width: 33%;
		height: 100%;
		padding: 18px;
		background: #ece3fb;
	}

	.masonary {
		columns: 3;
		column-gap: 10px;
		margin: 0px 10px;
	}

	.masonary .grid {
		display: block;
		margin-bottom: 10px;
		position: relative;
	}

	.info-box {
		padding: 20px;
	}
}


/* custom-card */
.custom-card {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	-webkit-box-shadow: 1px 1px 8px 0 rgb(0 0 0 / 12%);
	box-shadow: 1px 1px 8px 0 rgb(0 0 0 / 12%);
	border-width: 0;
	cursor: pointer;
	overflow: hidden;
}

.custom-card:hover {
	box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
	transform: translateY(-8px);
}

.custom-card .card-body {
	padding: 1.5rem 1.5rem 3rem;
}

.custom-card .card-title {
	font-size: 1.5rem;
	font-weight: 400;
	font-family: 'Playfair Display', serif;
	text-align: left;
	letter-spacing: normal;
	text-transform: inherit;
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #525252;
}

.custom-card .card-text {
	font-family: 'Roboto', sans-serif;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.5rem;
	letter-spacing: 0;
	word-spacing: initial;
	color: #7a7a7a;
}

.custom-card p {
	--max-lines: 6;
	--line-height: 1.5rem;
	position: relative;
	max-height: calc(var(--line-height) * var(--max-lines));
	overflow: hidden;
}

.custom-card p::before {
	content: ".....";
	position: absolute;
	bottom: 0;
	right: 0;
}

::selection {
	background: black;
	color: #fff;
}

.-mt-2 {
    margin-top: -0.5rem;
}

.height-0 {
    height: 0 !important;
}
.width-0 {
        width: 100% !important;

} 
.opacity-0 {
    opacity: 0 !important;
}


/*-----------------------------------------------------------------------------------*/
/*	ISOTOPE PORTFOLIO GRID
/*-----------------------------------------------------------------------------------*/
.isotope-filter {
	width: 100%;
	text-align: center;
	overflow: hidden;
	z-index: 999;
}

.portfolio-grid {
	overflow: hidden;
	width: 100%;
}

.portfolio-grid .items {
	margin: 0;
	padding: 0;
	list-style: none;
}

.portfolio-grid .items::after {
	clear: both;
	content: "";
	display: table;
}

.portfolio-grid .items li {
	width: 33.33%;
	float: left;
	border-top: none;
	border-left: none;
	overflow: visible;
}

.portfolio-grid .items li img {
	width: 100%;
	height: auto;
}

.portfolio-grid .items li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.portfolio-grid .items li .gallery {
	margin: 0 auto;
	padding: 10px 10px;
	position: relative;
}


.portfolio-grid .items li .photostack {
        display: inline-block;
	    position: relative;
        box-shadow: rgb(0 0 0 / 20%) 0px 2px 3px 0px  !important;
        border-radius: 0.25rem!important;
        background-color: #ffffff;
        padding: 1rem 1rem 0rem;
        border: 5px solid white;
        height: auto;
        transition: left 400ms ease-in-out 500ms, top 400ms ease-in-out 500ms, transform 400ms ease-in-out 500ms;
        overflow: hidden;
        width: calc(100% - 3rem);
        margin: 10px;
    }
    
    .portfolio-grid .items li:hover .photostack img{
        filter: brightness(0.5);
    }
    
   .portfolio-grid .items li .photostack h2 {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
        padding: 10px 20px;
        color: #7c7c7c;
        margin: 0 auto;
        font-weight: 600;
    }

.fancybox-bg {
    background: #000  !important;
}
.fancybox-is-open .fancybox-bg {
    opacity: 100% !important;
    transition-timing-function: cubic-bezier(.22,.61,.36,1);
}

@media (max-width: 767px) {
    .dropdown-menu{
        max-width: 100%;
        width: 100%;
    }
    .dropdown-menu .dropdown-item{
        padding: 0.25rem 1.5rem;
    }
    
    .portfolio-grid .items li.category {
	    width: 100% !important;
	}
	.portfolio-grid .items li {
		width: 100%;
	}
	
	.portfolio-grid .items li .photostack{
        display: block;
	    margin: 10px auto;
	}
}

@media (max-width: 991px) {
	.portfolio-grid .items li {
		width: 50%;
	}
}

@media screen and (min-width: 1280px) {
	#main .container {
		width: 1250px;
	}
	.dropdown:hover .dropdown-menu {
    	display: block;
    	top: 100%;
    }
    .portfolio-grid .items li .gallery img {
    	border-radius: 6px;
    	-webkit-transition: .6s all;
    	transition: .6s all;
    	-webkit-box-shadow: 1px 1px 8px 0 rgb(0 0 0 / 48%);
    	box-shadow: 1px 1px 8px 0 rgb(0 0 0 / 48%);
    }
	
	.portfolio-grid .items li:nth-child(2) .photostack {
        rotate: -4deg;
    }
    .portfolio-grid .items li:nth-child(3) .photostack {
    rotate: 2deg;
    }
    .portfolio-grid .items li:nth-child(4) .photostack {
    rotate: 5deg;
    }
    .portfolio-grid .items li:nth-child(5) .photostack {
    rotate: -5deg;
    }
    .portfolio-grid .items li:nth-child(6) .photostack {
    rotate: 5deg;
    }
    .portfolio-grid .items li:nth-child(7) .photostack {
    rotate: -3deg;
    }
    .portfolio-grid .items li:nth-child(8) .photostack {
    rotate: 4deg;
    }
    .portfolio-grid .items li:nth-child(9) .photostack {
    rotate: -2deg;
    }
    .portfolio-grid .items li:nth-child(10) .photostack {
    rotate: -4deg;
    }
    .portfolio-grid .items li:nth-child(11) .photostack {
    rotate: 3deg;
    }
    .portfolio-grid .items li:nth-child(12) .photostack {
    rotate: 5deg;
    }
}

@media screen and (min-width: 1400px) {
	#main .container {
		width: 1370px;
	}
}