@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;400;500;600;700&display=swap');


:root {
  --primary: #ff465e;
  --secondary: #c6c6c6;
  --darkBlue: #3fc0f7;

  --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;
}

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: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}


h1 {
  font-size: 66px;
  text-transform: uppercase;
  /* line-height: 99px; */
}

h2 {
  font-size: 48px;
  line-height: 59px;
  padding: 100px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 32px;
    line-height: normal;
    padding: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}


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: #06101C;
  /* -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: var(--darkBlue) !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 {
  color: #fff;
  padding: 15px 25px;
  border-radius: 100px;
  background-color: #1789be;
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0%, transparent 86.18%), radial-gradient(66% 87% at 26% 20%, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%);
  box-shadow: 2px 19px 31px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 20px;

  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;

  cursor: pointer;
  /* 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: linear-gradient(90.21deg, rgba(0, 53, 102, 0.8) 0.13%, #024B81 99.82%);
  color: #fff; */
}

.secondary-button:hover {
  color: #fff;
  background-color: var(--primary);
  -webkit-box-shadow: 0px 6px 15px rgba(164, 243, 249, 0.36);
  box-shadow: 0px 6px 15px rgba(225, 241, 255, 0.36);
}

.home_wrapper {
  margin-top: 90px;
  margin-left: 36px;
  margin-right: 36px;
}

@media (max-width: 767px) {
  .home_wrapper {
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 1200px) {
  .home_wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .home_wrapper {
    margin-top: 15px;
  }
}

.home_section {
  position: relative;


  background: linear-gradient(107.13deg, #0E1C2D 0.61%, #011F37 100%);
}

@media (min-width: 1201px) and (max-width: 1850px) {
  .home_section {}
}



@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;
    font-family: 'Poppins', sans-serif !important;
    background: linear-gradient(90.27deg, #3FB2E8 3.34%, #9FDDFB 47.46%, #50C0F4 104.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;

  }
}


@media (min-width: 1201px) {
  .home_title {
    font-size: 54px;
    font-weight: 600;
    line-height: normal;
    font-family: 'Poppins', sans-serif !important;
    /* background: linear-gradient(90.27deg, #3FB2E8 3.34%, #9FDDFB 47.46%, #50C0F4 104.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; */
    text-transform: uppercase;
    text-align: left;
    color: #50C0F4;
    /* 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;
}




.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: 32px;
  line-height: 32px;
  font-weight: 400;
  padding: 0;
  color: #FFFFFF;
}

.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;
    gap: 8px;
  }
}

.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;
  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;
  text-decoration-thickness: auto;
  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;
}

.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;
  }
}



/* FLOATING SIDEBAR */
.stick-button {
  clear: both;
  position: fixed;
  display: block;
  list-style-type: none;
  right: -34px;
  top: 15%;
  -webkit-animation: slideright 1s forwards;
  -webkit-animation-delay: 1.5s;
  animation: slideright 1s forwards;
  animation-delay: 0.5s;
}

@keyframes slideright {
  100% {
    right: 0;
  }
}

.stick-button li {
  margin-bottom: 40px;
  margin-right: 0px;
  padding: 15px;

  background-color: rgba(30, 45, 127, 0.75);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;

  -webkit-transition: width .5s, background-color .1s;
  transition: width .5s, background-color .1s;

}

.stick-button li a {
  font-size: 19px;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  color: #ebebeb;
}

.stick-button li:hover {
  background-color: rgba(30, 45, 127, 1);
  color: #fff;
}



.cta {
  display: flex;
  padding: 10px 24px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: white;
  word-spacing: 8px;
  background: #024B81;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  margin: 36px;


}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #FBC638;
  color: white;
  font-weight: 600;
  text-decoration: none;

}

.cta span:nth-child(2) {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover span:nth-child(2) {
  transition: 0.5s;
  margin-right: 45px;
}

span {
  transform: skewX(15deg)
}

span:nth-child(2) {
  width: 20px;
  margin-left: 30px;
  position: relative;
  top: 12%;
}


@media (max-width: 768px) {
  .cta {
    font-size: 24px;
    /* padding: 10px 45px; */
    margin: 16px;
  }
}

/**************SVG****************/

path.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

path.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */

@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #FBC638;
  }

  100% {
    fill: white;
  }
}