@import url('//fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700&display=swap');


:root {
  --primary: #ff465e;
  --secondary: #65729e;
  --darkBlue: #000560;
  --lightRed: rgba(255, 70, 94, 0.16);
  --footerColor: rgba(255, 70, 94, 0.05);
}

/* reset default value */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  /* font-size: 100%; */
  /* font: inherit; */
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  background-color: #0D1216;
  align-items: center;
}

body {
  line-height: 1;
  box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0D1216;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--darkBlue);
  margin: 0px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}


h1 {
  font-size: 80px;
  line-height: 99px;
}

h2 {
  font-size: 48px;
  line-height: 59px;
  padding: 100px;
}

h3 {
  font-size: 32px;
  line-height: 42px;
}

h4 {
  font-size: 26px;
  line-height: 49px;
}

h5 {
  font-size: 24px;
  line-height: 30px;
}

h6 {
  font-size: 22px;
  line-height: 28px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

a {
  display: inline-block;
}

p {
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #65729e;
  margin: 0px;
  line-height: 27px;
}

.cpadding {
  padding: 50px;
}


.logo {
  width: 100px;
  height: 100px;
}




.container {
  /* background-color: rgba(255, 70, 94, 0.05); */
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.custom-container {
  max-width: 1860px;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

header {
  /* padding: 25px 0px; */
  background-color: #FFFFFF;
  /* background: linear-gradient(170deg, rgba(49, 57, 73, 0.8) 20%, rgba(49, 57, 73, 0.5) 20%, rgba(49, 57, 73, 0.5) 35%, rgba(41, 48, 61, 0.6) 35%, rgba(41, 48, 61, 0.8) 45%, rgba(31, 36, 46, 0.5) 45%, rgba(31, 36, 46, 0.8) 75%, rgba(49, 57, 73, 0.5) 75%), linear-gradient(45deg, rgba(20, 24, 31, 0.8) 0%, rgba(41, 48, 61, 0.8) 50%, rgba(82, 95, 122, 0.8) 50%, rgba(133, 146, 173, 0.8) 100%) #313949;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
   */
  /* -webkit-box-shadow: 0 1px 10px 0px #dadada; */
  /* box-shadow: 0 1px 10px 0px #dadada; */
}

.navbar-brand {
  margin-right: 166px;
  font-size: 32;
  font-weight: 600;
  color: #FFFFFF !important;
}

/* .nav-item{
  padding: 15px 0;
} */
.nav-link {
  font-size: 18px;
  line-height: 42px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #FFFFFF !important;
  font-family: 'Poppins', sans-serif;
}

.nav-link:hover,
.nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
  color: #00EDFD !important;
  background-color: transparent !important;
  font-family: 'Poppins', sans-serif;
}


.nav-item .active {
  color: var(--primary) !important;
}

.dropdown-toggle:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  border-radius: 5px;
  border-top: 5px solid var(--primary);
}

.dropdown-item {
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.primary-button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 20px 40px;
  font-size: 16px;
  line-height: 21px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--primary);
  background: #fff;
  border: 1.5px solid var(--primary);
}

.primary-button:hover {
  color: #fff;
  background-color: var(--primary);
}

.secondary-button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  border-radius: 50px;
  font-family: 'Roboto', sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--primary);
  color: #fff;
}

.secondary-button:hover {
  color: #fff;
  background-color: var(--primary);
  -webkit-box-shadow: 0px 6px 15px rgb(255 70 94 / 36%);
  box-shadow: 0px 6px 15px rgb(255 70 94 / 36%);
}

.home_wrapper {
  margin-top: 90px;
}

@media (max-width: 1200px) {
  .home_wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .home_wrapper {
    margin-top: 15px;
  }
}

.home_section {
  position: relative;
  /* margin: 0 45px;
  padding: 75px 40px 110px 40px; */
  border-radius: 24px;
  margin-left: 42px;
  margin-right: 42px;
  background-color: #0D1216;
}

@media (min-width: 1201px) and (max-width: 1850px) {
  .home_section {
    /* padding: 60px 0px; */
  }
}



@media (max-width: 767px) {
  .home_section {
    margin: 0px;
  }
}

.about_us .about-info,
.special-services,
.callto-action,
.price-area,
.testimonial-area,
.newsletter-area,
.footer-area,
.services-introduction,
.aboutus02,
.valuable-services,
.call-action-two,
.dark-footer,
#circleBar,
.projectSlider,
.client-review,
.contactArea,
.homepage-03.service-introduction,
.homepage-03.about-introduction,
.footer03 .footer-area,
.homepage-03.call-to-action03,
.our-work-process,
.about-us.our-services,
.special-services.our-services,
.priceArea,
.about-us,
.about-solution,
.our-teams,
.about-skill,
.profession-area,
.project,
.blog-area,
.map-area,
.conatact-area {
  padding: 60px 0px;
}



