@import url('https://fonts.googleapis.com/css?family=Mukta:700');

body{
    font-family: 'Mukta';
}
body a{
    color: #000000;
}
body a:hover{
    text-decoration: none;
    color: #000000;
}
.row div{
    margin-bottom: 30px;
}
.btn{
    display: block;
    padding: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/* First button */

.btn-anim {
    position: relative;
}
.btn-anim .text {
    position: relative;
    margin-left: 20px;
}
.btn-anim:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #92cf00;
    transition: .5s;
}
.btn-anim:after{
    content: "";
    position: absolute;
    background: url("assets/call.png") no-repeat center center;
    background-size: contain;
    top: 7px;
    left: 7px;
    width: 25px;
    height: 25px;
    transition: .2s;
}
.btn-anim:hover{
    color: #ffffff;
}
.btn-anim:hover:before {
    width: 100%;
    transition: .5s;
}
.btn-anim:hover:after{
    transition: .3s;
    filter: invert(1);
    left: 20px;
    animation-name: firstBtn;
    animation-duration: 1s;
}
@keyframes firstBtn {
    0% {transform: rotateZ(0deg);}
    25%{transform: rotateZ(85deg);}
    50% {transform: rotateZ(0deg);}
    75%{transform: rotateZ(85deg);}
    100% {transform: rotateZ(0deg);}
  }

  /* Shopping button */

  .shopping-cart .btn-anim:after{
    background: url("assets/shopping-cart.png") no-repeat center center;
    background-size: contain;
    transition: .7s;
  }
  .shopping-cart .btn-anim:hover:after{
    left: 50px;
    transition: 1s;
    animation-name: shopBtn;
    animation-duration: 1s;
}
@keyframes shopBtn {
    0% {transform: rotateZ(-20deg);}
    100% {transform: rotateZ(0deg);}
  }

  /* Second button */

  .second-button {
      position: relative;
      text-transform: uppercase;
      transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  }
  .second-button:hover {
      color: #ffffff;
      transition-delay: .5s;
  }
  .second-button:before,
  .second-button:after {
    content: "";
    position: absolute;	
	transition: inherit;
	z-index: -1;
  }
  .second-button:before{
    top: 0;
	left: 50%;
	height: 100%;
	width: 0;
	border: 2px solid #a02222;
	border-left: 0;
	border-right: 0;
  }
  .second-button:after {
    bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: #a02222;
  }
  .second-button:hover:before {
	left: 0;
	width: 100%;
    transition-delay: 0s;
}
.second-button:hover:after {
	top: 0;
	height: 100%;
    background: #a02222;
    transition-delay: .35s;
}

/* Third button */

.third-button {
    position: relative;
    border: 2px solid #a02222;
    border-radius: 0;
    transition-delay: .25s;
}
.third-button:hover{
    color: #ffffff;
}
.third-button:before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #a02222;
    transition: 1s;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease-in-out;
}
.third-button:hover:before{
transform: scaleX(1);
transform-origin: left;
}

/* Fourth button */

.fourth-button{
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid #a02222;
    transition: .6s;
}
.fourth-button:hover{
    transition: .6s;
    border: 2px solid transparent;
    box-shadow: 0 1px 10px #a02222;
}

/* Fifth button */

.fifth-button{
    outline: 2px solid;
    outline-color: rgba(160, 34, 34,0.9);
    outline-offset: 0;
    transition: all 500ms cubic-bezier(0.2, 0, 0, 0.8);
}
.fifth-button:hover{
    outline-color: rgba(160, 34, 34, 0);
    outline-offset: 10px;
}

/* Sixth button */

.sixth-button{
    letter-spacing: 0px;
    border: 2px solid #a02222;
    transition: .3s;
    border-radius: 0;
}
.sixth-button:hover{
    letter-spacing: 3px;
    transition: .3s;
}

/* 7th button */

.seventh-button {
    background: #a02222;
    color: #ffffff;
    border-radius: 0;
}

.seventh-button:hover {
    background: #7e8c97;
}

/* 8th button */

.eigth-button {
    background: #a02222;
    border: 2px solid #a02222;
    color: #ffffff;
    border-radius: 0;
}

.eigth-button:hover {
    background: transparent;
    color: #000000;
}

/* 9th button */

.ninth-button {
    position: relative;
    border: 2px solid #a02222;
    overflow: hidden;
    border-radius: 0;
    transition: .2s;
}

.ninth-button:before {
    content: "";
    position: absolute;
    width: 50%;
    height: 300%;
    top: 0;
    right: 130%;
    background: #a02222;
    z-index: -1;
    transform: rotateZ(-75deg) translateX(35%);
    transition: .3s;
}

.ninth-button:hover {
    color: #ffffff;
}

.ninth-button:hover:before {
    right: 28%;
    transition: .3s;
}

/* 10th button */

.tenth-button {
    position: relative;
    color: #ffffff;
    overflow: hidden;
    border-radius: 0;
}

.tenth-button:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgb(34,193,195);
    background: linear-gradient(45deg, rgba(34,193,195,1) 29%, rgba(114,207,78,1) 49%, rgba(192,219,42,1) 63%, rgba(253,187,45,1) 93%);
    z-index: -1;
    transform: translateX(-60%);
    transition: transform 400ms ease-in;
}

.tenth-button:hover {
    color: #ffffff;
}

.tenth-button:hover:before {
    transform: translateX(-30%);
}

/* 11th button */

.eleventh-button {
    position: relative;
    border: 2px solid #a02222;
    border-radius: 0;
    overflow: hidden;
}

.eleventh-button:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 50%;
    background: #a02222;
    transform: translateX(-50%);
    transition: .4s;
    z-index: -1;
}

.eleventh-button:hover {
    color: #ffffff;
    transition: .3s;
}

.eleventh-button:hover:before {
    width: 105%;
}

/* 12th button */

.twelfth-button {
    display: inline-block;
    position: relative;
    color: #000000;
    font-size: 20px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.twelfth-button .text {
    font-size: 25px;
}

.twelfth-button:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(160, 34, 34,1);
    width: 4px;
    height: 100%;
    padding: 0px;
    z-index: -1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.twelfth-button:hover:before {
    background-color: rgba(160, 34, 34,0.4);
    transform: scaleY(0.2);
    width: 100%;
    top: 2px;
}

.twelfth-button:hover {
    color: #a02222;
}

.twelfth-button:hover .text {
    animation: fade-in 0.8s forwards;
  }
  
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* 13th button */

.thirteenth-button {
    display: inline-block;
    position: relative;
    color: #000000;
    border: 2px solid #a02222;
    border-radius: 0;
}

.thirteenth-button:before {
    content: "";
    position: absolute;
    border: 2px solid #a02222;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    transition: .3s;
}

.thirteenth-button:hover:before {
    top: -6px;
    left: 3px;
    right: 3px;
    bottom: -6px;
    transition: .3s;
}