/* For Showing Navigation Bar in different Screen Size */
@media screen and (max-width: 600px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 600px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
@media screen and (max-width: 900px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 900px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
@media screen and (max-width: 991px) {
  #small-screen{
    display:flex;
  }
  #big-screen{
    display: none;
  }
}

@media screen and (min-width: 991px) {
  #small-screen{
    display: none;
  }
  #big-screen{
    display: block;
  }
}
/* For Navigation Menu Hover Effect */


/* For Sliding Text */
.carousel-item {
  height: 100vh;
  min-height: 100px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover; 
  background-size: cover;
}
.carousel-caption {
  bottom: 200px;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align:left;
  color: white;
  font-weight:bold;
}

.carousel-caption p {
  width: 100%;
  margin: auto;
  font-size: 32px;
  line-height: 1.9;
  font-style: oblique;
  text-align:left;
}

.btn-min-block {
  min-width: 220px;
  line-height: 50px;
}

.btn-theme {
  color:darkblue;
  background-color: rgb(179,236,8);
  border: 2px solid #fff;
  margin-right: 15px;
  margin-top: 5px;
  /* padding: 20px 80px; */
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 10px;
}

.btn-theme:hover {
  color: rgb(179,236,8);
  background-color: rgb(90, 90, 90);
  border-color: #fff;
}

/* Media Query For Sliding Text */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.carousel-caption {
  bottom: 70px;
}

.carousel-caption h5 {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align:left;
  color: white;
}

.carousel-caption p {
  width: 100%;
  margin: auto;
  font-size: 21px;
  line-height: 1.9;
  font-style: oblique;
  text-align:left;
  color: white;
  font-weight:bold;
}	
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.carousel-caption {
  bottom: 150px;
}

.carousel-caption h5 {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align:left;
  color: white;
  font-weight:bold;
}

.carousel-caption p {
  width: 100%;
  margin: auto;
  font-size: 26px;
  line-height: 1.9;
  font-style: oblique;
  text-align:left;
  color: white;
  font-weight:bold;
}		
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.carousel-caption {
  bottom: 170px;
}

.carousel-caption h5 {
  font-size: 38px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align:left;
  color: white;
  font-weight:bold;
}

.carousel-caption p {
  width: 100%;
  margin: auto;
  font-size: 26px;
  line-height: 1.9;
  font-style: oblique;
  text-align:left;
  color: white;
  font-weight:bold;
}	
}
/* For Animated Card */
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i');


/* body{
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  line-height: 26px;
  overflow-x:hidden !important;
} */
img{
	width: 100%;
    max-width: 100%;
    height: auto;
}

.simple-effect {
    padding: 1em .4em;
    display: block;
    font-size: 1.8em;
}
.simple-effect span {
    color: #1e92ea;
}


/*-- global css --*/

.overlay,
.overlay-text,
.simple-text,
.overlay-sim-text-2,
.overlay-text-effect-3,
.zoom-effect-1 img,
.zoom-effect-2 img,
.opacity-effect img,
.blur-effect img,
.grayscale-effect img{
   transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}
.image-wrapper{
	margin-bottom: 35px;
}
.effect-image-1{
	position: relative;
	display: block;
}
.overlay-text p,
.overlay-sim-text-2 p,
.overlay-text-effect-3 p{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    padding: 20px 20px;
}
.overlay{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left:0;
	top:0;
	background: rgba(246,0,2,.7);
	opacity: 0;
	visibility: hidden;
}


/*-- ovarlay text effect-1 --*/
.effect-image-1{
  margin: 10px 10px;
}

	/*-- overlay text effect 2 --*/

	.overlay-sim-text-2{
		position: absolute;
	    left: 0px;
	    top: 0px;
	    width: 100%;
	    height: 100%;
	    background: rgba(1, 0, 3, 0.7);
	    opacity: 0;
	}

	.simple-text {
    	position: absolute;
	    bottom: 0px;
	    left: 0px;
	    width: 100%;
	    background: #1e92ea;
	    color: #fff;
	}
	.simple-text p{
	    margin-bottom: 0px;
	    padding: 2px 8px;
	}

	.effect-image-1:hover .overlay-xs-1{
		opacity: 1;
		visibility: visible;
		display: block;	
	}
	.effect-image-1:hover .simple-text{
		visibility: hidden;
		opacity: 0;
	}




/* Code for Contact us button Row */
.contact-us-btn-row{
  padding-top: 20px;
  background-color: turquoise;
  /* margin-top: 20px; */
}

.contact-us-btn-row h6{
  font-family: Cambria;
  font-style: italic;
  padding: 10px 50px;
  margin-right: 140px;
  font-size: 20px;
  color: #fff;
}

/*For Contact Us and Quote Form */
*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; box-sizing: border-box; }

