/********** Template CSS **********/
:root {
    --primary: #00b959;
    --light: #F3F6F8;
    --dark: #0E2E50;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 60px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 12rem 0 9rem 0;
  /*  background: url(../img/shape-bottom.png) center bottom no-repeat ;*/
}

.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.main{
    border-bottom-right-radius:8px ;
    border-bottom-left-radius: 8px;
    height: 852px;
  
}

.girl {
        margin-top: -95px;
        margin-left: 123px;
    }

.text-white{
    margin-left: 45px;
}
.img-fluid {
    max-width: 118%;
    height: auto;
}
.footer{
background-color: #00b98e !important;
}
.flag {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    border-radius: 8px;
}

/* counter */

@property --num {
    syntax: '<integer>';
    initial-value: 0;
    inherits: false;
  }
  
  .cspan {
    counter-reset: num var(--num);
    font: 800 40px system-ui;
    padding: 2rem;
    animation: var(--animation) 5s forwards ease-in-out;
    color: #00b98e;
  }
  
  div .cspan::after {
    content: counter(num) '+';
  }
  
  @keyframes counter-years {
    from {
      --num: 0;
    }
    to {
      --num: 100;
    }
    /* Adjust these values as needed */
  }
  
  @keyframes counter-projects {
    from {
      --num: 0;
    }
    to {
      --num: 15;
    }
    /* Adjust these values as needed */
  }
  
  @keyframes counter-employees {
    from {
      --num: 0;
    }
    to {
      --num: 10000;
    }
    /* Adjust these values as needed */
  }
  
  @keyframes counter-customers {
    from {
      --num: 0;
    }
    to {
      --num: 10000;
    }
    /* Adjust these values as needed */
  }
  .ch{
    color: #00b98e;
    font-size: 25px;
  }

/*counter ends*/

.fa{
    margin-left: -1px;
}


.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .form-container h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
  }
  .form-container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #555;
  }
  .form-container input, 
  .form-container textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
  }
  .form-container textarea {
    resize: vertical;
    height: 100px;
  }
  .form-container button {
    width: 100%;
    padding: 10px;
    background-color: #00b98e;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  .form-container button:hover {
    background-color: #00b959 ;
  }
  .rmbtn{
    margin-left: 192px;
  }
  .ch{
    text-align: center;
  }
  body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
.btnlm{
    margin-left: 45px; margin-top: -17px;
}

/* mobile */

  @media only screen and (max-width:480px) { 
    .content .name{
      font-size: 35px !important;
    }
    html,body{
 
        overflow-x: hidden;
    }
    .abimg{
      margin-left: -28px;
    }
    .text-white{
        margin-left: 0px;
    }
    .countsec {
      margin-top: 169px !important;
  }
    .btnlm{
        margin-left: 0px;
    }
    .ablogo{
        margin-top: -160px;
    }
    .rmbtn{
        margin-left: 80px;
    }
    .aboutus{
        margin-top: -100px;
    }
    .contactus{
        margin-top: -80px;
    }
   .newsletter{
    margin-left: 9px;
   }

  .girl {
    margin-top: -65px;
    margin-left: -28px;
}
.mask{
  margin-left: -73px;
}
.counterdiv{
    margin-top: -70px;
}
    .ch{
        font-size: 15px;
    }
    .cspan {
      font: 800 28px system-ui;

        color: #00b98e;
        margin-left: -6px;
    }
    .spy{
        padding-top: 2rem;
        padding-bottom: 6rem;
    }
    .tpy{
        padding-top: 2rem;
    }
    .tmpy{
        margin-top: -140px;
    }
    .center-circle{
      width: 180px !important;
      margin-left: -85px !important;
    }
    .crop{
        margin-left: -168px;
    }
    
    .swlogo {
      width: 100px !important;
      margin-left: 43px !important;
      margin-top: 22px !important;
  }
  .card{
    padding: 16px 10px !important;
    width: 38% !important;
  }
  :root {
    --rotate-speed:30;



  }
 .whydes {
    font-size: 16px;
}
.swul{
  --count: 5 !important;
}
.second-circle{
  margin-left: -79px;
  width: 70% !important;
}
.crop{
    width: 225%;
    margin-left: -323px;
}
.swli{
  width: 94% !important;
}
.last-circle{
  left: 35% !important;
  top: 50% !important;
  width: 100% !important;
}




}

