@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color: #1266f1;
    --head-color: #018b45;
    --text-color: #fff;
    --title-color: #002248;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Mulish", sans-serif;
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

.app{
  overflow: hidden;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

img{
    width: 100%;
}

ul, ol{
    list-style: none;
}

a{
    text-decoration: none;
    color: var(--text-color);
}

.section{
    padding: 60px 0;
}

.ladi-section{
    background-color: #06071b;
}

.ladi-section-1{
    background-image: url(../imgs/bg-section.png);
    background-size: cover;
}

.ladi-section-2{
    background-image: url(../imgs/bg-section-2.png);
    background-size: cover;
}

.ladi-section-3{
    background-image: url(../imgs/bg-section-3.png);
    background-size: cover;
}



.wrapper-title{
    text-align: center;
    margin: 30px 0;
}

.wrapper-title h3{
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 22px;
}

.wrapper-title h2{
    font-weight: 900;
    text-transform: uppercase;
    font-size: 32px;
    line-height: 1.5;
    max-width: 920px;
    margin: 10px auto;
}

.wrapper-title h2 span{
    color: rgb(255, 222, 89);
}


.wrapper-title p{
    font-style: italic;
}

.clearheader{
    height: 61px;
}

.head-title{
    color: #ff5fe2;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.title-inner{
    display: inline-block;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 32px;
    margin: 10px auto;
    padding: 10px 20px;
    background: #fff;
    color: #ef6b06;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    animation: colorText 2s ease infinite;
}
@keyframes colorText {
    50%{color: #e66401;}
    100%{color: #e32e00;}
}

.title-inner::before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    transition: all .4s ease-in-out;
    z-index: -1;
}
.title-inner::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border: unset;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ef6b06), color-stop(50%, transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, #ef6b06), color-stop(50%, transparent)), -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ef6b06), color-stop(50%, transparent)), -webkit-gradient(linear, left bottom, left top, color-stop(50%, #ef6b06), color-stop(50%, transparent));
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 10px 3px, 10px 3px, 3px 10px, 3px 10px;
    background-position: 0 0, 100% 100%, 0 100%, 100% 0;
    animation: dashRun 10s linear infinite;
}

@keyframes dashRun {
    100% {
        background-position: 100% 0, 0 100%, 0 0, 100% 100%;
    }
}



.social-fixed{
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 999;
  }
  
  .social-icon{
    font-size: 22px;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color-2);
    border-radius: 50%;
  }
  .social-icon i{
    transform: translate(-1px,1px);
  }
  .social-fixed > a, .social-fixed span{
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 50%;
    margin-bottom: 20px;
    cursor: pointer;
  }
  .social-fixed span{
    animation: callZoom 2s linear infinite;
    cursor: pointer;
  }
  .social-fixed a.blue{
    animation:none
  }
  .social-fixed a.black{
    animation: none;
  }
  .social-fixed .group::before,
  .social-fixed .group::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  animation: inherit;
  animation-delay: 1s;
  }
  .social-fixed .group::after {
  animation-delay: 2s;
  }
  @keyframes callZoom {
    0% {
      box-shadow: 0 0 0 0rem rgba(173, 190, 245, 0.1);
    }
    30% {
      box-shadow: 0 0 0 0.2rem rgba(109, 128, 235, 0.1);
    }
    100% {
      box-shadow: 0 0 0 0.4rem rgba(75, 84, 212, 0.3);
    }
  }
  
  .social-item{
    border-radius: 50%;
    animation: socialShake 1s ease-in-out infinite;
    position: relative;
  }
  
  .social-item::before{
    content: "";
    position: absolute;
    top: -7px;
    left:-7px;
    width: 50px;
    height: 50px;
    background-color: rgb(131 157 209 / 40%);
    animation: socialShadow 2s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
  }
  
  .social-item::after{
    content: "";
    position: absolute;
    top: -7px;
    left:-7px;
    width: 50px;
    height: 50px;
    border: 1px solid rgb(131 157 209 / 40%);
    animation: socialBorder 2s ease-in-out infinite;
    z-index: -1;
    border-radius: 50%;
  }

  .social-phone::before{
    background-color: rgba(196, 39, 39, 0.6);
  }

  .social-phone::after{
    border: 1px solid rgba(196, 39, 39, 0.6)
  }

.phone-now{
    position: absolute;
    bottom: 20px;
    right: 46px;
    display: block;
    color: #fff;
    font-size: 14px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}
