/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 12px;
}

* {
  padding: 0;
  margin: 0;
}

body {
  height: 100vh;
}

/*displays*/
.block {
  display: block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.flex.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex.column.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex.jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.jc-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex.jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.jc-se {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.flex.jc-sa {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex.ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*Widts*/
.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

@media (min-width: 1201px) {
  .desktop-w50p {
    width: 50%;
  }

  .desktop-w40p {
    width: 40%;
  }
}

@media (max-width: 1200px) {
  .mobile-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .mobile-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .desktop-w50p {
    width: 100%;
  }
}

/*Border Radius*/

.br-5 {
  border-radius: 5px;
}

.br-40 {
  border-radius: 40px;
}

/*---------------*/
.button {
  width: 100%;
  max-width: 222px;
  padding: 7px 0;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11.7px;
  cursor: pointer;
}

.button.center {
  margin: auto;
}

.button p {
  position: relative;
  top: 2px;
}

.button {
  text-align: center;
  font-size: 24px;
  line-height: 45px;
  font-weight: 600;
  font-family: 'cairo';
}

.button.white {
  color: white;
}

.button.blue {
  color: var(--dark-blue);
}

.button.yellow-bg {
  background: var(--yellow);
  color: var(--dark-blue);
  border: 1px solid var(--yellow);
}

.button.white-border {
  border: 1px solid white;
}

.button.btn-center {
  margin: auto;
}

.button p {
  font-size: 24px;
}


.button svg,
.button p {
  fill: var(--dark-blue);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.button.white-hover:hover {
  border: 1px solid var(--yellow);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-color: transparent !important;
}

.button.white-hover:hover p {
  color: white;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}

.button.white-hover:hover .arrow svg {
  color: white;
  fill: white;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.button.blue-hover:hover {
  border: 1px solid var(--yellow);
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-color: transparent !important;
}

.button.blue-hover:hover p {
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}

.button.blue-hover:hover .arrow svg {
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

button {
  border: none;
}

/*---------------*/
.wrapper {
  width: 90%;
  margin: auto;
  max-width: 121rem;
}

.wrapper.w90p {
  width: 90%;
}

.wrapper.w88_7p {
  width: 88.7%;
}

.wrapper.w83p {
  width: 83%;
}

.wrapper.w79p {
  width: 79%;
}


.wrapper.w75p {
  width: 75%;
}

.wrapper.w69p {
  width: 69%;
}

.wrapper.w60p {
  width: 60%;
}

.op-0_7 {
  opacity: .7;
}

.no-wrap {
  white-space: nowrap;
}

@media (min-width: 1001px) {
  .desktop-only {
    display: block;
  }

  .desktop-only.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile-only {
    display: none;
  }
}

@media (max-width: 1200px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .left,
  .right {
    width: 100% !important;
    max-width: none !important;
  }

  .button {
    font-size: 16px;
  }

  .wrapper {
    width: 90% !important;
  }
}

/* Button Animation */

.btn,
.button {
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  border-radius: 0;
  background: transparent;
}

@-webkit-keyframes burst {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0)
  }

  50% {
    -webkit-transform: scale(800);
            transform: scale(800)
  }

  99% {
    -webkit-transform: scale(800);
            transform: scale(800)
  }

  to {
    -webkit-transform: scale(0);
            transform: scale(0)
  }
}

@keyframes burst {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0)
  }

  50% {
    -webkit-transform: scale(800);
            transform: scale(800)
  }

  99% {
    -webkit-transform: scale(800);
            transform: scale(800)
  }

  to {
    -webkit-transform: scale(0);
            transform: scale(0)
  }
}

@-webkit-keyframes burstSmaller {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0)
  }

  50% {
    -webkit-transform: scale(300);
            transform: scale(300)
  }

  99% {
    -webkit-transform: scale(300);
            transform: scale(300)
  }

  to {
    -webkit-transform: scale(0);
            transform: scale(0)
  }
}

@keyframes burstSmaller {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0)
  }

  50% {
    -webkit-transform: scale(300);
            transform: scale(300)
  }

  99% {
    -webkit-transform: scale(300);
            transform: scale(300)
  }

  to {
    -webkit-transform: scale(0);
            transform: scale(0)
  }
}

.btn .burst,
.btn .burst--smaller,
.button .burst,
.button .burst--smaller {
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  height: 1px;
  width: 1px;
  --tw-translate-x: -50%;
  --tw-translate-y: -50%;
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  -webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
      -ms-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
          transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-radius: 9999px;
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none
}

.btn .burst--smaller:first-of-type,
.btn .burst:first-of-type,
.button .burst--smaller:first-of-type,
.button .burst:first-of-type {
  --tw-bg-opacity: 1;
  background-color: rgb(222 99 181/var(--tw-bg-opacity))
}

.btn .burst--smaller:nth-of-type(2),
.btn .burst:nth-of-type(2),
.button .burst--smaller:nth-of-type(2),
.button .burst:nth-of-type(2) {
  -webkit-animation-delay: .15s;
          animation-delay: .15s;
  --tw-bg-opacity: 1;
  background-color: rgb(242 244 103/var(--tw-bg-opacity))
}

.btn .burst--smaller:nth-of-type(3),
.btn .burst:nth-of-type(3),
.button .burst--smaller:nth-of-type(3),
.button .burst:nth-of-type(3) {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 83, 83, 1)
}

.btn .button-text,
.button .button-text {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 10;
}

.btn:hover,
.button:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 83, 83, 1);
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
       -o-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  -webkit-transition-duration: .15s;
       -o-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition-delay: .15s;
       -o-transition-delay: .15s;
          transition-delay: .15s
}

.btn:hover .burst,
.button:hover .burst {
  -webkit-animation-name: burst;
          animation-name: burst
}

.btn:hover .burst--smaller,
.button:hover .burst--smaller {
  -webkit-animation-name: burstSmaller;
          animation-name: burstSmaller
}

.btn:hover .button-text,
.button:hover .button-text {
  --tw-text-opacity: 1;
  color: rgb(0 0 0/var(--tw-text-opacity));
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
       -o-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
          transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  -webkit-transition-duration: .15s;
       -o-transition-duration: .15s;
          transition-duration: .15s;
  -webkit-transition-delay: 75ms;
       -o-transition-delay: 75ms;
          transition-delay: 75ms
}