/* ip 12 */
@media only screen and (max-width: 480px) {
  .slidecont{
    margin-left: 63px !important;
  }
  .crop {

      width: 225%;
      margin-left: -310px;
  }
  .modal{
    margin-top: 35px !important;
  }
  .servgirl {
    margin-left: -32px !important;
}
  .wcu{
    font-size: 30px !important;

  }
  .whydes{
    font-size: 16px !important;
  }
  .contdivrow{
    margin-top: -88px !important;
  }
  .contactus {
    margin-top: -45px !important;
}
.slidecont{
margin-left: 70px;
}

.rowcaro{
  margin-top: -100px !important;
}
.logo{
  width: 75px !important;
}
}

  /* spin wheel*/

  :root {
    --rotate-speed: 40;
    --count: 8; /* Default count, the DOM element should override this */
    --easeInOutSine: cubic-bezier(0.37, 0, 0.63, 1);
    --easing: cubic-bezier(0.000, 0.37, 1.000, 0.63);
  }
  
  body {
    margin: 0;
  }
  
  .void {
    width: 100%;
    max-width: 1024px;
    margin: auto;
    position: relative;
    aspect-ratio: 1 / 1;
  }
  .swul:hover * {
    animation-play-state: paused;
  }
  .swul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    outline: 2px dotted magenta;
    z-index: 1;
  }
  .swli {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  /* 	outline: 2px dashed cyan; */
    width: 100%;
    animation: rotateCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
  }
  .card {
    width: 27%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 8px;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 16px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #535062;
    animation: rotateCCW calc(var(--rotate-speed) * 1s) var(--easing) infinite;
    height: 95px;
    justify-content: center;
  }
  a {
    text-decoration: none;
    color: unset;
  }
  .model-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #00b98e;
    display: block;
  }
  svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  
  li:nth-child(2), li:nth-child(2) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -1s);
  }
  li:nth-child(3), li:nth-child(3) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -2s);
  }
  li:nth-child(4), li:nth-child(4) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -3s);
  }
  li:nth-child(5), li:nth-child(5) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -4s);
  }
  li:nth-child(6), li:nth-child(6) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -5s);
  }
  li:nth-child(7), li:nth-child(7) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -6s);
  }
  li:nth-child(8), li:nth-child(8) .card {
    animation-delay: calc((var(--rotate-speed)/var(--count)) * -7s);
  }
  
  @keyframes rotateCW {
    from {
      transform: translate3d(0px, -50%, -1px) rotate(-45deg);
    }
    to {
      transform: translate3d(0px, -50%, 0px) rotate(-315deg);
    }
  }
  @keyframes rotateCCW {
    from {
      transform: rotate(45deg);
    }
    to {
      transform: rotate(315deg);
    }
  }
  @keyframes pulseGlow {
    from {
      background-size: 60%;
    }
    to {
      background-size: 100%;
    }
  }
  
  .center-circle {
    position: absolute;
    width: 230px;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
  }
  .second-circle {
    position: absolute;
    width: 40%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #F5F4FE;
    opacity: 0.5;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
  }
  .last-circle {
    position: absolute;
    width: 66%;
    aspect-ratio: 1 / 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #F5F4FE;
    opacity: 0.25;
    box-shadow: 0px 18px 36px -18px rgba(12, 5, 46, 0.3), 0px 30px 60px -12px rgba(12, 5, 46, 0.25);
    border-radius: 50%;
  }
  .crop {
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1));
  }
  .mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    animation: pulseGlow 5s linear infinite alternate;
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-image: radial-gradient(100% 50% at 100% 50%, rgba(60, 185, 142, 0.25) 0%, rgba(60, 185, 142, 0.247904) 11.79%, rgba(59, 185, 142, 0.241896) 21.38%, rgba(58, 185, 142, 0.2324) 29.12%, rgba(57, 185, 142, 0.219837) 35.34%, rgba(55, 185, 142, 0.20463) 40.37%, rgba(53, 185, 142, 0.1872) 44.56%, rgba(51, 185, 142, 0.16797) 48.24%, rgba(48, 185, 142, 0.147363) 51.76%, rgba(46, 185, 142, 0.1258) 55.44%, rgba(44, 185, 142, 0.103704) 59.63%, rgba(41, 185, 142, 0.0814963) 64.66%, rgba(39, 185, 142, 0.0596) 70.88%, rgba(36, 185, 142, 0.038437) 78.62%, rgba(34, 185, 142, 0.0184296) 88.21%, rgba(32, 185, 142, 0) 100%);
  }
  .mask:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    display: block;
    background-image: linear-gradient(180deg, rgba(60, 185, 142, 0) 0%, #00b98e 50%, rgba(60, 185, 142, 0) 100%);
  }