@media (max-width: 991px) {
  .home_section {
    padding-top: 60px;
  }
}

.home_para {
  padding-top: 0px;
}

@media (max-width: 1200px) {
  .home_section {
    padding-bottom: 60px;
  }

  .home_section .home_title {
    font-size: 42px;
    line-height: 66px;
    font-weight: 600;
  }
}


@media (min-width: 1201px) and (max-width: 1850px) {
  .home_title {
    font-size: 54px;
    font-weight: 600;
    line-height: normal;
    /* line-height: 82px; */
  }
}

.home_para {
  width: 90%;
  color: var(--secondary);
  font-size: 21px;
  line-height: 36px;
  padding: 25px 0px;
  display: inline-block;
  margin: 0px;
}

@media (min-width: 320px) and (max-width: 574px) {
  .home_para {
    font-size: 18px;
    line-height: 32px;
  }
}

.home_buttons {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 90px;
}



/* about us */

.about_us {
  padding-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-info .about-content h2 {
    min-width: 100%;
    padding-bottom: 20px;
  }
}

.about-content {
  width: 100%;
}

.about-content h2 {
  font-weight: 600;
  font-size: 48px;
  padding: 0;
}

@media (max-width: 767px) {
  .about-content h2 {
    font-size: 36px;
    line-height: 46px;
  }
}


.about-content p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 35px;
  color: var(--secondary);
}

.section-title-new {
  font-size: 48px;
  line-height: 72px;
  background: linear-gradient(90.63deg, #0496B6 0.43%, rgba(0, 240, 255, 0.8) 105.64%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  line-height: 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .section-title-new {
    font-size: 20px !important;
    margin: 0px;
    padding: 0px;
  }
}




.services {
  position: relative;
  padding-bottom: 75px;
}

.services.our-services {
  padding-top: 40px;
  padding-bottom: 130px;
}

.services .section-title h2 {
  font-size: 48px;
  line-height: 72px;
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
  font-weight: 600;
  line-height: 20px;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.services-image {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 25px;
  margin-bottom: 25px;
  padding: 8px;
  text-align: center;
}

.services-image-bg-one {
  background: rgba(117, 91, 255, 0.15);
}

.services-image-bg-two {
  background: rgba(255, 70, 94, 0.16);
}

.services-image-bg-three {
  background: rgba(255, 70, 94, 0.16);
}

.services-image-bg-four {
  background: rgba(68, 213, 145, 0.16);
}

.services-image-bg-five {
  background: rgba(247, 134, 255, 0.16);
}

.services-image-bg-six {
  background: rgba(46, 137, 255, 0.16);
}

.services-text h5 {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 12px;
  line-height: 32px;
}

.services-text p {
  max-width: 278px;
  font-family: 'Roboto', sans-serif;
}

.services .services__mask .mask_01 {
  position: absolute;
  top: 250px;
  left: 210px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Contact us */
.contact_us_content {
  width: 80%;
}

.contact_us_content h2 {
  font-size: 48px;
  line-height: 64px;
  font-weight: 600;
  padding: 0;
}

.contact_us_content label {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 35px;
  color: var(--secondary);
}

.contact_us_content input::placeholder,
.contact_us_content textarea::placeholder,
.contact_us_content input,
.contact_us_content textarea {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.alert {
  position: fixed;
  z-index: 99999999;
  width: 100%;
  text-align: center;
  display: none;

}





.footer {
  background-color: rgba(255, 70, 94, 0.05);
  margin: 0 45px;
  padding: 30px 0px 16px 0px;
  border-radius: 24px;
  position: relative;
  display: flex;
  align-items: center;

}

@media (max-width: 991px) {
  .home_section {
    padding: 90px 0px;
  }

  .home_section,
  .about_us,
  .about-info,
  .special-services,
  .callto-action,
  .price-area,
  .testimonial-area,
  .newsletter-area,
  .footer-area,
  .services-introduction,
  .aboutus02,
  .valuable-services,
  .call-action-two,
  .dark-footer,
  #circleBar,
  .projectSlider,
  .client-review,
  .contactArea,
  .homepage-03.service-introduction,
  .homepage-03.about-introduction,
  .footer03 .footer-area,
  .homepage-03.call-to-action03,
  .our-work-process,
  .about-us.our-services,
  .special-services.our-services,
  .priceArea,
  .about-us,
  .about-solution,
  .our-teams,
  .about-skill,
  .profession-area,
  .project,
  .blog-area,
  .map-area,
  .conatact-area {
    padding: 90px 0px;
  }

  .contact_us_content {
    width: 100%;
  }

  .contact_us_content h2 {
    margin: 24px 0 !important;
  }

}


.block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
}

.block-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 36px;
}



@media (max-width: 767px) {
  .about-content {
    width: 100%;
  }

  .about-content h2 {
    font-size: 36px;
    line-height: 46px;
  }

  .block-grid,
  .block-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background-color: #9e6565;
  padding: 16px;
  border-radius: 8px;
}


.card-one {
  background: rgba(117, 91, 255, 0.15);
  border-radius: 16px;
  padding: 16px;
  text-align: left;

}

.card-two {
  background: rgba(255, 70, 94, 0.16);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.card-three {
  background: rgba(255, 70, 94, 0.16);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.card-four {
  background: rgba(68, 213, 145, 0.16);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.card-five {
  background: rgba(247, 134, 255, 0.16);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.card-six {
  background: rgba(49, 255, 46, 0.16);
  border-radius: 16px;
  padding: 16px;
  text-align: left;

}

.card-one:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}

.card-two:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}

.card-three:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}

.card-four:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}

.card-five:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}