.phone-now.show{
    opacity: 1;
    visibility: visible;
}
.phone-now > a{
    background: #dd3333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    padding: 8px;
    border-radius: 5px;
}
  
  @keyframes socialShadow {
    0% {
        transform: rotate(0) scale(.8) skew(1deg);
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        transform: rotate(0) scale(.8) skew(1deg);
    }
    
  }
  
  @keyframes socialBorder {
    0% {
        transform: rotate(0) scale(.8) skew(1deg);
        opacity: 0;
    }
    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: 1;
    }
    100% {
        transform: rotate(0) scale(1.5) skew(1deg);
        opacity: 0;
    }
    
  }
  
  .social-item img{
    width: 36px;
    border-radius: 50%;
  }
  
  @keyframes socialShake {
    0%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
    10%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
    20%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
    30%{-webkit-transform: rotate(-8deg) scale(1) skew(1deg);}
    40%{-webkit-transform: rotate(8deg) scale(1) skew(1deg);}
    50%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
    100%{-webkit-transform: rotate(0) scale(1) skew(1deg);}
  }
  



.spin-container {
  width: 470px;
  margin: 0 auto;
}
.spin-title {
  text-align: center;
  max-width: 700px;
  margin: 10px auto 70px;
}
.wrapper {
  margin: 0 0 30px;
  position: relative;
}

.pointer-wrapper {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* .wheel {
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes spinAnimation {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(30deg); }
  20% { transform: rotate(60deg); }
  30% { transform: rotate(90deg); }
  40% { transform: rotate(120deg); }
  50% { transform: rotate(180deg); }
  60% { transform: rotate(270deg); }
  70% { transform: rotate(360deg); }
  80% { transform: rotate(450deg); }
  90% { transform: rotate(540deg); }
  100% { transform: rotate(720deg); }
}

.wheel.spin {
  animation: spinAnimation 10s cubic-bezier(0.25, 0.1, 0.25, 1);
} */

.button {
  margin: 0 0 40px;
}
.btn {
  display:block;
  cursor: pointer;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin: 0 auto;
  width: 250px;
  height: 60px;
  color: #ffffff;
  background: #e01a22;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
}

.btn.disabled{
  opacity: 0.6;
  pointer-events: none;
}


.modal, .modal-email{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.modal.show, .modal-email.show{
  opacity: 1;
  visibility: visible;
}

.card{
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.card-body{
  background: #fff;
  padding: 40px;
  text-align: center;
  position: relative;
}

.card-gif{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: url(../imgs/gif-1.gif);
  background-size: 80%;
  opacity: 0.6;
}

.card-content{
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
}

.card-content > img{
  width: 200px;
  margin: auto;
}

.card-confirm{
  margin-top: 40px;
}
.card-confirm button{
  outline: 0;
  background: linear-gradient(#5388C5, #2A78DD);
  width: 35%;
  border: 0;
  border-radius: 100px;
  box-shadow: 0 5px 10px rgba(#2A78DD, .3);
  margin: 0 15px;
  padding: 15px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

}

.input-email-spin{
  height: 40px;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 10px;
}

.btn-email-spin{
  width: 100px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: #fff;
  border: none;
  margin: auto;
  cursor: pointer;
}

.close-modal-email{
  position: absolute;
  top: 6px;
  right: 6px;
  color: #000;
  cursor: pointer;
}

.close-modal-email svg{
  width: 22px;
  height: 22px;
}

.button-status{
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}


.loading{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.loading.active{
  opacity: 1;
  visibility: visible;
}

.loading img{
  width: 40px;
  opacity: 0.2;
}




.checkbox-wrapper-19 {
  box-sizing: border-box;
  --checkbox-height: 22px;
}

@-moz-keyframes dothabottomcheck-19 {
  0% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) / 2);
  }
}

@-webkit-keyframes dothabottomcheck-19 {
  0% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothabottomcheck-19 {
  0% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) / 2);
  }
}

@keyframes dothatopcheck-19 {
  0% {
  height: 0;
  }
  50% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) * 1.2);
  }
}

@-webkit-keyframes dothatopcheck-19 {
  0% {
  height: 0;
  }
  50% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) * 1.2);
  }
}

@-moz-keyframes dothatopcheck-19 {
  0% {
  height: 0;
  }
  50% {
  height: 0;
  }
  100% {
  height: calc(var(--checkbox-height) * 1.2);
  }
}

.checkbox-wrapper-19 input[type=checkbox] {
  display: none;
}

