/* FONTS */
@font-face {
    font-family: 'bricolage';
    src: local('bricolage'), url("./fonts/bricolage/static/BricolageGrotesque-Regular.ttf") format('truetype');
  }
  .font-bricolage{
    font-family: 'bricolage';
  }

html{
    height: 100%;
}
body {
	background: linear-gradient(-45deg, #fc3a8f, 40%, #0086d9);
	background-size: 100% 100%;
	/* animation: gradient 15s ease infinite; */
	height: 100%;
    position: relative;
}

/* @keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */

.main-wrapper{
    opacity: 0;
    transition-duration: 1s;
}

.logo-wrapper{
    width: 100%;
    display: grid;
    justify-content: center;
    margin-bottom: 10px;
}
.logo-wrapper .header-logo{
    width: 100px;
    height: 100px;
}
.main-heading{
    font-size: 44px;
    font-weight: 300;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}
.subheading{
    font-size: 18px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
}

.phone-img{
    width: 30vw;
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 1;
    transition-duration: 1s;
    animation: zoomInAndOut 6s infinite;
}
.opacity-1{
    opacity: 1 !important;
}
.opacity-0{
    opacity: 0 !important;
}

.contact-wrapper{
    height: 30vh;
    display: grid;
    align-items: center;
    padding: 0 6vw !important;
}
.contact-wrapper .container{
    padding: 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 5px;
    max-width: 500px;
}

.contact-heading{
    font-size: 18px;
    
}

.contact-btn{
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 5px !important;
    font-size: 18px !important;
    text-align: left !important;
    padding-left: 20px !important;
}

.contact-btn .icon{
    color: #fff !important;
}

.whatsapp-btn{
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 90px;
    height: 90px;
    padding: 0 !important;
}
.whatsapp-logo{
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 400px) {
    .phone-img{
        left: -17px;
        width: 42vw;
    }
}
@media screen and (min-width: 500px) {
    .phone-img{
        width: 25vw !important;
    }
}

@keyframes zoomInAndOut{
    0%{transform: scale(1,1);}
    50%{transform: scale(1.1,1.1);}
    100%{transform: scale(1,1);}
}


.loader{
    position: absolute;
    top: 10vh;
    display: grid;
    width: 100%;
    justify-content: center;
    opacity: 1;
    transition-duration: 1s;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 4px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgba(255,255,255,0.9) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  