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

/*variables*/
 :root {
  --cream: #FFDE91;
  --white: #ffffff;
  --darkgrey: #606060 !important;
}

/*font family*/
@font-face{
	font-family: 'bebas';
	src: url(../fonts/bebas/BebasNeue-Regular.ttf);
}
@font-face{
	font-family: 'barlow';
	src: url(../fonts/Barlow-Regular.ttf);
}
@font-face{
	font-family: 'ariata';
	src: url(../fonts/ariata/Ariata_Display_Regular.otf);
}
p{
	font-family: 'barlow';
}
a{
	text-decoration: none;
}
.navbar-toggler {
  padding: 0.2rem .5rem;
  font-size: 1.1rem;
  line-height: 1;
  background-color: #ffde91;
  border: 1px solid white;
  border-radius: .25rem;
}
.heading{
font-family: 'ariata';
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
.header-scroll {
	height: 5px;
	position: absolute;
	top: 0;
	left: 0;
	right: 100%;
	background: rgb(255 222 145) 100% !important;
}

.scroll-top-button {
	position: fixed;
	right: 5px;
	bottom: 5px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: all 1s ease;
}

body::-webkit-scrollbar {
	width: 7px !important;
	-webkit-overflow-scrolling: auto !important;
}
body::-webkit-scrollbar-thumb {
	background: rgb(255 222 145) !important;
	border-radius: 4px !important;
}
body::-webkit-scrollbar-track {
	background: #222 !important;
}
canvas {
   position: fixed;
   top: 0;
   left: 0;
   padding: 0;
   margin: 0;
   z-index: 9999;
   pointer-events: none;
}
/*cursor effect*/

/*---------------------------*/
/*home page starts here*/
/*---------------------------*/
#banner_one{
  background-image: url('../images/sw-banner.jpg');
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
#banner_two{
  background-image: url('../images/kalpavruksha-banner.jpg');
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
#banner_three{
  background-image: url('../images/ksquare_awrd.jpg');
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
#banner_four{
  background-image: url('../images/banner_nisarga.jpg');
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
#banner_five{
  background-image: url('../images/sw-banner.jpg');
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

#banner_one .banner-content,
#banner_two .banner-content,
#banner_three .banner-content,
#banner_four .banner-content,
#banner_five .banner-content{
position: absolute;
top: 40%;
left: 21%;
color: #e1e1e1;
width: 60%;
margin-top: 1.5%;
margin-bottom: 2.5%;
}
.banner .banner-content{
position: absolute;
top: 40%;
left: 21%;
}
#banner_one .banner-content h1,
#banner_two .banner-content h1,
#banner_three .banner-content h1,
#banner_four .banner-content h1,
#banner_five .banner-content h1{
font-size: 4vw;
}
.banner-text.mbl{
display: none;
}

.btn-common{
    background-color: var(--cream);
    padding: 12px 35px;
    border-radius: 25px;
    color: #1f1f1f;
    font-weight: 600;
    font-family: 'barlow';
    box-shadow: 5px 6px 15px #262626;
}
.btn-common:hover{
	transform: translate(10px);
    transition: all 1s ease;
    font-size: 19px;
    box-shadow: -2px 5px 0px #ffc94a;
}

.waviy span {
  font-family: 'ariata';
  position: relative;
  display: inline-block;
  color: #fff;
  animation: waviy 1s infinite;
  animation-delay: calc(.1s * var(--i));
  margin-right: -20px;
}
.waviy span:hover{
	color: var(--cream);
	transition:  all 0.2s ease;
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}


.navigation .nav-item .nav-link{
	color: #e1e1e1;
} 
.navigation .nav-item .nav-link:hover{
color: var(--cream);
    transition: all 0.5s ease;
}
.topbar{
	border-bottom: 1px solid #b1b1b1;
}
.topbar .nav-link {
    padding: 0.5rem 2rem;
}
.navbar .nav-item .nav-link{
	 padding: 0rem 1.6rem;
}
.navbar .navbar-brand{
	position: absolute;
    top: -45px;
}
.navigation .smartcity-logo{
  position: absolute;
  right: 21%;
  top: 1%;
}
.globe{
animation: globe 3s ease-in-out alternate infinite;
transition: .5s;
}
@keyframes globe{
	from{
transform: scale(1.1);
color: #e1e1e1;
	}
	to{
transform: scale(1.2);
color: var(--cream);
	}
}