.swlogo{
  width: 128px;
  margin-left: 58px;
  margin-top: 25px;
}

.contdivrow{
  margin-top: -160px;
}
.carohead{
  color: white;
  font-size: 30px;
  margin: 25px;
}
.countryhead{
  text-align: center;
  color: #00b98e;
  margin-top: 80px;
}
.footerstyle{
  margin-left: -15px;
    width: 108%;
}

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


.wrapper{
  display: flex;
  max-width: 1500px;
  position: relative;
}
.wrapper i{
  top: 50%;
  height: 44px;
  width: 44px;
  color: #343F4F;
  cursor: pointer;
  font-size: 1.15rem;
  position: absolute;
  text-align: center;
  line-height: 44px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s linear;
}
.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}
.wrapper i:hover{
  background: #f2f2f2;
}
.wrapper i:first-child{
  left: -22px;
  display: none;
}
.wrapper i:last-child{
  right: -22px;
}
.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
  cursor: grab;
  scroll-behavior: auto;
}
.carousel.dragging img{
  pointer-events: none;
}
.carousel img{
  height: 340px;
  object-fit: cover;
  user-select: none;
  margin-left: 14px;
  width: calc(75.3333%);
  border-radius: 8px;
}
.carousel img:first-child{
  margin-left: 0px;
}
.whydes{
  font-size: 22px;
}
@media screen and (max-width: 900px) {
  .carousel img{
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 550px) {
  .carousel img{
    width: 100%;
  }
}
.logo{
width: 110px;
}
.wcu{
  font-size: 3em;
}
.wrapper i {
  z-index: 2;
}
.navbar{
  background-color: white;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.nav-link.active {
  color:#00b98e;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.nav-link{
  color:#00b98e;
}

.videoframe video {
  
  width: 100%;
}
.videoframe{
  width: 350px;
  margin-left: 50px;
}
.abimg{
  margin-left: -100px;
}

.servgirl{
  margin-left: -100px;
}

.ifvid{
  margin-left: 15px;
}

body{
  overflow-x: hidden;
}

.slidecont{
  position:relative ;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: #f5f5f5;
 border-radius: 8px;
 margin-top: 450px;
 box-shadow: 0 30px 50px #dbdbdb;
}

.slidecont .slide .item{
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
}


.slide .item:nth-child(3){
  left: 50%;
}
.slide .item:nth-child(4){
  left: calc(50% + 220px);
}
.slide .item:nth-child(5){
  left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
  left: calc(50% + 660px);
  opacity: 0;
}



.item .content{
  position: absolute;
  top: 80%;
  left: 100px;
  width: 300px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
}


.slide .item:nth-child(2) .content{
  display: block;
}


.content .name{
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
  from{
      opacity: 0;
      transform: translate(0, 100px);
      filter: blur(33px);
  }

  to{
      opacity: 1;
      transform: translate(0);
      filter: blur(0);
  }
}



.button{
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
}

.button button{
  width: 40px;
  height: 35px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  border: 1px solid #000;
  transition: 0.3s;
}

.button button:hover{
  background: #ababab;
  color: #fff;
}