@import url('https://fonts.googleapis.com/css2?family=Lato:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
:root{
--dm-serif-display-font:'DM Serif Display', sans-serif !important;
--young-serif:'Young Serif', serif !important;
--lato-font: 'Lato', sans-serif;
}
.dm-serif-display-font{
  font-family:var(--dm-serif-display-font);
}
.dm-serif-display-font-italic{
  font-family:var(--dm-serif-display-font);
  font-style: italic !important;
}
.young-serif{
  font-family:var(--young-serif);
}
.young-serif-italic{
  font-family:var(--young-serif);
  font-style: italic !important;
}


body, html {
	font-family:var(--lato-font);
}

a {
	font-family:var(--lato-font);
}

h1,h2,h3,h4,h5,h6 {
  font-family:var(--lato-font);
}

p {
	font-family:var(--lato-font);
}
span {
font-family:var(--lato-font);	
}
input{
  font-family:var(--lato-font);
}
.round-30{
border-radius:30px!important;
}
.theme-color{
      color: #03a94f!important;
}
.font-13{
font-size: 13px !important;
}
.w-100{
width: 100% !important;
}
.app_name{
font-weight: 600;
text-transform: capitalize;
color:#7bc044;
font-size:25px;
}
.justify-center{
display: flex !important;
align-items: center !important;
}
.style10{
      
}
.map-area iframe {
  width: 100%;
  height:230px;
  border: 0;
}
.animated-button {

background: linear-gradient(-30deg, #0b1b3d 50%, #08142b 50%);

padding: 20px 40px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4e0f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #8592ad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button:hover::before {

opacity: 0.2;

}



.animated-button span {

position: absolute;

}



.animated-button span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));