.counter_up_wrapper{
  padding: 4% 0;
}
.all_items{
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}
.single_counter_item h4{
  color: #3c3c3c;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  position: relative;
  font-family: 'barlow';
}
.single_counter_item h3{
  color: var(--darkgrey);
  font-size: 3.5vw;
  line-height: 1;
  margin: 0;
}
.single_counter_item h4:after{
	content: "";
    width: 25%;
    height: 3px;
    background-color: var(--cream);
    position: absolute;
    top: 35px;
    left: 0%;
}
.counter_up_wrapper .timer{
	font-family: 'bebas';
}

.project-section{
	padding: 1% 0;
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 1px solid var(--cream);
	position: relative;
}

.prop-img{
  width: 100%;
  height:auto;
  overflow: hidden;
  box-shadow:1px 5px 15px #9b9b9b;
}
.prop-img  img {
  width: 100%;
  object-fit: cover;
}
.prop-img img:hover{
  transform: scale(1.2);
  transition: .5s ease-in-out;
}
.prop-img1{
  width: 100%;
  height:auto;
  overflow: hidden;
  box-shadow:1px 5px 15px #9b9b9b;
}
.prop-img1  img {
  width: 100%;
}
.prop-img1 img:hover{
  transform: scale(1.2);
  transition: .5s ease-in-out;
}
 .project-section h2{
    margin-bottom: 7%;
    font-size: 2.8vw;
    color: var(--darkgrey);
    position: relative;
    line-height: 1;
    z-index: 1;
}
.project-section .square-bg{
	width: 90px;
	height: 90px;
	background-color: var(--cream);
	display: block;
	position: absolute;
	top: 0%;
	margin-left: -20px;
}
.project-section .property-content{
position: absolute;
bottom: 5%;
left: 10%;
color: #fff;
}
.project-section h5{
	font-family: 'barlow';
	font-weight: normal;
	font-size: 1.3vw;
	position: relative;
	text-transform: uppercase;
	}
	.project-section h3{
	font-family: 'barlow';
	font-weight: bold;
	font-size: .8vw;
	position: relative;
	text-transform: uppercase;
	}
	button.viewprojects{
		margin: 5% auto 5% auto;
		display: block;
	}
.journey-section{
	background-image: url(../images/bg.png);
	background-size: cover;
	background-repeat: no-repeat;
}
.journey-section .row{
	margin-right:  unset;
}
.journey-content{
	padding: 10% 0% 0 0%;
	width: 60%;
	text-align: justify;
}
.journey-content h2{
	font-size: 2.8vw;
	color: var(--cream);
}
.journey-content p{
	color: #e1e1e1;
}
span.line{
	width: 100px;
	background-color: var(--cream);
	height: 1.5px;
	display: block;
	margin-bottom: 3%;
}

#testimonial {
	padding: 30px 0;
}
#testimonial .item {
	display: block;
	height: auto;
	margin: 3%;
}
.testimonials-section{
	position: relative;
	padding: 6% 0 3% 0;
}
.testimonials-section h2{
	position: relative;
	z-index: 1;
	font-size: 2.8vw;
	line-height: 1;
	color: var(--darkgrey);
}
.testimonials-section .square-bg{
	width: 70px;
	height: 70px;
	background-color: var(--cream);
	display: block;
	position: absolute;
	top: 19%;
	margin-left: -15px;
}
.testimonials-section h4{
	font-size: 1.8vw;
	color: var(--darkgrey);
	font-family: 'ariata';
	font-weight: 300;
}
.testimonials-section p.role{
	color: var(--darkgrey);
	font-weight: 600;
}
.testimonials-section .owl-nav button.owl-prev, 
.testimonials-section .owl-nav button.owl-next{
	position: absolute;top: 35%;
	background: #191919;
    color: #ffde91;
    text-decoration: none;
    border-radius: 50%;
    font-size: 30px;
    padding: 10px 20px !important;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background: #ffde91;
    color: #191919;
    text-decoration: none;
    transition: .5s ease;
}
.testimonials-section .owl-theme .owl-nav button.owl-prev{
left: -10%;
}
.testimonials-section .owl-theme .owl-nav button.owl-next{
	right: -10%;
}