.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }


body {
	background: #ffffff;
	color: #333;
	font-weight: normal;
	font-size: 1em;
	font-family: 'Roboto', Arial, sans-serif;
}

input:focus, textarea:focus, keygen:focus, select:focus {
	outline: none;
}
::-moz-placeholder {
	color: #666;
	font-weight: 300;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #666;
	font-weight: 300;
}


/* Contact Form Styling */
.container {
	padding: 0 50px 70px;
}
.textcenter {
	text-align: center;
}
.section1 {
	text-align: center;
	display: table;
	width: 100%;
}
.section1 .shtext {
	display: block;
	margin-top: 20px;
}
.section1 .seperator {
	border-bottom:1px solid #a2a2a2;
	width: 35px;
	display: inline-block;
	margin: 20px;
}

.section1 h1 {
	font-size: 40px;
	color: #A44DD8;
	font-weight: normal;
}

.section2 {
    width: 1200px;
    margin: 25px auto;
}
.section2 .col2 {
	width: 48.71%;
}
.section2 .col2.first {
	float: left;
}
.section2 .col2.last {
	float: right;
}
.section2 .col2.column2 {
	padding: 0 30px;
}
.section2 span.collig {
	color: #a2a2a2;
	margin-right: 10px;
	display: inline-block;
}
.section2 .sec2addr {
	display: block;
	line-height: 26px;
}
.section2 .sec2addr p:first-child {
	margin-bottom: 10px;
}
.section2 .sec2contactform input[type="text"], 
.section2 .sec2contactform input[type="email"],
.section2 .sec2contactform textarea {
    padding: 18px;
    border: 0;
    background: #EDEDED;
    margin: 7px 0;
}
.section2 .sec2contactform textarea {
	width: 100%;
	display: block;
	color: #666;
  resize:none;
}
.section2 .sec2contactform input[type="submit"] {
	padding: 15px 40px;
    color: #fff;
    border: 0;
    background: #A44DD8;
    font-size: 16px;
    text-transform: uppercase;
    margin: 7px 0;
    cursor: pointer;
}
.section2 .sec2contactform h3 {
	font-weight: normal;
    margin: 20px 0;
    margin-top: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 19px;
    color: #A44DD8;
}

/* @media querries */

@media only screen and (max-width: 1266px) {
	.section2 {
		width: 100%;
	}
}
@media only screen and (max-width: 960px) {
	.container {
		padding: 0 30px 70px;
	}
	.section2 .col2 {
		width: 100%;
		display: block;
	}
	.section2 .col2.first {
		margin-bottom: 10px;
	}
	.section2 .col2.column2 {
		padding: 0;
	}
	body .sec2map {
		height: 250px !important;
	}
}
@media only screen and (max-width: 768px) {
	.section2 .sec2addr {
		font-size: 14px;
	}
	.section2 .sec2contactform h3 {
		font-size: 16px;
	}
	.section2 .sec2contactform input[type="text"], .section2 .sec2contactform input[type="email"], .section2 .sec2contactform textarea {
		padding: 10px;
		margin:3px 0;
	}
	.section2 .sec2contactform input[type="submit"] {
		padding: 10px 30px;
		font-size: 14px;
	}
}
@media only screen and (max-width: 420px) {
	.section1 h1 {
		font-size: 28px;
	}	
}
/* For Footer */
.footer-dark {
  margin-top: 1%;
  padding:50px 0;
  color:#f0f9ff;
  background-color:#282d32;
}

.footer-dark h3 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:16px;
}

.footer-dark ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-dark ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.6;
}

.footer-dark ul a:hover {
  opacity:0.8;
}

@media (max-width:767px) {
  .footer-dark .item:not(.social) {
    text-align:center;
    padding-bottom:20px;
  }
}

.footer-dark .item.text {
  margin-bottom:36px;
}

@media (max-width:767px) {
  .footer-dark .item.text {
    margin-bottom:0;
  }
}

.footer-dark .item.text p {
  opacity:0.6;
  margin-bottom:0;
}

.footer-dark .item.social {
  text-align:center;
}

@media (max-width:991px) {
  .footer-dark .item.social {
    text-align:center;
    margin-top:20px;
  }
}

.footer-dark .item.social > a {
  font-size:20px;
  width:36px;
  height:36px;
  line-height:36px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  box-shadow:0 0 0 1px rgba(255,255,255,0.4);
  margin:0 8px;
  color:#fff;
  opacity:0.75;
}

.footer-dark .item.social > a:hover {
  opacity:0.9;
}

.footer-dark .copyright {
  text-align:center;
  padding-top:24px;
  opacity:0.3;
  font-size:13px;
  margin-bottom:0;
}

/* For Footer Social Icons END*/
/* For Whatsapp */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

/* End Whatsapp Code */