.card-six:hover {
  transform: scale(1.5);
  transition: transform .5s ease;
}


.blockchain-image {
  width: 100px;
  height: 100px;
  border-radius: 25px;
  margin-bottom: 24px;
  padding: 8px;
  margin-top: 24px;
}

.cir-one {
  background: hsla(134, 100%, 20%, 0.15);
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cir-two {
  background: rgba(250, 0, 33, 0.493);
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  height: 260px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cir-three {
  background: #00628f7d;
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cir-four {
  background: rgba(162, 202, 18, 0.457);
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cir-five {
  background: rgba(236, 43, 250, 0.532);
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  height: 250px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.cir-six {
  background: rgba(49, 255, 46, 0.16);
  border-radius: 50%;
  padding: 16px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}



/* TechStack */
#techbox {
  height: 300px;
  width: auto;
  position: relative;
  overflow: auto;
}

.photobanner {
  position: absolute;
  top: 0px;
  width: max-content;
  left: 20px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 10s linear infinite;

  /* width: 100%;
  height: 200px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-appearance: none; */

}

/* ::-webkit-scrollbar {
  height: 20px;           
   
  background-color: #39a6c7;             
  
} */

.photobanner img {
  margin: 0 0.5em;
  height: 100px;
  padding-left: 60px;
}

@keyframes bannermove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

.cover {
  padding: 0px 30px;
  position: relative;
}

.left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Carousel style */
.carousel-container {
  height: 60vh;
  width: 100%;
}

/* .item{
  width: 300;
  height: 200;
} */
.owl-theme {
  position: relative;
  /* height: 60vh;
width: 100%; */
}

.owl-theme .item {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}


.owl-theme .item img {
  height: 100%;
}

.owl-theme .owl-nav .owl-next,
.owl-theme .owl-nav .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 35%;
  text-align: center;
}

.owl-theme .owl-nav .owl-next span,
.owl-theme .owl-nav .owl-prev span {
  font-size: 38px;
  font-weight: 500;
}

.owl-theme .owl-nav .owl-prev {
  left: 10px;
  color: grey !important;
}

.owl-theme .owl-nav .owl-next {
  right: 10px;
  color: grey !important;
}

.owl-theme .owl-nav .owl-next:hover,
.owl-theme .owl-nav .owl-prev:hover {
  background-color: transparent !important;
}

@media (max-width: 1000px) {
  .owl-theme .item {
    height: 100px;
  }
}

@media (max-width: 776px) {
  .owl-theme .item {
    height: 80px;
  }

  .owl-theme .owl-nav .owl-next span,
  .owl-theme .owl-nav .owl-prev span {
    font-size: 28px;
  }
}

@media (max-width: 540px) {
  .owl-theme .item {
    height: auto;
  }
}



.play-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.play-grid-content {
  position: relative;
  height: 110px;
  width: 390px;
  /* width: 100%; */
  /* background-color: #FAD912; */
  border-radius: 60px;
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

@media (max-width: 1487px) {
  .play-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    justify-items: center;
    align-items: center;
  }
}

@media (max-width: 1000px) {
  .play-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    align-items: center;
  }
}

@media (max-width: 766px) {
  .play-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    align-items: center;
  }
}

.play-grid-avatar {
  position: absolute;
  top: -16px;
  left: -10px;
  width: 132px;
  height: 132px;
  border-radius: 100%;
  background-color: #fff;
  /* z-index: 11; */
}

.play-grid-avatar1 {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 110px;
  height: 110px;
  border-radius: 100%;
  /* background-color: #fff; */
  box-shadow: rgba(99, 99, 99, 0.7) 0px 2px 8px 0px;

  /* z-index: 1; */
}

.play-grid-avatar1 img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  padding: 8px;
}