.team-section{
	padding: 4% 0 2% 0;
	background: url(../images/bg.png) no-repeat;
	background-size: cover;
}
.team-section h2{
	font-size: 2.8vw;
	color: #e1e1e1;
}
.team-section span.line{
	width: 100px;
	background-color: #e1e1e1;
	height: 1px;
	margin-top: 2%;
}

.team-section .team,
.team-section .team1 {
margin-bottom: 4%;
}
.team-section .team-content{
	padding: 4% 0 0 7%;
}
.team-section .team-content h5{
	color: var(--cream);
	font-family: 'ariata';
}
.team-section .team-content p{
	color: #e1e1e1;
	font-weight: normal;
}
.partner-section{
	padding: 4% 0;
	position: relative;
}
.partner-section h2{
font-size: 2.8vw;
color: var(--darkgrey);
position: relative;
z-index: 1;
line-height: 1;
margin-bottom: 4%;
}
.partner-section .square-bg{
	width: 90px;
	height: 90px;
	background-color: var(--cream);
	display: block;
	position: absolute;
	top: 11%;
	margin-left: -20px;
}
.partner-section img{
	width: 70%;
	margin-bottom: 10%;
}
.col-md-4 .flash:hover{
	transform: scale(1.2);
	transition: .25s ease-in-out;
	animation-delay: 10s;
}

.contact-section{
	padding: 4% 0;
	background: url(../images/bg.png) no-repeat;
	background-size: cover;
	color: #e1e1e1;
}
.contact-section h2{
font-size: 2.8vw;
position: relative;
z-index: 1;
line-height: 1;margin-bottom: 3%;
}
.contact-section span.line{
	width: 100px;
	background-color: #e1e1e1;
	height: 1px;
}
.contact-section h4{
	font-family: 'barlow';
	font-weight: 300;
	}
.contact-section .form-control{
  margin: 3% 0;
  background: #383838;
  border: none;
  color: #fff;
}
.contact-section input, .contact-section textarea{
background-color: #383838 !important;
border: none !important;
}
::placeholder {
  color: #e1e1e1 !important;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
 color: #e1e1e1 !important;
}

.footer-section{
	padding: 4% 0;
	background: url(../images/footer.jpg) no-repeat;
	background-size: cover;
	color: #e1e1e1;
}
.footer-section .footerlogo{
margin-top: 10%;
}
.footer-section ul li{
	list-style: none;
	padding: 1.5% 0;
	color: #e1e1e1;
}
.footer-section ul li a{ 
	color: #e1e1e1;
}
.footer-section h4{
padding-bottom: 5%;
}
.yt-video{
  position: fixed;
  left: 0;
  bottom: 5%;
}
.yt-video::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 25%;
  opacity: 0.5;
  animation: animateLoader3 2s ease-out infinite;
  background: #f2161a;
}

@keyframes animateLoader3 {
  0% {
    transform: scale(1);
  }

  50%,
  75% {
    transform: scale(1.5);
  }

  80%,
  100% {
    opacity: 0;
  }
}
.newsletter{
	margin: 3% 0 5% 0;
}
.social-links a{
	color: #010101;
	margin: 5% 1% 1% 1%;
	padding-top: 4px;
	background-color: var(--cream);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	display: inline-block;
	text-align: center;
	font-size: 22px;
}
.social-links a:hover{
	color:  var(--cream);
    background-color:#010101;
    transition: .5s;
}
.btn-subscribe{
background-color: var(--cream);
border-radius: 0;
}
.footer-section input{
background-color: #383838 !important;
border: none !important;
border-radius: 0;
}

