@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet"');

/* Main Elements */

body {
 background-image: url("../images/bg.png");
 background-repeat:repeat;
}


@media (max-width: 600px) {
.logo {
	margin: 20px 0;
}
}

/* Layout */

h1 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 1.6em;
	line-height: 1.6;
}

h2 {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 1.3em;
	line-height: 1.6;
}

.body {
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 1.06em;
	color: #7b7878;
	line-height: 1.6;
}

.body a {
	color: #00a7e1;
	font-weight: 600;
	text-decoration: none;
}

.body a:hover {
	color: #00a7e1;
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-thickness: 1.5px;
}


.header {
	background-image: url("../images/header-bg.png");
	height: 170px;
	padding: 0px;
	
}


@media (max-width: 600px) {
.header {
	height:auto;
}
}


.gallery {
	background: rgba(255,255,255,0.8);
	margin-top: 20px;
	margin-bottom: 50px;
	padding: 20px;
}

@media (max-width: 1400px) {
.gallery {
	max-width: 890px;
}
}

@media (max-width: 990px) {
.gallery {
	max-width: 676px;
}
}

@media (max-width: 768px) {
.gallery {
	max-width: 500px;
}
}

.intro {
	background: rgba(255,255,255,0.6);
	margin-top: 30px;
	padding: 20px;
}

.gallery2 {
	background: rgba(255,255,255,0.6);
}

/* Footer */


.fluid-container-footer {
	background-color: #31353f;
	padding: 36px 0;
}

.footer {
	font-family: "Poppins", sans-serif;
	font-size: 0.85em;
	color: #ececec;
	line-height: 2;
}

.footer a {
	color: #ececec;
	text-decoration: none;	
}

.footer a:hover {
color: #ececec;
text-underline-position: under;
text-decoration: underline;
}

#sbwd  { text-decoration: none;}

.rh-col {
	text-align: right;
}

@media screen and (max-width : 992px){	
.lh-col, .rh-col {
  text-align: center;
	}
}


/* Hover Zoom */

/* [1] The container */
.img-hover-zoom {
  height: 200px; /* [1.1] Set it as per your need */
  width: 200px;
  margin-bottom: 16px;
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
  cursor: zoom-in;
}

@media screen and (max-width : 768px){	
.img-hover-zoom{
  width: 700px;
height: auto;
	}
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 1s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.1);
}

.lb-dataContainer { position: absolute; top:-30px; left: 50%; transform: translateX(-50%); }


/* Mobile container horizontal overflow fix*/

@media screen and (max-width: 767.98px) {
    body {
        overflow-x: hidden !important;
    }
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}