background: linear-gradient(to left, rgba(8, 20, 43, 0), #2662d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@-webkit-keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#2662d9));

background: linear-gradient(to top, rgba(8, 20, 43, 0), #2662d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@-webkit-keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#2662d9));

background: linear-gradient(to right, rgba(8, 20, 43, 0), #2662d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@-webkit-keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}

.portfolio-group {
      border: 1px solid #cfcfcf;
      margin-top:5px;
}

.portfolio-photo {
      background-position: top center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 150px;
      position: relative;
}

.portfolio-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      border-radius: 15px 15px 0 0;
      background: #fabda2;
      visibility: hidden;
      opacity: 0;
      transform: scale(0);
      transition: all 0.4s;
      -webkit-transition: all 0.4s;
}

.portfolio-group:hover .portfolio-bg {
      opacity: 0.7;
      transform: scale(1);
      visibility: visible;
}

.portfolio-table {
      display: table;
      width: 100%;
      height: 100%;
}

.portfolio-icon {
      display: table-cell;
      text-align: center;
      vertical-align: middle;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s;
      -webkit-transition: all 0.3s;
}

.portfolio-icon a {
      position: relative;
      font-size: 26px;
      color: #fff;
      text-decoration: none;
      z-index: 99;
}

.portfolio-group:hover .portfolio-icon {
      opacity: 1;
      visibility: visible;
}

.portfolio-text {
      text-align: center;
      background: #cfcfcf;
      padding:5px 10px;
      height:40px;
}

.portfolio-text h3 {
      font-size:13px;
      text-align: left;
    font-weight:500;
      transition: all 0.3s;
      -webkit-transition: all 0.3s;
      margin-bottom:5px;
      line-height: 15px;
      text-transform: capitalize;
}

.portfolio-text h3:hover {
      color: #3367c1;
}

.portfolio-text p {
      position: relative;
      font-size: 15px;
      border-top: 1px solid #ddd;
      margin: 0;
      padding-top: 8px;
}

.portfolio-text p:before {
      position: absolute;
      content: '';
      left: 0;
      top: -1px;
      width: 0%;
      height: 1px;
      background: #3367c1;
      transition: all 0.3s;
      -webkit-transition: all 0.3s;
}

.portfolio-group:hover .portfolio-text p:before {
      width: 100%;
}

.portfolio-text p span {
      margin-right: 8px;
}

.project-page .portfolio-menu {
      margin-top: 0;
      margin-bottom: 5px;
}

.project-page li {
      margin-top: 0;
      margin-bottom: 10px;
}


.animated-button span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#2662d9));

background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #2662d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@-webkit-keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button1 {

background: linear-gradient(-30deg, #3d0b0b 50%, #2b0808 50%);

padding:5px 10px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #f7d4d4;

font-size:16px;

width: 100%;

letter-spacing: 2.0px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button1::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #ad8585;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button1:hover::before {

opacity: 0.2;

}



.animated-button1 span {

position: absolute;

}



.animated-button1 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height:3px;

background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#e0085e));

background: linear-gradient(to left, rgba(43, 8, 8, 0), #e0085e);

-webkit-animation: 3s animateTop linear infinite;

    animation: 3s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button1 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 3px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(#e0085e));

background: linear-gradient(to top, rgba(43, 8, 8, 0), #e0085e);

-webkit-animation: 3s animateRight linear -1s infinite;

    animation: 3s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button1 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height:3px;

background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#e0085e));

background: linear-gradient(to right, rgba(43, 8, 8, 0), #e0085e);

-webkit-animation: 3s animateBottom linear infinite;

    animation: 3s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button1 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width:3px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#e0085e));

background: linear-gradient(to bottom, rgba(43, 8, 8, 0), #e0085e);

-webkit-animation: 3s animateLeft linear -1s infinite;

    animation: 3s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button2 {

background: linear-gradient(-30deg, #3d240b 50%, #2b1a08 50%);

padding:5px 10px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #f7e6d4;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button2::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #ad9985;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button2:hover::before {

opacity: 0.2;

}



.animated-button2 span {

position: absolute;

}



.animated-button2 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(43, 26, 8, 0)), to(#d98026));

background: linear-gradient(to left, rgba(43, 26, 8, 0), #d98026);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button2 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 26, 8, 0)), to(#d98026));

background: linear-gradient(to top, rgba(43, 26, 8, 0), #d98026);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button2 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(43, 26, 8, 0)), to(#d98026));

background: linear-gradient(to right, rgba(43, 26, 8, 0), #d98026);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button2 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 26, 8, 0)), to(#d98026));

background: linear-gradient(to bottom, rgba(43, 26, 8, 0), #d98026);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button3 {

background: linear-gradient(-30deg, #3d3d0b 50%, #2b2b08 50%);

padding:5px 10px;

margin:5px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #f7f7d4;

font-size:16px;

width: 100%;

letter-spacing: 2.0px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button3::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #adad85;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button3:hover::before {

opacity: 0.2;

}



.animated-button3 span {

position: absolute;

}



.animated-button3 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(43, 43, 8, 0)), to(#d9d926));

background: linear-gradient(to left, rgba(43, 43, 8, 0), #d9d926);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button3 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 43, 8, 0)), to(#d9d926));

background: linear-gradient(to top, rgba(43, 43, 8, 0), #d9d926);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button3 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(43, 43, 8, 0)), to(#d9d926));

background: linear-gradient(to right, rgba(43, 43, 8, 0), #d9d926);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button3 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 43, 8, 0)), to(#d9d926));

background: linear-gradient(to bottom, rgba(43, 43, 8, 0), #d9d926);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button4 {

background: linear-gradient(-30deg, #243d0b 50%, #1a2b08 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #e6f7d4;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button4::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #99ad85;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button4:hover::before {

opacity: 0.2;

}



.animated-button4 span {

position: absolute;

}



.animated-button4 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(26, 43, 8, 0)), to(#80d926));

background: linear-gradient(to left, rgba(26, 43, 8, 0), #80d926);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button4 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 43, 8, 0)), to(#80d926));

background: linear-gradient(to top, rgba(26, 43, 8, 0), #80d926);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button4 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(26, 43, 8, 0)), to(#80d926));

background: linear-gradient(to right, rgba(26, 43, 8, 0), #80d926);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button4 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 43, 8, 0)), to(#80d926));

background: linear-gradient(to bottom, rgba(26, 43, 8, 0), #80d926);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button5 {

background: linear-gradient(-30deg, #0b3d0b 50%, #082b08 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4f7d4;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button5::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #85ad85;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button5:hover::before {

opacity: 0.2;

}



.animated-button5 span {

position: absolute;

}



.animated-button5 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 8, 0)), to(#26d926));

background: linear-gradient(to left, rgba(8, 43, 8, 0), #26d926);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button5 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 8, 0)), to(#26d926));

background: linear-gradient(to top, rgba(8, 43, 8, 0), #26d926);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button5 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 8, 0)), to(#26d926));

background: linear-gradient(to right, rgba(8, 43, 8, 0), #26d926);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button5 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 8, 0)), to(#26d926));

background: linear-gradient(to bottom, rgba(8, 43, 8, 0), #26d926);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button6 {

background: linear-gradient(-30deg, #0b3d24 50%, #082b1a 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4f7e6;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button6::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #85ad99;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button6:hover::before {

opacity: 0.2;

}



.animated-button6 span {

position: absolute;

}



.animated-button6 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 26, 0)), to(#26d980));

background: linear-gradient(to left, rgba(8, 43, 26, 0), #26d980);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button6 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 26, 0)), to(#26d980));

background: linear-gradient(to top, rgba(8, 43, 26, 0), #26d980);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button6 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 26, 0)), to(#26d980));

background: linear-gradient(to right, rgba(8, 43, 26, 0), #26d980);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button6 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 26, 0)), to(#26d980));

background: linear-gradient(to bottom, rgba(8, 43, 26, 0), #26d980);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button7 {

background: linear-gradient(-30deg, #0b3d3d 50%, #082b2b 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4f7f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button7::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #85adad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button7:hover::before {

opacity: 0.2;

}



.animated-button7 span {

position: absolute;

}



.animated-button7 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));

background: linear-gradient(to left, rgba(8, 43, 43, 0), #26d9d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button7 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));

background: linear-gradient(to top, rgba(8, 43, 43, 0), #26d9d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button7 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 43, 0)), to(#26d9d9));

background: linear-gradient(to right, rgba(8, 43, 43, 0), #26d9d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button7 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 43, 0)), to(#26d9d9));

background: linear-gradient(to bottom, rgba(8, 43, 43, 0), #26d9d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button8 {

background: linear-gradient(-30deg, #0b243d 50%, #081a2b 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4e6f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button8::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #8599ad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button8:hover::before {

opacity: 0.2;

}



.animated-button8 span {

position: absolute;

}



.animated-button8 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 26, 43, 0)), to(#2680d9));

background: linear-gradient(to left, rgba(8, 26, 43, 0), #2680d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button8 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 26, 43, 0)), to(#2680d9));

background: linear-gradient(to top, rgba(8, 26, 43, 0), #2680d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button8 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 26, 43, 0)), to(#2680d9));

background: linear-gradient(to right, rgba(8, 26, 43, 0), #2680d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button8 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 26, 43, 0)), to(#2680d9));

background: linear-gradient(to bottom, rgba(8, 26, 43, 0), #2680d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button9 {

background: linear-gradient(-30deg, #0b0b3d 50%, #08082b 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #d4d4f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button9::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #8585ad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button9:hover::before {

opacity: 0.2;

}



.animated-button9 span {

position: absolute;

}



.animated-button9 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(8, 8, 43, 0)), to(#2626d9));

background: linear-gradient(to left, rgba(8, 8, 43, 0), #2626d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button9 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 8, 43, 0)), to(#2626d9));

background: linear-gradient(to top, rgba(8, 8, 43, 0), #2626d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button9 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(8, 8, 43, 0)), to(#2626d9));

background: linear-gradient(to right, rgba(8, 8, 43, 0), #2626d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button9 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 43, 0)), to(#2626d9));

background: linear-gradient(to bottom, rgba(8, 8, 43, 0), #2626d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button10 {

background: linear-gradient(-30deg, #240b3d 50%, #1a082b 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #e6d4f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button10::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #9985ad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button10:hover::before {

opacity: 0.2;

}



.animated-button10 span {

position: absolute;

}



.animated-button10 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(26, 8, 43, 0)), to(#8026d9));

background: linear-gradient(to left, rgba(26, 8, 43, 0), #8026d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button10 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(26, 8, 43, 0)), to(#8026d9));

background: linear-gradient(to top, rgba(26, 8, 43, 0), #8026d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button10 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(26, 8, 43, 0)), to(#8026d9));

background: linear-gradient(to right, rgba(26, 8, 43, 0), #8026d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button10 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(26, 8, 43, 0)), to(#8026d9));

background: linear-gradient(to bottom, rgba(26, 8, 43, 0), #8026d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button11 {

background: linear-gradient(-30deg, #3d0b3d 50%, #2b082b 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #f7d4f7;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button11::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #ad85ad;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button11:hover::before {

opacity: 0.2;

}



.animated-button11 span {

position: absolute;

}



.animated-button11 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 43, 0)), to(#d926d9));

background: linear-gradient(to left, rgba(43, 8, 43, 0), #d926d9);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button11 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 43, 0)), to(#d926d9));

background: linear-gradient(to top, rgba(43, 8, 43, 0), #d926d9);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button11 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 43, 0)), to(#d926d9));

background: linear-gradient(to right, rgba(43, 8, 43, 0), #d926d9);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button11 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 43, 0)), to(#d926d9));

background: linear-gradient(to bottom, rgba(43, 8, 43, 0), #d926d9);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.animated-button12 {

background: linear-gradient(-30deg, #3d0b24 50%, #2b081a 50%);

padding: 20px 40px;

margin: 12px;

display: inline-block;

-webkit-transform: translate(0%, 0%);

    transform: translate(0%, 0%);

overflow: hidden;

color: #f7d4e6;

font-size: 20px;

letter-spacing: 2.5px;

text-align: center;

text-transform: uppercase;

text-decoration: none;

-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}



.animated-button12::before {

content: '';

position: absolute;

top: 0px;

left: 0px;

width: 100%;

height: 100%;

background-color: #ad8599;

opacity: 0;

-webkit-transition: .2s opacity ease-in-out;

transition: .2s opacity ease-in-out;

}



.animated-button12:hover::before {

opacity: 0.2;

}



.animated-button12 span {

position: absolute;

}



.animated-button12 span:nth-child(1) {

top: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 26, 0)), to(#d92680));

background: linear-gradient(to left, rgba(43, 8, 26, 0), #d92680);

-webkit-animation: 2s animateTop linear infinite;

    animation: 2s animateTop linear infinite;

}



@keyframes animateTop {

0% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

100% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

}



.animated-button12 span:nth-child(2) {

top: 0px;

right: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 26, 0)), to(#d92680));

background: linear-gradient(to top, rgba(43, 8, 26, 0), #d92680);

-webkit-animation: 2s animateRight linear -1s infinite;

    animation: 2s animateRight linear -1s infinite;

}



@keyframes animateRight {

0% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

100% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

}



.animated-button12 span:nth-child(3) {

bottom: 0px;

left: 0px;

width: 100%;

height: 2px;

background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 26, 0)), to(#d92680));

background: linear-gradient(to right, rgba(43, 8, 26, 0), #d92680);

-webkit-animation: 2s animateBottom linear infinite;

    animation: 2s animateBottom linear infinite;

}



@keyframes animateBottom {

0% {

-webkit-transform: translateX(-100%);

      transform: translateX(-100%);

}

100% {

-webkit-transform: translateX(100%);

      transform: translateX(100%);

}

}



.animated-button12 span:nth-child(4) {

top: 0px;

left: 0px;

height: 100%;

width: 2px;

background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 26, 0)), to(#d92680));

background: linear-gradient(to bottom, rgba(43, 8, 26, 0), #d92680);

-webkit-animation: 2s animateLeft linear -1s infinite;

    animation: 2s animateLeft linear -1s infinite;

}



@keyframes animateLeft {

0% {

-webkit-transform: translateY(-100%);

      transform: translateY(-100%);

}

100% {

-webkit-transform: translateY(100%);

      transform: translateY(100%);

}

}



.ellipse-1{

-webkit-line-clamp:1;

}

.ellipse-2{

-webkit-line-clamp:2;

}
.ellipse-3{
-webkit-line-clamp:3;
}
.ellipse-4{
-webkit-line-clamp:4;
}
.ellipse-5{
-webkit-line-clamp:5;
}
.ellipse-6{
-webkit-line-clamp:6;
}
.ellipse-7{
-webkit-line-clamp:7;
}
.ellipse-8{
-webkit-line-clamp:8;
}
.ellipse-9{
-webkit-line-clamp:9;
}
.ellipse-10{
-webkit-line-clamp:10;
}
.ellipse-11{
-webkit-line-clamp:11;
}
.ellipse-12{
-webkit-line-clamp:12;
}
.ellipse-13{
-webkit-line-clamp:13;
}
.ellipse-14{
-webkit-line-clamp:14;
}

.ellipse-15{
-webkit-line-clamp:15;
}

.ellipse-16{
-webkit-line-clamp:16;
}

.ellipse{
text-overflow: ellipsis;
-webkit-box-orient:vertical;
overflow: hidden;
display: -webkit-box;
flex-wrap: wrap;
}

.ellipse a {
order:2;
}



.ellipse p {
position: relative;
overflow: hidden;
}



.ellipse p {
display: -webkit-box;
-webkit-box-orient: vertical;
}

.text-uppercase{

text-transform: uppercase;

}

.font-12{

font-size: 12px;

}

.font-13{

font-size: 13px;

}

.font-14{

font-size: 14px;

}

.width-100{

width: 100% !important;

}

.text-left{

text-align: left !important;

}

.fees-amount{

font-size: 13px;

opacity: .5;

color: green;

}

.width-50{

width:200px !important;

}

.bg-footer{

background: #b6bec3 !important;

padding:8px 30px;

border-top:5px solid #2e3133;

}

.bg-subscribe{

background: #909191 !important;

padding:8px 30px;

}

.bg-members{

background: red !important;

padding:0px;

border-top:2px solid #b6bec3;

}

.bg-last{

background: #272d31 !important;

padding:8px 30px;

}

.text-green{

color: green;

}

.form-group{

margin-bottom: 20px;

}

.contact-btn-1{

border-radius:25px;

margin:5px;

}

.contact-btn-1 i{

text-align: left !important;

}







.slider_desc {

margin: 16px;

margin-top: 0px;

text-align: justify;

overflow: hidden;

transition: all 0.5s ease 0s;

max-height: 38px;

}

.view-more-btn{

border: none !important;

padding: 15px;

}

.text-bold{
font-weight: bold !important;
}
.text-black{
color: #000!important;
}



.slider_desc_toogler{

margin-bottom: 30px;

margin-top:15px;

width: 70%;

margin-left: auto;

margin-right: auto;

}



.slider_desc_toogler a {

position: absolute;

text-align: center;

color: silver;

cursor: pointer;

text-transform: capitalize;

left: calc(50% - 20px);

margin-top: -13px;

background: #fff;

}

.font-20{

font-size: 20px;

}

.font-25{

font-size: 25px;

}

.font-35{

font-size: 35px;

}



div#social-links {

margin: 0 auto;

max-width: 500px;

}

div#social-links ul li {

display: inline-block;

}          

div#social-links ul li a {

padding: 20px;

border: 1px solid #ccc;

margin: 1px;

font-size: 30px;

color: #222;

background-color: #ccc;

}
.just-center{
    text-align: justify!important;
    text-align-last: justify!important;
}
.just-left{
    text-align: justify!important;
    text-align-last: left!important;
}

.font-40{
    font-size: 40px!important;
}
.error-name{
    font-size:100px;font-weight:bolder;color:#e50026
}
.error-color{
    color: #e50026!important;
}
.outline-h2{
    text-shadow:-1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff!important;
}

.tableFixHead{ overflow: auto; height:calc(100vh - 260px); }
.tableFixHead thead th { position: sticky; top: 0; z-index: 1; }
table  { border-collapse: collapse; width: 100%; }
th, td { padding: 8px 16px; }
th     { background:#eee; }
.image_array:hover{
    opacity: 0.8 !important;
}

.image_array.active{
    border:4px solid #28a745;
}
#media-list li img {
    width: 100px;
    height: 100px
}

#media-list li {
    height: 102px;
    list-style-type: none;
}

#media-list li video {
    width: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

div#hint_brand .modal-dialog {
    top: 110px;
    width: 567px;
    max-width: 100%
}

li.myupload span {
    position: relative;
    width: 100px;
    height: 100px;
    display: block;
    background: #fff
}

li.myupload span input {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

li.myupload span i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ccc;
    font-size: 54px
}

#media-list li {
    float: left;
    border: 1px solid #ccc;
    background: #ccc;
    position: relative;
    margin: 0 5px 5px 0;
    width: 102px
}

#media-list li:last-child {
    margin-right: 0
}
.post-thumb {
    position: absolute;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: none
}

#media-list li:hover .post-thumb {
    display: block
}

a.remove-pic {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 12px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    display: block;
    height: 25px;
    width: 25px;
    text-align: center;
    padding: 3px 0
}

.contact-map {
  overflow: hidden;
}
.contact-map iframe {
  float: left;
  width: 100%;
  height:686px;
  border: none;
}
@media (min-width: 218px){
  .contact-map iframe {
  float: left;
  width: 100%;
  height:300px !important;
  border: none;
}
}
@media (min-width: 576px) {
.contact-map iframe {
  float: left;
  width: 100%;
  height:300px !important;
  border: none;
}
}
@media (min-width: 768px) {
.contact-map iframe {
  float: left;
  width: 100%;
  height:686px !important;
  border: none;
} }
@media (min-width: 992px) {
.contact-map iframe {
  float: left;
  width: 100%;
  height:686px !important;
  border: none;
} }
@media (min-width: 1200px) {
.contact-map iframe {
  float: left;
  width: 100%;
  height:686px !important;
  border: none;
} }
.font-30{
    font-size: 30px;
}