.sidebar-contact {
  position: fixed;
  transform: translateY(-20%);
  top: 50%;
  right: 0;
  width: 350px;
  height: auto;
  padding: 40px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0, .5);
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.sidebar-contact.active {
  right: -350px;
}

.sidebar-contact input,
.sidebar-contact textarea,
.sidebar-contact select{
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0, .5);
  outline: none;
}

.sidebar-contact textarea {
  height: 60px;
  resize: none;
}

.sidebar-contact input[type="submit"] {
  background: #00bcd4;
  color: #fff;
  cursor: pointer;
  border: none;
  font-size: 18px;
  
}
.sidebar-contact h2 {
  margin: 0 0  20px;
  padding: 0;
}

.toggle {
  position: absolute;
  top: 0;
  left: -48px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  cursor: pointer;
  background: var(--cream);
}

.toggle::before {
  content: "\f00d";
  font-family: fontAwesome;
  color: #010101;
  font-size: 18px;
}

.toggle.active::before {
  content: '\f003';
}


/*---------------------------*/
/*about page starts here*/
/*---------------------------*/
.brdcrmb{
	background:url('../images/brdcrmb1.jpg') no-repeat;
	height: 40vh;
	width: 100%;
	background-size: cover;
}
.brdcrmb-content{
	padding-top:15%;
	color: #e1e1e1;
}
.brdcrmb-content a{
	color: var(--cream) !important;
}
.brdcrmb-content h1{
	font-size: 50px;
	font-family: 'ariata';
}
.smartc-abt{
    padding: 5% 0;
}
.vmision{
	padding: 5% 0;
}
.vmision h2{
font-size: 2.8vw;
position: relative;
z-index: 1;
font-family: 'ariata';
}
.vmision .square-bg{
	width: 60px;
	height: 60px;
	background-color: var(--cream);
	display: block;
	position: absolute;
	top: 0%;
	margin-left: -20px;
}
.vmision .mission{
	padding: 2% 0 4% 0;
}
.vmision .vision{
	padding: 4% 0 2% 0;
}
.teamcontent-overlay{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	padding: 4%;
	background-color: #292929;
	color: #e1e1e1;
	width: 100%;
	height: 100%;
	opacity: 0;
}
.teamcontent-overlay h5{
	font-size: 25px;
}
.teamcontent-overlay p{
	font-size: 14px;
}
.team-section .team:hover .teamcontent-overlay,
.team-section .team1:hover .teamcontent-overlay{
	opacity: 1;
	transition: 1s;
}