.checkbox-wrapper-19 .check-box {
  height: var(--checkbox-height);
  width: var(--checkbox-height);
  background-color: transparent;
  border: 2px solid #c9c9c9;
  top: 4px;
  border-radius: 4px;
  position: relative;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: border-color ease 0.2s;
  -o-transition: border-color ease 0.2s;
  -webkit-transition: border-color ease 0.2s;
  transition: border-color ease 0.2s;
  cursor: pointer;
}
.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: 0;
  width: calc(var(--checkbox-height) * .2);
  background-color: #34b93d;
  display: inline-block;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  -webkit-transition: opacity ease 0.5;
  -moz-transition: opacity ease 0.5;
  transition: opacity ease 0.5;
}
.checkbox-wrapper-19 .check-box::before {
  top: calc(var(--checkbox-height) * .72);
  left: calc(var(--checkbox-height) * .41);
  box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.checkbox-wrapper-19 .check-box::after {
  top: calc(var(--checkbox-height) * .37);
  left: calc(var(--checkbox-height) * .05);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
  border-color: #34b93d;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
  height: calc(var(--checkbox-height) / 2);
  -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
  animation: dothabottomcheck-19 0.2s ease 0s forwards;
}
.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
  height: calc(var(--checkbox-height) * 1.2);
  -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
  -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
  animation: dothatopcheck-19 0.4s ease 0s forwards;
}

.block-checkbox{
  display: flex;
  gap: 12px;
}

.block-checkbox label:last-child{
  max-width: calc(100% - 34px);
}


.radio-wrapper-32 {
  display: flex;
  align-items: center;
}

.radio-wrapper-32 label {
  color: #ffffff;
}

.radio-wrapper-32 input {
  -webkit-appearance: none; /* remove default */
  display: block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 12px;
  cursor: pointer;
  vertical-align: middle;
  box-shadow: hsla(0,0%,100%,.15) 0 1px 1px, inset hsla(0,0%,0%,.5) 0 0 0 1px;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: -webkit-radial-gradient(rgb(116 148 217) 0%, rgb(6 40 149) 20%, hsl(219deg 99.84% 28.75% / 37%) 30%, hsl(219deg 86.21% 35.51% / 0%) 50%);
  background-repeat: no-repeat;
  -webkit-transition: background-position .15s cubic-bezier(.8, 0, 1, 1),
    -webkit-transform .25s cubic-bezier(.8, 0, 1, 1);
  outline: none;
}
.radio-wrapper-32 input:checked {
  -webkit-transition: background-position .2s .15s cubic-bezier(0, 0, .2, 1),
    -webkit-transform .25s cubic-bezier(0, 0, .2, 1);
}
.radio-wrapper-32 input:active {
  -webkit-transform: scale(1.5);
  -webkit-transition: -webkit-transform .1s cubic-bezier(0, 0, .2, 1);
}

.radio-wrapper-32 input,
.radio-wrapper-32 input:active {
  background-position: 0 24px;
}
.radio-wrapper-32 input:checked {
  background-position: 0 0;
}
.radio-wrapper-32 input:checked ~ input,
.radio-wrapper-32 input:checked ~ input:active {
  background-position: 0 -24px;
}


/* Alert message */

.box-alert{
  position: fixed;
  top: 40px;
  right: 10px;
  z-index: 9999;
}

.alert{
  width: 300px;
  margin-bottom: 20px;
  background: #fff;
  padding: 0;
  animation: alertShow .5s ease-in-out;
}
@keyframes alertShow {
  0%{transform: translateX(20px);opacity: 0;}
  50%{transform: translateX(-5px);}
  100%{transform: translateX(0px);opacity: 1;}
}

.alert-success{
  border: 1px solid #05cb56;
}

.alert-error{
  border: 1px solid rgba(226, 0, 0, 1);
}

.alert-content{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.alert-content .icon{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 50%;
  color: #fff;
}

.alert-success .icon{
  background: #05cb56;
}
.alert-error .icon{
  background: rgba(226, 0, 0, 1);
}

.alert-text{
  color: #000;
  width: calc(100% - 50px);
}

.alert-text h5{
  font-size: 16px;
  margin-bottom: 6px;
}
.alert-text span{
  font-size: 14px;
  font-weight: 300;
}

.alert-success .alert-text h5{
  color: #05cb56;
}
.alert-error .alert-text h5{
  color: rgba(226, 0, 0, 1);
}

.alert-progress-bar{
  width: 100%;
  height: 2px;
  transition: width 4s linear;
}

.alert-success .alert-progress-bar{
  background: #05cb56;
  animation: progressBar 4s linear forwards;
}
.alert-error .alert-progress-bar{
  background: rgba(226, 0, 0, 1);
  animation: progressBar 4s linear forwards;
}

@keyframes progressBar {
  from {
      width: 100%;
  }
  to {
      width: 0%;
  }
}


.message-success{
  display: block;
  margin-bottom: 20px;
  color: #05cb56;
}


.message-error{
  display: block;
  margin-bottom: 20px;
  color: rgba(226, 0, 0, 1);
}