.avatar1 {
  background: rgb(245, 173, 24);
  background: -moz-linear-gradient(90deg, rgba(245, 173, 24, 1) 0%, rgba(252, 221, 17, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(245, 173, 24, 1) 0%, rgba(252, 221, 17, 1) 100%);
  background: linear-gradient(90deg, rgba(245, 173, 24, 1) 0%, rgba(252, 221, 17, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5ad18", endColorstr="#fcdd11", GradientType=1);

}

.play-grid-content:nth-child(2) {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

.avatar2 {
  background: rgb(94, 111, 180);
  background: -moz-linear-gradient(90deg, rgba(94, 111, 180, 1) 0%, rgba(65, 180, 227, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(94, 111, 180, 1) 0%, rgba(65, 180, 227, 1) 100%);
  background: linear-gradient(90deg, rgba(94, 111, 180, 1) 0%, rgba(65, 180, 227, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5e6fb4", endColorstr="#41b4e3", GradientType=1);
}

.play-grid-content:nth-child(3) {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

.avatar3 {
  background: rgb(159, 235, 163);
  background: -moz-linear-gradient(90deg, rgba(159, 235, 163, 1) 0%, rgba(98, 200, 202, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(159, 235, 163, 1) 0%, rgba(98, 200, 202, 1) 100%);
  background: linear-gradient(90deg, rgba(159, 235, 163, 1) 0%, rgba(98, 200, 202, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9feba3", endColorstr="#62c8ca", GradientType=1);
}

.play-grid-content:nth-child(4) {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

.avatar4 {
  background: rgb(180, 39, 117);
  background: -moz-linear-gradient(90deg, rgba(180, 39, 117, 1) 0%, rgba(130, 55, 140, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(180, 39, 117, 1) 0%, rgba(130, 55, 140, 1) 100%);
  background: linear-gradient(90deg, rgba(180, 39, 117, 1) 0%, rgba(130, 55, 140, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b42775", endColorstr="#82378c", GradientType=1);
}

.play-grid-content:nth-child(5) {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

.avatar5 {
  background: rgb(68, 16, 116);
  background: -moz-linear-gradient(90deg, rgba(68, 16, 116, 1) 0%, rgba(116, 54, 140, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(68, 16, 116, 1) 0%, rgba(116, 54, 140, 1) 100%);
  background: linear-gradient(90deg, rgba(68, 16, 116, 1) 0%, rgba(116, 54, 140, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#441074", endColorstr="#74368c", GradientType=1);
}

.play-grid-content:nth-child(6) {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
}

.avatar6 {
  background: rgb(199, 86, 30);
  background: -moz-linear-gradient(90deg, rgba(199, 86, 30, 1) 0%, rgba(65, 12, 4, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(199, 86, 30, 1) 0%, rgba(65, 12, 4, 1) 100%);
  background: linear-gradient(90deg, rgba(199, 86, 30, 1) 0%, rgba(65, 12, 4, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#c7561e", endColorstr="#410c04", GradientType=1);
}

.play-grid h3 {
  color: #fff;
  width: 80%;
}

.play-element {
  text-align: start;
  margin-top: 0px;
  margin-left: 130px;
  color: #fff;
  padding: 0px 20px;
  padding-top: 10px;
}

.play-element span {
  color: #fff;
  text-align: start;
  font-size: 20px;
  font-weight: 900;
}

.play-element p {
  color: #fff;
  text-align: start;
  font-size: 20px;
  font-weight: 900;
  line-height: 24px;
}

@media (max-width: 761px) {

  /* .play-grid {
    grid-template-columns: 1fr 1fr;
    padding: 10px;
  } */
  .grid-container {
    grid-template-columns: 1fr;
  }

  .paddingall {
    padding-left: 0px;
  }
}

@media (max-width: 460px) {
  .play-grid {
    /* grid-template-columns: 1fr; */
    padding: 10px;
  }

  .play-grid-content {
    width: 350px;
  }

  .play-element p {
    font-size: 16px;
  }
}


.button-40 {
  background: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
  box-shadow: 0px 3.63636px 6.36364px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  width: 320px !important;

  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex: 0 0 auto;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 16px;
  text-align: center;
  text-decoration: none #6B7280 solid;
  transition-duration: .2s;
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: auto;
  display: flex;
  align-items: center;
}

.button-40:hover {
  background-color: #374151;
  color: #FFFFFF;
}

.button-40:focus {
  box-shadow: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .button-40 {
    padding: .75rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .button-40 {
    padding: 8px;
    width: 250px !important;
    font-size: 16px;
  }
}



.animated-button8 {
  background: linear-gradient(-30deg, #0b243d 50%, #081a2b 50%);
  /* padding: 20px 40px; */
  padding: 16px;
  display: flex;
  border-radius: 2px;
  align-items: center;
  display: inline-block;
  -webkit-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  overflow: hidden;
  color: #FFFFFF;
  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%);
  }
}