/*---------------------------*/
/*property page starts here*/
/*---------------------------*/
.project-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #030303;
    background-color: #ffde91;
    border: 1px solid #f7b51b;
    filter: drop-shadow(2px 4px 6px #e1e1e1);
}
.project-section .nav-pills .nav-link {
    color: #010101;
}
.project-section .nav-pills .nav-link:hover {
    color: #030303;
    background-color: #ffde91;
    border: 1px solid #f7b51b;
    filter: drop-shadow(2px 4px 6px #e1e1e1);
    margin:0 5px;
    transition: 1s;
}
.project-section .tab-content{
padding: 0 0 2% 0;
}
.project-section .tab-content .col-md-6{
margin-bottom: 3%;
}


/*---------------------------*/
/*gallery page starts here*/
/*---------------------------*/
.gal-sect{
	padding: 2% 0 3% 0;
	position: relative;
}
.gal-sect h2 {
    margin-bottom: 7%;
    font-size: 2.8vw;
    color: var(--darkgrey);
    position: relative;
    line-height: 1;
    z-index: 1;
}
.gal-sect .square-bg {
    width: 90px;
    height: 90px;
    background-color: var(--cream);
    display: block;
    position: absolute;
    top: 0%;
    margin-left: -20px;
}
 .gallery {
    display: grid;
    grid-gap: 2em;
    grid-template-columns: repeat( auto-fill, minmax( 40%, 1fr ) );
}
.row--2x {
    grid-row-end: span 2;
}
.img-fluid {
    max-width: 100%;
}

.gallery a { 
    display: block;
}
.gallery a:hover img {
  filter: grayscale(100%);
  transition: all ease-in 0.2s;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, .15);
}
.gallery a img {
  filter: none;
  box-shadow: 1px 1px 10px #767676;
}
.gal-sect .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #3f3f3f;
}
.gal-sect .nav-pills .nav-link{
    color: #3f3f3f;
    border:1px solid;
    margin-right:10px;
}
/*---------------------------*/
/*contact page starts here*/
/*---------------------------*/
.cnt-form{
	position: relative;
	padding: 2% 0 2% 0;
}
.cnt-form h2 {
    margin-bottom: 7%;
    font-size: 2.8vw;
    color: var(--darkgrey);
    position: relative;
    line-height: 1;
    z-index: 1;
}
.cnt-form .square-bg {
    width: 90px;
    height: 90px;
    background-color: var(--cream);
    display: block;
    position: absolute;
    top: 0%;
    margin-left: -20px;
}
.btn-submit{
	background-color: #606060;
    padding: 10px 18px;
    font-size: 20px;
    color: #fff;
}
.form-cn h3{
    font-family: 'ariata';
    color: #606060;
    margin: 0 0 5% 0;
}
#Vector_38
{
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center 0px;
    transform-box: fill-box;
    float:left;
}

#Vector_39{
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center 0px;
    transform-box: fill-box;
    float:left;
}

#Vector_40
{
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    transform-box: fill-box;
    float:left;
}


.shap.one {
    background-image: -moz-linear-gradient(140deg, #009688 0%, #009688 100%);
    background-image: -webkit-linear-gradient(140deg, #009688 0%, #009688 100%);
    background-image: -ms-linear-gradient(140deg, #009688 0%, #009688 100%);
    width: 650px;
    height: 510px;
    top: -43%;
    left: -58%;
}
.shap {
    position: absolute;
    opacity: 0.05;
    transform: rotate(45deg);
    left: 90px;
    z-index: -1;
    border-radius: 45px;
}

.shap.two {
    background-image: -moz-linear-gradient(140deg, #009688 0%, #009688 100%);
    background-image: -webkit-linear-gradient(140deg, #009688 0%, #009688 100%);
    background-image: -ms-linear-gradient(140deg, #009688 0%, #009688 100%);
    width: 666px;
    height: 330px;
    top: -42%;
    left: -15%;
}
.mauto{
  margin:auto;
}
.bg-svg{
    
    background-image: url(bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    position: relative;
    
  margin-bottom:40px;
}

#Leaf1
{
    -webkit-animation: shake-bottom 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 2s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
            }


#leaf11
{
    -webkit-animation: shake-bottom 2.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 2.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box; 
}

#leaf10
{
    -webkit-animation: shake-bottom 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 3s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box; 
}

#leaf12
{
    -webkit-animation: shake-bottom 9s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 9s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

#leaf13
{
    -webkit-animation: shake-bottom 8s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 8s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

#lef14
{
    -webkit-animation: shake-bottom 7.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 7.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

#leaf15
{
    -webkit-animation: shake-bottom 7s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 7s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

#leaf16
{
    -webkit-animation: shake-bottom 6.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 6.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

#leaf17
{
    -webkit-animation: shake-bottom 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-bottom 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
            transform-box: fill-box;
}

@-webkit-keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}

/*connection*/
#connection h6 {
    color: #fff;
    position: fixed;
    left: -16.8%;
    top: 48%;
    bottom: 0;
    rotate: 90deg;
    font-size: 13px;
    display:none;
}

#ramohalli:hover{
    content:'COMING SOON';
}
.btn-blog {
    background-color: #191919;
    width: 100%;
    color: #eee;
    border-top: 1px solid;
    border-radius: 0;
    transition: .5s;
}
.btn-blog:hover {
    color: var(--cream);
}