html {
    overflow-y: hidden !important;
}
@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Bold.ttf'),
       url('../fonts/Quicksand-Regular.ttf'),
       url('../fonts/Quicksand-SemiBold.ttf'),
       url('../fonts/Quicksand-VariableFont_wght.ttf')
 }
 body {
    font-family: "Quicksand",sans-serif;
}

 .section-bg-overlay {
    background-color: rgba(205,205,205,.4);
}
.absolute{
	position: absolute;
}
.relative {
    position: relative;
}
.button.is-medium {
    font-size: 1em;
    text-shadow: none;
    line-height: 2.4em;
    min-height: 2.5em;
    padding: 0 1.2em;
}
.button.is-black {
    color: #fdfdfd;
}
.main-page {
    background-color: #fff;
    position: relative;
}
.hero-section{
	padding: 30px 0;
    position: relative;
    height:100vh;
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    padding-top: 30px;
}

.fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
}
.bg-img{
	background-image: url(../images/landing-page-scaled.jpg);
	background-position: 70% 42%;
	background-size: cover;
    background-repeat: no-repeat;
}
.section-content {
	padding-top: 30px;
    padding-bottom: 30px;
    z-index: 1;
}
.text-center {
    text-align: center;
}
.hero-section, 
.section-content {
    width: 100%;
}

 
.row{
    display: flex;
    flex-flow: row wrap;
    margin-left: auto;
    margin-right: auto;
}
.container-width {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
 }
 .col {
    position: relative;
    margin: 0;
    padding: 0 15px 30px;
    width: 100%;
}
#jaipurandco-logo .col-inner {
    padding: 0;
    margin: 35vh 0 0;
}
.col .icons,
.col-inner>.img,
.col .btn{
	text-align: center;
}
.col .icons, 
.col .btn{
	margin: 30px 0 0;
}
.col-inner>.img{
	text-align: center;
    width: 33%;
    margin-left: auto;
    margin-right: auto;
}
.facebook,
.instagram{
	font-size: 115%;
	min-width: 2.5em;
    padding-left: .6em;
    padding-right: .6em;
    display: inline-block;
    border: 2px solid currentColor;
    background-color: transparent;
    line-height: 2.19em;
    color: #000;
    border-radius: 999px!important;
    object-fit: cover;
}
/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.circle.facebook{
	margin-right: .5rem;
}
.circle.facebook:hover{
	color: #fff;
    background: #3a589d;
    border:1px solid #3a589d;
}

.circle.instagram:hover{
	color: #fff;
    background: #3b6994;
    border:1px solid #3b6994;
}

/*animate css*/

@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}
 /********** Large devices only **********/
@media (min-width:1200px) {

}

/********** Medium devices only **********/
@media (min-width:992px) and (max-width:1199px) {
	.col-inner>.img{
      width: 70%;
    }
 
}
/********** Small devices only **********/
@media (min-width:768px) and (max-width:991px) {
	.col-inner>.img{
    width: 70%;
  }
 
 }

/********** Extra small devices only **********/
@media (max-width:767px) {
  
 .col-inner>.img{
    width: 70%;
  }
  .bg-img {
    background-image: url(../images/landing-page-scaled-768.jpg);
  }
  
}

/********** Super extra small devices Only :slightly_smiling_face: (e.g., iPhone 4) **********/
@media (max-width:479px) {
	.hero-section{
	 height:100vh;
   }
}